This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
615e84c5c2d5199f690a4e5de3b5ebb4c28af9f1
[perl5.git] / pp_ctl.c
1 /*    pp_ctl.c
2  *
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
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 /*
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"]
20  */
21
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
33 #include "EXTERN.h"
34 #define PERL_IN_PP_CTL_C
35 #include "perl.h"
36
37 #define DOCATCH(o) ((CATCH_GET == TRUE) ? docatch(o) : (o))
38
39 #define dopoptosub(plop)        dopoptosub_at(cxstack, (plop))
40
41 PP(pp_wantarray)
42 {
43     dSP;
44     I32 cxix;
45     const PERL_CONTEXT *cx;
46     EXTEND(SP, 1);
47
48     if (PL_op->op_private & OPpOFFBYONE) {
49         if (!(cx = caller_cx(1,NULL))) RETPUSHUNDEF;
50     }
51     else {
52       cxix = dopoptosub(cxstack_ix);
53       if (cxix < 0)
54         RETPUSHUNDEF;
55       cx = &cxstack[cxix];
56     }
57
58     switch (cx->blk_gimme) {
59     case G_ARRAY:
60         RETPUSHYES;
61     case G_SCALAR:
62         RETPUSHNO;
63     default:
64         RETPUSHUNDEF;
65     }
66 }
67
68 PP(pp_regcreset)
69 {
70     TAINT_NOT;
71     return NORMAL;
72 }
73
74 PP(pp_regcomp)
75 {
76     dSP;
77     PMOP *pm = (PMOP*)cLOGOP->op_other;
78     SV **args;
79     int nargs;
80     REGEXP *re = NULL;
81     REGEXP *new_re;
82     const regexp_engine *eng;
83     bool is_bare_re= FALSE;
84
85     if (PL_op->op_flags & OPf_STACKED) {
86         dMARK;
87         nargs = SP - MARK;
88         args  = ++MARK;
89     }
90     else {
91         nargs = 1;
92         args  = SP;
93     }
94
95     /* prevent recompiling under /o and ithreads. */
96 #if defined(USE_ITHREADS)
97     if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) {
98         SP = args-1;
99         RETURN;
100     }
101 #endif
102
103     re = PM_GETRE(pm);
104     assert (re != (REGEXP*) &PL_sv_undef);
105     eng = re ? RX_ENGINE(re) : current_re_engine();
106
107     /*
108      In the below logic: these are basically the same - check if this regcomp is part of a split.
109
110     (PL_op->op_pmflags & PMf_split )
111     (PL_op->op_next->op_type == OP_PUSHRE)
112
113     We could add a new mask for this and copy the PMf_split, if we did
114     some bit definition fiddling first.
115
116     For now we leave this
117     */
118
119     new_re = (eng->op_comp
120                     ? eng->op_comp
121                     : &Perl_re_op_compile
122             )(aTHX_ args, nargs, pm->op_code_list, eng, re,
123                 &is_bare_re,
124                 (pm->op_pmflags & RXf_PMf_FLAGCOPYMASK),
125                 pm->op_pmflags |
126                     (PL_op->op_flags & OPf_SPECIAL ? PMf_USE_RE_EVAL : 0));
127
128     if (pm->op_pmflags & PMf_HAS_CV)
129         ReANY(new_re)->qr_anoncv
130                         = (CV*) SvREFCNT_inc(PAD_SV(PL_op->op_targ));
131
132     if (is_bare_re) {
133         REGEXP *tmp;
134         /* The match's LHS's get-magic might need to access this op's regexp
135            (e.g. $' =~ /$re/ while foo; see bug 70764).  So we must call
136            get-magic now before we replace the regexp. Hopefully this hack can
137            be replaced with the approach described at
138            http://www.nntp.perl.org/group/perl.perl5.porters/2007/03/msg122415.html
139            some day. */
140         if (pm->op_type == OP_MATCH) {
141             SV *lhs;
142             const bool was_tainted = TAINT_get;
143             if (pm->op_flags & OPf_STACKED)
144                 lhs = args[-1];
145             else if (pm->op_targ)
146                 lhs = PAD_SV(pm->op_targ);
147             else lhs = DEFSV;
148             SvGETMAGIC(lhs);
149             /* Restore the previous value of PL_tainted (which may have been
150                modified by get-magic), to avoid incorrectly setting the
151                RXf_TAINTED flag with RX_TAINT_on further down. */
152             TAINT_set(was_tainted);
153 #ifdef NO_TAINT_SUPPORT
154             PERL_UNUSED_VAR(was_tainted);
155 #endif
156         }
157         tmp = reg_temp_copy(NULL, new_re);
158         ReREFCNT_dec(new_re);
159         new_re = tmp;
160     }
161
162     if (re != new_re) {
163         ReREFCNT_dec(re);
164         PM_SETRE(pm, new_re);
165     }
166
167
168     assert(TAINTING_get || !TAINT_get);
169     if (TAINT_get) {
170         SvTAINTED_on((SV*)new_re);
171         RX_TAINT_on(new_re);
172     }
173
174 #if !defined(USE_ITHREADS)
175     /* can't change the optree at runtime either */
176     /* PMf_KEEP is handled differently under threads to avoid these problems */
177     if (!RX_PRELEN(PM_GETRE(pm)) && PL_curpm)
178         pm = PL_curpm;
179     if (pm->op_pmflags & PMf_KEEP) {
180         pm->op_private &= ~OPpRUNTIME;  /* no point compiling again */
181         cLOGOP->op_first->op_next = PL_op->op_next;
182     }
183 #endif
184
185     SP = args-1;
186     RETURN;
187 }
188
189
190 PP(pp_substcont)
191 {
192     dSP;
193     PERL_CONTEXT *cx = &cxstack[cxstack_ix];
194     PMOP * const pm = (PMOP*) cLOGOP->op_other;
195     SV * const dstr = cx->sb_dstr;
196     char *s = cx->sb_s;
197     char *m = cx->sb_m;
198     char *orig = cx->sb_orig;
199     REGEXP * const rx = cx->sb_rx;
200     SV *nsv = NULL;
201     REGEXP *old = PM_GETRE(pm);
202
203     PERL_ASYNC_CHECK();
204
205     if(old != rx) {
206         if(old)
207             ReREFCNT_dec(old);
208         PM_SETRE(pm,ReREFCNT_inc(rx));
209     }
210
211     rxres_restore(&cx->sb_rxres, rx);
212
213     if (cx->sb_iters++) {
214         const SSize_t saviters = cx->sb_iters;
215         if (cx->sb_iters > cx->sb_maxiters)
216             DIE(aTHX_ "Substitution loop");
217
218         SvGETMAGIC(TOPs); /* possibly clear taint on $1 etc: #67962 */
219
220         /* See "how taint works" above pp_subst() */
221         if (SvTAINTED(TOPs))
222             cx->sb_rxtainted |= SUBST_TAINT_REPL;
223         sv_catsv_nomg(dstr, POPs);
224         if (CxONCE(cx) || s < orig ||
225                 !CALLREGEXEC(rx, s, cx->sb_strend, orig,
226                              (s == m), cx->sb_targ, NULL,
227                     (REXEC_IGNOREPOS|REXEC_NOT_FIRST|REXEC_FAIL_ON_UNDERFLOW)))
228         {
229             SV *targ = cx->sb_targ;
230
231             assert(cx->sb_strend >= s);
232             if(cx->sb_strend > s) {
233                  if (DO_UTF8(dstr) && !SvUTF8(targ))
234                       sv_catpvn_nomg_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv);
235                  else
236                       sv_catpvn_nomg(dstr, s, cx->sb_strend - s);
237             }
238             if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
239                 cx->sb_rxtainted |= SUBST_TAINT_PAT;
240
241             if (pm->op_pmflags & PMf_NONDESTRUCT) {
242                 PUSHs(dstr);
243                 /* From here on down we're using the copy, and leaving the
244                    original untouched.  */
245                 targ = dstr;
246             }
247             else {
248                 SV_CHECK_THINKFIRST_COW_DROP(targ);
249                 if (isGV(targ)) Perl_croak_no_modify();
250                 SvPV_free(targ);
251                 SvPV_set(targ, SvPVX(dstr));
252                 SvCUR_set(targ, SvCUR(dstr));
253                 SvLEN_set(targ, SvLEN(dstr));
254                 if (DO_UTF8(dstr))
255                     SvUTF8_on(targ);
256                 SvPV_set(dstr, NULL);
257
258                 PL_tainted = 0;
259                 mPUSHi(saviters - 1);
260
261                 (void)SvPOK_only_UTF8(targ);
262             }
263
264             /* update the taint state of various various variables in
265              * preparation for final exit.
266              * See "how taint works" above pp_subst() */
267             if (TAINTING_get) {
268                 if ((cx->sb_rxtainted & SUBST_TAINT_PAT) ||
269                     ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
270                                     == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
271                 )
272                     (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */
273
274                 if (!(cx->sb_rxtainted & SUBST_TAINT_BOOLRET)
275                     && (cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT))
276                 )
277                     SvTAINTED_on(TOPs);  /* taint return value */
278                 /* needed for mg_set below */
279                 TAINT_set(
280                     cBOOL(cx->sb_rxtainted &
281                           (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL))
282                 );
283                 SvTAINT(TARG);
284             }
285             /* PL_tainted must be correctly set for this mg_set */
286             SvSETMAGIC(TARG);
287             TAINT_NOT;
288
289             CX_LEAVE_SCOPE(cx);
290             POPSUBST(cx);
291             CX_POP(cx);
292
293             PERL_ASYNC_CHECK();
294             RETURNOP(pm->op_next);
295             NOT_REACHED; /* NOTREACHED */
296         }
297         cx->sb_iters = saviters;
298     }
299     if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) {
300         m = s;
301         s = orig;
302         assert(!RX_SUBOFFSET(rx));
303         cx->sb_orig = orig = RX_SUBBEG(rx);
304         s = orig + (m - s);
305         cx->sb_strend = s + (cx->sb_strend - m);
306     }
307     cx->sb_m = m = RX_OFFS(rx)[0].start + orig;
308     if (m > s) {
309         if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ))
310             sv_catpvn_nomg_utf8_upgrade(dstr, s, m - s, nsv);
311         else
312             sv_catpvn_nomg(dstr, s, m-s);
313     }
314     cx->sb_s = RX_OFFS(rx)[0].end + orig;
315     { /* Update the pos() information. */
316         SV * const sv
317             = (pm->op_pmflags & PMf_NONDESTRUCT) ? cx->sb_dstr : cx->sb_targ;
318         MAGIC *mg;
319
320         /* the string being matched against may no longer be a string,
321          * e.g. $_=0; s/.../$_++/ge */
322
323         if (!SvPOK(sv))
324             SvPV_force_nomg_nolen(sv);
325
326         if (!(mg = mg_find_mglob(sv))) {
327             mg = sv_magicext_mglob(sv);
328         }
329         MgBYTEPOS_set(mg, sv, SvPVX(sv), m - orig);
330     }
331     if (old != rx)
332         (void)ReREFCNT_inc(rx);
333     /* update the taint state of various various variables in preparation
334      * for calling the code block.
335      * See "how taint works" above pp_subst() */
336     if (TAINTING_get) {
337         if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
338             cx->sb_rxtainted |= SUBST_TAINT_PAT;
339
340         if ((cx->sb_rxtainted & SUBST_TAINT_PAT) ||
341             ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
342                             == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
343         )
344             (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */
345
346         if (cx->sb_iters > 1 && (cx->sb_rxtainted & 
347                         (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL)))
348             SvTAINTED_on((pm->op_pmflags & PMf_NONDESTRUCT)
349                          ? cx->sb_dstr : cx->sb_targ);
350         TAINT_NOT;
351     }
352     rxres_save(&cx->sb_rxres, rx);
353     PL_curpm = pm;
354     RETURNOP(pm->op_pmstashstartu.op_pmreplstart);
355 }
356
357 void
358 Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx)
359 {
360     UV *p = (UV*)*rsp;
361     U32 i;
362
363     PERL_ARGS_ASSERT_RXRES_SAVE;
364     PERL_UNUSED_CONTEXT;
365
366     if (!p || p[1] < RX_NPARENS(rx)) {
367 #ifdef PERL_ANY_COW
368         i = 7 + (RX_NPARENS(rx)+1) * 2;
369 #else
370         i = 6 + (RX_NPARENS(rx)+1) * 2;
371 #endif
372         if (!p)
373             Newx(p, i, UV);
374         else
375             Renew(p, i, UV);
376         *rsp = (void*)p;
377     }
378
379     /* what (if anything) to free on croak */
380     *p++ = PTR2UV(RX_MATCH_COPIED(rx) ? RX_SUBBEG(rx) : NULL);
381     RX_MATCH_COPIED_off(rx);
382     *p++ = RX_NPARENS(rx);
383
384 #ifdef PERL_ANY_COW
385     *p++ = PTR2UV(RX_SAVED_COPY(rx));
386     RX_SAVED_COPY(rx) = NULL;
387 #endif
388
389     *p++ = PTR2UV(RX_SUBBEG(rx));
390     *p++ = (UV)RX_SUBLEN(rx);
391     *p++ = (UV)RX_SUBOFFSET(rx);
392     *p++ = (UV)RX_SUBCOFFSET(rx);
393     for (i = 0; i <= RX_NPARENS(rx); ++i) {
394         *p++ = (UV)RX_OFFS(rx)[i].start;
395         *p++ = (UV)RX_OFFS(rx)[i].end;
396     }
397 }
398
399 static void
400 S_rxres_restore(pTHX_ void **rsp, REGEXP *rx)
401 {
402     UV *p = (UV*)*rsp;
403     U32 i;
404
405     PERL_ARGS_ASSERT_RXRES_RESTORE;
406     PERL_UNUSED_CONTEXT;
407
408     RX_MATCH_COPY_FREE(rx);
409     RX_MATCH_COPIED_set(rx, *p);
410     *p++ = 0;
411     RX_NPARENS(rx) = *p++;
412
413 #ifdef PERL_ANY_COW
414     if (RX_SAVED_COPY(rx))
415         SvREFCNT_dec (RX_SAVED_COPY(rx));
416     RX_SAVED_COPY(rx) = INT2PTR(SV*,*p);
417     *p++ = 0;
418 #endif
419
420     RX_SUBBEG(rx) = INT2PTR(char*,*p++);
421     RX_SUBLEN(rx) = (I32)(*p++);
422     RX_SUBOFFSET(rx) = (I32)*p++;
423     RX_SUBCOFFSET(rx) = (I32)*p++;
424     for (i = 0; i <= RX_NPARENS(rx); ++i) {
425         RX_OFFS(rx)[i].start = (I32)(*p++);
426         RX_OFFS(rx)[i].end = (I32)(*p++);
427     }
428 }
429
430 static void
431 S_rxres_free(pTHX_ void **rsp)
432 {
433     UV * const p = (UV*)*rsp;
434
435     PERL_ARGS_ASSERT_RXRES_FREE;
436     PERL_UNUSED_CONTEXT;
437
438     if (p) {
439         void *tmp = INT2PTR(char*,*p);
440 #ifdef PERL_POISON
441 #ifdef PERL_ANY_COW
442         U32 i = 9 + p[1] * 2;
443 #else
444         U32 i = 8 + p[1] * 2;
445 #endif
446 #endif
447
448 #ifdef PERL_ANY_COW
449         SvREFCNT_dec (INT2PTR(SV*,p[2]));
450 #endif
451 #ifdef PERL_POISON
452         PoisonFree(p, i, sizeof(UV));
453 #endif
454
455         Safefree(tmp);
456         Safefree(p);
457         *rsp = NULL;
458     }
459 }
460
461 #define FORM_NUM_BLANK (1<<30)
462 #define FORM_NUM_POINT (1<<29)
463
464 PP(pp_formline)
465 {
466     dSP; dMARK; dORIGMARK;
467     SV * const tmpForm = *++MARK;
468     SV *formsv;             /* contains text of original format */
469     U32 *fpc;       /* format ops program counter */
470     char *t;        /* current append position in target string */
471     const char *f;          /* current position in format string */
472     I32 arg;
473     SV *sv = NULL; /* current item */
474     const char *item = NULL;/* string value of current item */
475     I32 itemsize  = 0;      /* length (chars) of item, possibly truncated */
476     I32 itembytes = 0;      /* as itemsize, but length in bytes */
477     I32 fieldsize = 0;      /* width of current field */
478     I32 lines = 0;          /* number of lines that have been output */
479     bool chopspace = (strchr(PL_chopset, ' ') != NULL); /* does $: have space */
480     const char *chophere = NULL; /* where to chop current item */
481     STRLEN linemark = 0;    /* pos of start of line in output */
482     NV value;
483     bool gotsome = FALSE;   /* seen at least one non-blank item on this line */
484     STRLEN len;             /* length of current sv */
485     STRLEN linemax;         /* estimate of output size in bytes */
486     bool item_is_utf8 = FALSE;
487     bool targ_is_utf8 = FALSE;
488     const char *fmt;
489     MAGIC *mg = NULL;
490     U8 *source;             /* source of bytes to append */
491     STRLEN to_copy;         /* how may bytes to append */
492     char trans;             /* what chars to translate */
493
494     mg = doparseform(tmpForm);
495
496     fpc = (U32*)mg->mg_ptr;
497     /* the actual string the format was compiled from.
498      * with overload etc, this may not match tmpForm */
499     formsv = mg->mg_obj;
500
501
502     SvPV_force(PL_formtarget, len);
503     if (SvTAINTED(tmpForm) || SvTAINTED(formsv))
504         SvTAINTED_on(PL_formtarget);
505     if (DO_UTF8(PL_formtarget))
506         targ_is_utf8 = TRUE;
507     linemax = (SvCUR(formsv) * (IN_BYTES ? 1 : 3) + 1);
508     t = SvGROW(PL_formtarget, len + linemax + 1);
509     /* XXX from now onwards, SvCUR(PL_formtarget) is invalid */
510     t += len;
511     f = SvPV_const(formsv, len);
512
513     for (;;) {
514         DEBUG_f( {
515             const char *name = "???";
516             arg = -1;
517             switch (*fpc) {
518             case FF_LITERAL:    arg = fpc[1]; name = "LITERAL"; break;
519             case FF_BLANK:      arg = fpc[1]; name = "BLANK";   break;
520             case FF_SKIP:       arg = fpc[1]; name = "SKIP";    break;
521             case FF_FETCH:      arg = fpc[1]; name = "FETCH";   break;
522             case FF_DECIMAL:    arg = fpc[1]; name = "DECIMAL"; break;
523
524             case FF_CHECKNL:    name = "CHECKNL";       break;
525             case FF_CHECKCHOP:  name = "CHECKCHOP";     break;
526             case FF_SPACE:      name = "SPACE";         break;
527             case FF_HALFSPACE:  name = "HALFSPACE";     break;
528             case FF_ITEM:       name = "ITEM";          break;
529             case FF_CHOP:       name = "CHOP";          break;
530             case FF_LINEGLOB:   name = "LINEGLOB";      break;
531             case FF_NEWLINE:    name = "NEWLINE";       break;
532             case FF_MORE:       name = "MORE";          break;
533             case FF_LINEMARK:   name = "LINEMARK";      break;
534             case FF_END:        name = "END";           break;
535             case FF_0DECIMAL:   name = "0DECIMAL";      break;
536             case FF_LINESNGL:   name = "LINESNGL";      break;
537             }
538             if (arg >= 0)
539                 PerlIO_printf(Perl_debug_log, "%-16s%ld\n", name, (long) arg);
540             else
541                 PerlIO_printf(Perl_debug_log, "%-16s\n", name);
542         } );
543         switch (*fpc++) {
544         case FF_LINEMARK: /* start (or end) of a line */
545             linemark = t - SvPVX(PL_formtarget);
546             lines++;
547             gotsome = FALSE;
548             break;
549
550         case FF_LITERAL: /* append <arg> literal chars */
551             to_copy = *fpc++;
552             source = (U8 *)f;
553             f += to_copy;
554             trans = '~';
555             item_is_utf8 = targ_is_utf8 ? !!DO_UTF8(formsv) : !!SvUTF8(formsv);
556             goto append;
557
558         case FF_SKIP: /* skip <arg> chars in format */
559             f += *fpc++;
560             break;
561
562         case FF_FETCH: /* get next item and set field size to <arg> */
563             arg = *fpc++;
564             f += arg;
565             fieldsize = arg;
566
567             if (MARK < SP)
568                 sv = *++MARK;
569             else {
570                 sv = &PL_sv_no;
571                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Not enough format arguments");
572             }
573             if (SvTAINTED(sv))
574                 SvTAINTED_on(PL_formtarget);
575             break;
576
577         case FF_CHECKNL: /* find max len of item (up to \n) that fits field */
578             {
579                 const char *s = item = SvPV_const(sv, len);
580                 const char *send = s + len;
581
582                 itemsize = 0;
583                 item_is_utf8 = DO_UTF8(sv);
584                 while (s < send) {
585                     if (!isCNTRL(*s))
586                         gotsome = TRUE;
587                     else if (*s == '\n')
588                         break;
589
590                     if (item_is_utf8)
591                         s += UTF8SKIP(s);
592                     else
593                         s++;
594                     itemsize++;
595                     if (itemsize == fieldsize)
596                         break;
597                 }
598                 itembytes = s - item;
599                 chophere = s;
600                 break;
601             }
602
603         case FF_CHECKCHOP: /* like CHECKNL, but up to highest split point */
604             {
605                 const char *s = item = SvPV_const(sv, len);
606                 const char *send = s + len;
607                 I32 size = 0;
608
609                 chophere = NULL;
610                 item_is_utf8 = DO_UTF8(sv);
611                 while (s < send) {
612                     /* look for a legal split position */
613                     if (isSPACE(*s)) {
614                         if (*s == '\r') {
615                             chophere = s;
616                             itemsize = size;
617                             break;
618                         }
619                         if (chopspace) {
620                             /* provisional split point */
621                             chophere = s;
622                             itemsize = size;
623                         }
624                         /* we delay testing fieldsize until after we've
625                          * processed the possible split char directly
626                          * following the last field char; so if fieldsize=3
627                          * and item="a b cdef", we consume "a b", not "a".
628                          * Ditto further down.
629                          */
630                         if (size == fieldsize)
631                             break;
632                     }
633                     else {
634                         if (strchr(PL_chopset, *s)) {
635                             /* provisional split point */
636                             /* for a non-space split char, we include
637                              * the split char; hence the '+1' */
638                             chophere = s + 1;
639                             itemsize = size;
640                         }
641                         if (size == fieldsize)
642                             break;
643                         if (!isCNTRL(*s))
644                             gotsome = TRUE;
645                     }
646
647                     if (item_is_utf8)
648                         s += UTF8SKIP(s);
649                     else
650                         s++;
651                     size++;
652                 }
653                 if (!chophere || s == send) {
654                     chophere = s;
655                     itemsize = size;
656                 }
657                 itembytes = chophere - item;
658
659                 break;
660             }
661
662         case FF_SPACE: /* append padding space (diff of field, item size) */
663             arg = fieldsize - itemsize;
664             if (arg) {
665                 fieldsize -= arg;
666                 while (arg-- > 0)
667                     *t++ = ' ';
668             }
669             break;
670
671         case FF_HALFSPACE: /* like FF_SPACE, but only append half as many */
672             arg = fieldsize - itemsize;
673             if (arg) {
674                 arg /= 2;
675                 fieldsize -= arg;
676                 while (arg-- > 0)
677                     *t++ = ' ';
678             }
679             break;
680
681         case FF_ITEM: /* append a text item, while blanking ctrl chars */
682             to_copy = itembytes;
683             source = (U8 *)item;
684             trans = 1;
685             goto append;
686
687         case FF_CHOP: /* (for ^*) chop the current item */
688             if (sv != &PL_sv_no) {
689                 const char *s = chophere;
690                 if (chopspace) {
691                     while (isSPACE(*s))
692                         s++;
693                 }
694                 if (SvPOKp(sv))
695                     sv_chop(sv,s);
696                 else
697                     /* tied, overloaded or similar strangeness.
698                      * Do it the hard way */
699                     sv_setpvn(sv, s, len - (s-item));
700                 SvSETMAGIC(sv);
701                 break;
702             }
703
704         case FF_LINESNGL: /* process ^*  */
705             chopspace = 0;
706             /* FALLTHROUGH */
707
708         case FF_LINEGLOB: /* process @*  */
709             {
710                 const bool oneline = fpc[-1] == FF_LINESNGL;
711                 const char *s = item = SvPV_const(sv, len);
712                 const char *const send = s + len;
713
714                 item_is_utf8 = DO_UTF8(sv);
715                 chophere = s + len;
716                 if (!len)
717                     break;
718                 trans = 0;
719                 gotsome = TRUE;
720                 source = (U8 *) s;
721                 to_copy = len;
722                 while (s < send) {
723                     if (*s++ == '\n') {
724                         if (oneline) {
725                             to_copy = s - item - 1;
726                             chophere = s;
727                             break;
728                         } else {
729                             if (s == send) {
730                                 to_copy--;
731                             } else
732                                 lines++;
733                         }
734                     }
735                 }
736             }
737
738         append:
739             /* append to_copy bytes from source to PL_formstring.
740              * item_is_utf8 implies source is utf8.
741              * if trans, translate certain characters during the copy */
742             {
743                 U8 *tmp = NULL;
744                 STRLEN grow = 0;
745
746                 SvCUR_set(PL_formtarget,
747                           t - SvPVX_const(PL_formtarget));
748
749                 if (targ_is_utf8 && !item_is_utf8) {
750                     source = tmp = bytes_to_utf8(source, &to_copy);
751                 } else {
752                     if (item_is_utf8 && !targ_is_utf8) {
753                         U8 *s;
754                         /* Upgrade targ to UTF8, and then we reduce it to
755                            a problem we have a simple solution for.
756                            Don't need get magic.  */
757                         sv_utf8_upgrade_nomg(PL_formtarget);
758                         targ_is_utf8 = TRUE;
759                         /* re-calculate linemark */
760                         s = (U8*)SvPVX(PL_formtarget);
761                         /* the bytes we initially allocated to append the
762                          * whole line may have been gobbled up during the
763                          * upgrade, so allocate a whole new line's worth
764                          * for safety */
765                         grow = linemax;
766                         while (linemark--)
767                             s += UTF8SKIP(s);
768                         linemark = s - (U8*)SvPVX(PL_formtarget);
769                     }
770                     /* Easy. They agree.  */
771                     assert (item_is_utf8 == targ_is_utf8);
772                 }
773                 if (!trans)
774                     /* @* and ^* are the only things that can exceed
775                      * the linemax, so grow by the output size, plus
776                      * a whole new form's worth in case of any further
777                      * output */
778                     grow = linemax + to_copy;
779                 if (grow)
780                     SvGROW(PL_formtarget, SvCUR(PL_formtarget) + grow + 1);
781                 t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget);
782
783                 Copy(source, t, to_copy, char);
784                 if (trans) {
785                     /* blank out ~ or control chars, depending on trans.
786                      * works on bytes not chars, so relies on not
787                      * matching utf8 continuation bytes */
788                     U8 *s = (U8*)t;
789                     U8 *send = s + to_copy;
790                     while (s < send) {
791                         const int ch = *s;
792                         if (trans == '~' ? (ch == '~') : isCNTRL(ch))
793                             *s = ' ';
794                         s++;
795                     }
796                 }
797
798                 t += to_copy;
799                 SvCUR_set(PL_formtarget, SvCUR(PL_formtarget) + to_copy);
800                 if (tmp)
801                     Safefree(tmp);
802                 break;
803             }
804
805         case FF_0DECIMAL: /* like FF_DECIMAL but for 0### */
806             arg = *fpc++;
807             fmt = (const char *)
808                 ((arg & FORM_NUM_POINT) ? "%#0*.*" NVff : "%0*.*" NVff);
809             goto ff_dec;
810
811         case FF_DECIMAL: /* do @##, ^##, where <arg>=(precision|flags) */
812             arg = *fpc++;
813             fmt = (const char *)
814                 ((arg & FORM_NUM_POINT) ? "%#*.*" NVff : "%*.*" NVff);
815         ff_dec:
816             /* If the field is marked with ^ and the value is undefined,
817                blank it out. */
818             if ((arg & FORM_NUM_BLANK) && !SvOK(sv)) {
819                 arg = fieldsize;
820                 while (arg--)
821                     *t++ = ' ';
822                 break;
823             }
824             gotsome = TRUE;
825             value = SvNV(sv);
826             /* overflow evidence */
827             if (num_overflow(value, fieldsize, arg)) {
828                 arg = fieldsize;
829                 while (arg--)
830                     *t++ = '#';
831                 break;
832             }
833             /* Formats aren't yet marked for locales, so assume "yes". */
834             {
835                 Size_t max = SvLEN(PL_formtarget) - (t - SvPVX(PL_formtarget));
836                 int len;
837                 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
838                 STORE_LC_NUMERIC_SET_TO_NEEDED();
839                 arg &= ~(FORM_NUM_POINT|FORM_NUM_BLANK);
840 #ifdef USE_QUADMATH
841                 {
842                     const char* qfmt = quadmath_format_single(fmt);
843                     int len;
844                     if (!qfmt)
845                         Perl_croak_nocontext("panic: quadmath invalid format \"%s\"", fmt);
846                     len = quadmath_snprintf(t, max, qfmt, (int) fieldsize, (int) arg, value);
847                     if (len == -1)
848                         Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt);
849                     if (qfmt != fmt)
850                         Safefree(fmt);
851                 }
852 #else
853                 /* we generate fmt ourselves so it is safe */
854                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
855                 len = my_snprintf(t, max, fmt, (int) fieldsize, (int) arg, value);
856                 GCC_DIAG_RESTORE;
857 #endif
858                 PERL_MY_SNPRINTF_POST_GUARD(len, max);
859                 RESTORE_LC_NUMERIC();
860             }
861             t += fieldsize;
862             break;
863
864         case FF_NEWLINE: /* delete trailing spaces, then append \n */
865             f++;
866             while (t-- > (SvPVX(PL_formtarget) + linemark) && *t == ' ') ;
867             t++;
868             *t++ = '\n';
869             break;
870
871         case FF_BLANK: /* for arg==0: do '~'; for arg>0 : do '~~' */
872             arg = *fpc++;
873             if (gotsome) {
874                 if (arg) {              /* repeat until fields exhausted? */
875                     fpc--;
876                     goto end;
877                 }
878             }
879             else {
880                 t = SvPVX(PL_formtarget) + linemark;
881                 lines--;
882             }
883             break;
884
885         case FF_MORE: /* replace long end of string with '...' */
886             {
887                 const char *s = chophere;
888                 const char *send = item + len;
889                 if (chopspace) {
890                     while (isSPACE(*s) && (s < send))
891                         s++;
892                 }
893                 if (s < send) {
894                     char *s1;
895                     arg = fieldsize - itemsize;
896                     if (arg) {
897                         fieldsize -= arg;
898                         while (arg-- > 0)
899                             *t++ = ' ';
900                     }
901                     s1 = t - 3;
902                     if (strnEQ(s1,"   ",3)) {
903                         while (s1 > SvPVX_const(PL_formtarget) && isSPACE(s1[-1]))
904                             s1--;
905                     }
906                     *s1++ = '.';
907                     *s1++ = '.';
908                     *s1++ = '.';
909                 }
910                 break;
911             }
912
913         case FF_END: /* tidy up, then return */
914         end:
915             assert(t < SvPVX_const(PL_formtarget) + SvLEN(PL_formtarget));
916             *t = '\0';
917             SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
918             if (targ_is_utf8)
919                 SvUTF8_on(PL_formtarget);
920             FmLINES(PL_formtarget) += lines;
921             SP = ORIGMARK;
922             if (fpc[-1] == FF_BLANK)
923                 RETURNOP(cLISTOP->op_first);
924             else
925                 RETPUSHYES;
926         }
927     }
928 }
929
930 PP(pp_grepstart)
931 {
932     dSP;
933     SV *src;
934
935     if (PL_stack_base + TOPMARK == SP) {
936         (void)POPMARK;
937         if (GIMME_V == G_SCALAR)
938             mXPUSHi(0);
939         RETURNOP(PL_op->op_next->op_next);
940     }
941     PL_stack_sp = PL_stack_base + TOPMARK + 1;
942     Perl_pp_pushmark(aTHX);                             /* push dst */
943     Perl_pp_pushmark(aTHX);                             /* push src */
944     ENTER_with_name("grep");                                    /* enter outer scope */
945
946     SAVETMPS;
947     SAVE_DEFSV;
948     ENTER_with_name("grep_item");                                       /* enter inner scope */
949     SAVEVPTR(PL_curpm);
950
951     src = PL_stack_base[TOPMARK];
952     if (SvPADTMP(src)) {
953         src = PL_stack_base[TOPMARK] = sv_mortalcopy(src);
954         PL_tmps_floor++;
955     }
956     SvTEMP_off(src);
957     DEFSV_set(src);
958
959     PUTBACK;
960     if (PL_op->op_type == OP_MAPSTART)
961         Perl_pp_pushmark(aTHX);                 /* push top */
962     return ((LOGOP*)PL_op->op_next)->op_other;
963 }
964
965 PP(pp_mapwhile)
966 {
967     dSP;
968     const I32 gimme = GIMME_V;
969     I32 items = (SP - PL_stack_base) - TOPMARK; /* how many new items */
970     I32 count;
971     I32 shift;
972     SV** src;
973     SV** dst;
974
975     /* first, move source pointer to the next item in the source list */
976     ++PL_markstack_ptr[-1];
977
978     /* if there are new items, push them into the destination list */
979     if (items && gimme != G_VOID) {
980         /* might need to make room back there first */
981         if (items > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) {
982             /* XXX this implementation is very pessimal because the stack
983              * is repeatedly extended for every set of items.  Is possible
984              * to do this without any stack extension or copying at all
985              * by maintaining a separate list over which the map iterates
986              * (like foreach does). --gsar */
987
988             /* everything in the stack after the destination list moves
989              * towards the end the stack by the amount of room needed */
990             shift = items - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]);
991
992             /* items to shift up (accounting for the moved source pointer) */
993             count = (SP - PL_stack_base) - (PL_markstack_ptr[-1] - 1);
994
995             /* This optimization is by Ben Tilly and it does
996              * things differently from what Sarathy (gsar)
997              * is describing.  The downside of this optimization is
998              * that leaves "holes" (uninitialized and hopefully unused areas)
999              * to the Perl stack, but on the other hand this
1000              * shouldn't be a problem.  If Sarathy's idea gets
1001              * implemented, this optimization should become
1002              * irrelevant.  --jhi */
1003             if (shift < count)
1004                 shift = count; /* Avoid shifting too often --Ben Tilly */
1005
1006             EXTEND(SP,shift);
1007             src = SP;
1008             dst = (SP += shift);
1009             PL_markstack_ptr[-1] += shift;
1010             *PL_markstack_ptr += shift;
1011             while (count--)
1012                 *dst-- = *src--;
1013         }
1014         /* copy the new items down to the destination list */
1015         dst = PL_stack_base + (PL_markstack_ptr[-2] += items) - 1;
1016         if (gimme == G_ARRAY) {
1017             /* add returned items to the collection (making mortal copies
1018              * if necessary), then clear the current temps stack frame
1019              * *except* for those items. We do this splicing the items
1020              * into the start of the tmps frame (so some items may be on
1021              * the tmps stack twice), then moving PL_tmps_floor above
1022              * them, then freeing the frame. That way, the only tmps that
1023              * accumulate over iterations are the return values for map.
1024              * We have to do to this way so that everything gets correctly
1025              * freed if we die during the map.
1026              */
1027             I32 tmpsbase;
1028             I32 i = items;
1029             /* make space for the slice */
1030             EXTEND_MORTAL(items);
1031             tmpsbase = PL_tmps_floor + 1;
1032             Move(PL_tmps_stack + tmpsbase,
1033                  PL_tmps_stack + tmpsbase + items,
1034                  PL_tmps_ix - PL_tmps_floor,
1035                  SV*);
1036             PL_tmps_ix += items;
1037
1038             while (i-- > 0) {
1039                 SV *sv = POPs;
1040                 if (!SvTEMP(sv))
1041                     sv = sv_mortalcopy(sv);
1042                 *dst-- = sv;
1043                 PL_tmps_stack[tmpsbase++] = SvREFCNT_inc_simple(sv);
1044             }
1045             /* clear the stack frame except for the items */
1046             PL_tmps_floor += items;
1047             FREETMPS;
1048             /* FREETMPS may have cleared the TEMP flag on some of the items */
1049             i = items;
1050             while (i-- > 0)
1051                 SvTEMP_on(PL_tmps_stack[--tmpsbase]);
1052         }
1053         else {
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) {
1058                 (void)POPs;
1059                 *dst-- = &PL_sv_undef;
1060             }
1061             FREETMPS;
1062         }
1063     }
1064     else {
1065         FREETMPS;
1066     }
1067     LEAVE_with_name("grep_item");                                       /* exit inner scope */
1068
1069     /* All done yet? */
1070     if (PL_markstack_ptr[-1] > TOPMARK) {
1071
1072         (void)POPMARK;                          /* pop top */
1073         LEAVE_with_name("grep");                                        /* exit outer scope */
1074         (void)POPMARK;                          /* pop src */
1075         items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
1076         (void)POPMARK;                          /* pop dst */
1077         SP = PL_stack_base + POPMARK;           /* pop original mark */
1078         if (gimme == G_SCALAR) {
1079                 dTARGET;
1080                 XPUSHi(items);
1081         }
1082         else if (gimme == G_ARRAY)
1083             SP += items;
1084         RETURN;
1085     }
1086     else {
1087         SV *src;
1088
1089         ENTER_with_name("grep_item");                                   /* enter inner scope */
1090         SAVEVPTR(PL_curpm);
1091
1092         /* set $_ to the new source item */
1093         src = PL_stack_base[PL_markstack_ptr[-1]];
1094         if (SvPADTMP(src)) {
1095             src = sv_mortalcopy(src);
1096         }
1097         SvTEMP_off(src);
1098         DEFSV_set(src);
1099
1100         RETURNOP(cLOGOP->op_other);
1101     }
1102 }
1103
1104 /* Range stuff. */
1105
1106 PP(pp_range)
1107 {
1108     if (GIMME_V == G_ARRAY)
1109         return NORMAL;
1110     if (SvTRUEx(PAD_SV(PL_op->op_targ)))
1111         return cLOGOP->op_other;
1112     else
1113         return NORMAL;
1114 }
1115
1116 PP(pp_flip)
1117 {
1118     dSP;
1119
1120     if (GIMME_V == G_ARRAY) {
1121         RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
1122     }
1123     else {
1124         dTOPss;
1125         SV * const targ = PAD_SV(PL_op->op_targ);
1126         int flip = 0;
1127
1128         if (PL_op->op_private & OPpFLIP_LINENUM) {
1129             if (GvIO(PL_last_in_gv)) {
1130                 flip = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1131             }
1132             else {
1133                 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
1134                 if (gv && GvSV(gv))
1135                     flip = SvIV(sv) == SvIV(GvSV(gv));
1136             }
1137         } else {
1138             flip = SvTRUE(sv);
1139         }
1140         if (flip) {
1141             sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
1142             if (PL_op->op_flags & OPf_SPECIAL) {
1143                 sv_setiv(targ, 1);
1144                 SETs(targ);
1145                 RETURN;
1146             }
1147             else {
1148                 sv_setiv(targ, 0);
1149                 SP--;
1150                 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
1151             }
1152         }
1153         sv_setpvs(TARG, "");
1154         SETs(targ);
1155         RETURN;
1156     }
1157 }
1158
1159 /* This code tries to decide if "$left .. $right" should use the
1160    magical string increment, or if the range is numeric (we make
1161    an exception for .."0" [#18165]). AMS 20021031. */
1162
1163 #define RANGE_IS_NUMERIC(left,right) ( \
1164         SvNIOKp(left)  || (SvOK(left)  && !SvPOKp(left))  || \
1165         SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \
1166         (((!SvOK(left) && SvOK(right)) || ((!SvOK(left) || \
1167           looks_like_number(left)) && SvPOKp(left) && *SvPVX_const(left) != '0')) \
1168          && (!SvOK(right) || looks_like_number(right))))
1169
1170 PP(pp_flop)
1171 {
1172     dSP;
1173
1174     if (GIMME_V == G_ARRAY) {
1175         dPOPPOPssrl;
1176
1177         SvGETMAGIC(left);
1178         SvGETMAGIC(right);
1179
1180         if (RANGE_IS_NUMERIC(left,right)) {
1181             IV i, j, n;
1182             if ((SvOK(left) && !SvIOK(left) && SvNV_nomg(left) < IV_MIN) ||
1183                 (SvOK(right) && (SvIOK(right)
1184                                  ? SvIsUV(right) && SvUV(right) > IV_MAX
1185                                  : SvNV_nomg(right) > IV_MAX)))
1186                 DIE(aTHX_ "Range iterator outside integer range");
1187             i = SvIV_nomg(left);
1188             j = SvIV_nomg(right);
1189             if (j >= i) {
1190                 /* Dance carefully around signed max. */
1191                 bool overflow = (i <= 0 && j > SSize_t_MAX + i - 1);
1192                 if (!overflow) {
1193                     n = j - i + 1;
1194                     /* The wraparound of signed integers is undefined
1195                      * behavior, but here we aim for count >=1, and
1196                      * negative count is just wrong. */
1197                     if (n < 1
1198 #if IVSIZE > Size_t_size
1199                         || n > SSize_t_MAX
1200 #endif
1201                         )
1202                         overflow = TRUE;
1203                 }
1204                 if (overflow)
1205                     Perl_croak(aTHX_ "Out of memory during list extend");
1206                 EXTEND_MORTAL(n);
1207                 EXTEND(SP, n);
1208             }
1209             else
1210                 n = 0;
1211             while (n--) {
1212                 SV * const sv = sv_2mortal(newSViv(i));
1213                 PUSHs(sv);
1214                 if (n) /* avoid incrementing above IV_MAX */
1215                     i++;
1216             }
1217         }
1218         else {
1219             STRLEN len, llen;
1220             const char * const lpv = SvPV_nomg_const(left, llen);
1221             const char * const tmps = SvPV_nomg_const(right, len);
1222
1223             SV *sv = newSVpvn_flags(lpv, llen, SvUTF8(left)|SVs_TEMP);
1224             while (!SvNIOKp(sv) && SvCUR(sv) <= len) {
1225                 XPUSHs(sv);
1226                 if (strEQ(SvPVX_const(sv),tmps))
1227                     break;
1228                 sv = sv_2mortal(newSVsv(sv));
1229                 sv_inc(sv);
1230             }
1231         }
1232     }
1233     else {
1234         dTOPss;
1235         SV * const targ = PAD_SV(cUNOP->op_first->op_targ);
1236         int flop = 0;
1237         sv_inc(targ);
1238
1239         if (PL_op->op_private & OPpFLIP_LINENUM) {
1240             if (GvIO(PL_last_in_gv)) {
1241                 flop = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1242             }
1243             else {
1244                 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
1245                 if (gv && GvSV(gv)) flop = SvIV(sv) == SvIV(GvSV(gv));
1246             }
1247         }
1248         else {
1249             flop = SvTRUE(sv);
1250         }
1251
1252         if (flop) {
1253             sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
1254             sv_catpvs(targ, "E0");
1255         }
1256         SETs(targ);
1257     }
1258
1259     RETURN;
1260 }
1261
1262 /* Control. */
1263
1264 static const char * const context_name[] = {
1265     "pseudo-block",
1266     NULL, /* CXt_WHEN never actually needs "block" */
1267     NULL, /* CXt_BLOCK never actually needs "block" */
1268     NULL, /* CXt_GIVEN never actually needs "block" */
1269     NULL, /* CXt_LOOP_FOR never actually needs "loop" */
1270     NULL, /* CXt_LOOP_PLAIN never actually needs "loop" */
1271     NULL, /* CXt_LOOP_LAZYSV never actually needs "loop" */
1272     NULL, /* CXt_LOOP_LAZYIV never actually needs "loop" */
1273     "subroutine",
1274     "format",
1275     "eval",
1276     "substitution",
1277 };
1278
1279 STATIC I32
1280 S_dopoptolabel(pTHX_ const char *label, STRLEN len, U32 flags)
1281 {
1282     I32 i;
1283
1284     PERL_ARGS_ASSERT_DOPOPTOLABEL;
1285
1286     for (i = cxstack_ix; i >= 0; i--) {
1287         const PERL_CONTEXT * const cx = &cxstack[i];
1288         switch (CxTYPE(cx)) {
1289         case CXt_SUBST:
1290         case CXt_SUB:
1291         case CXt_FORMAT:
1292         case CXt_EVAL:
1293         case CXt_NULL:
1294             /* diag_listed_as: Exiting subroutine via %s */
1295             Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1296                            context_name[CxTYPE(cx)], OP_NAME(PL_op));
1297             if (CxTYPE(cx) == CXt_NULL) /* sort BLOCK */
1298                 return -1;
1299             break;
1300         case CXt_LOOP_LAZYIV:
1301         case CXt_LOOP_LAZYSV:
1302         case CXt_LOOP_FOR:
1303         case CXt_LOOP_PLAIN:
1304           {
1305             STRLEN cx_label_len = 0;
1306             U32 cx_label_flags = 0;
1307             const char *cx_label = CxLABEL_len_flags(cx, &cx_label_len, &cx_label_flags);
1308             if (!cx_label || !(
1309                     ( (cx_label_flags & SVf_UTF8) != (flags & SVf_UTF8) ) ?
1310                         (flags & SVf_UTF8)
1311                             ? (bytes_cmp_utf8(
1312                                         (const U8*)cx_label, cx_label_len,
1313                                         (const U8*)label, len) == 0)
1314                             : (bytes_cmp_utf8(
1315                                         (const U8*)label, len,
1316                                         (const U8*)cx_label, cx_label_len) == 0)
1317                     : (len == cx_label_len && ((cx_label == label)
1318                                     || memEQ(cx_label, label, len))) )) {
1319                 DEBUG_l(Perl_deb(aTHX_ "(poptolabel(): skipping label at cx=%ld %s)\n",
1320                         (long)i, cx_label));
1321                 continue;
1322             }
1323             DEBUG_l( Perl_deb(aTHX_ "(poptolabel(): found label at cx=%ld %s)\n", (long)i, label));
1324             return i;
1325           }
1326         }
1327     }
1328     return i;
1329 }
1330
1331
1332
1333 I32
1334 Perl_dowantarray(pTHX)
1335 {
1336     const I32 gimme = block_gimme();
1337     return (gimme == G_VOID) ? G_SCALAR : gimme;
1338 }
1339
1340 I32
1341 Perl_block_gimme(pTHX)
1342 {
1343     const I32 cxix = dopoptosub(cxstack_ix);
1344     U8 gimme;
1345     if (cxix < 0)
1346         return G_VOID;
1347
1348     gimme = (cxstack[cxix].blk_gimme & G_WANT);
1349     if (!gimme)
1350         Perl_croak(aTHX_ "panic: bad gimme: %d\n", gimme);
1351     return gimme;
1352 }
1353
1354
1355 I32
1356 Perl_is_lvalue_sub(pTHX)
1357 {
1358     const I32 cxix = dopoptosub(cxstack_ix);
1359     assert(cxix >= 0);  /* We should only be called from inside subs */
1360
1361     if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv))
1362         return CxLVAL(cxstack + cxix);
1363     else
1364         return 0;
1365 }
1366
1367 /* only used by PUSHSUB */
1368 I32
1369 Perl_was_lvalue_sub(pTHX)
1370 {
1371     const I32 cxix = dopoptosub(cxstack_ix-1);
1372     assert(cxix >= 0);  /* We should only be called from inside subs */
1373
1374     if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv))
1375         return CxLVAL(cxstack + cxix);
1376     else
1377         return 0;
1378 }
1379
1380 STATIC I32
1381 S_dopoptosub_at(pTHX_ const PERL_CONTEXT *cxstk, I32 startingblock)
1382 {
1383     I32 i;
1384
1385     PERL_ARGS_ASSERT_DOPOPTOSUB_AT;
1386 #ifndef DEBUGGING
1387     PERL_UNUSED_CONTEXT;
1388 #endif
1389
1390     for (i = startingblock; i >= 0; i--) {
1391         const PERL_CONTEXT * const cx = &cxstk[i];
1392         switch (CxTYPE(cx)) {
1393         default:
1394             continue;
1395         case CXt_SUB:
1396             /* in sub foo { /(?{...})/ }, foo ends up on the CX stack
1397              * twice; the first for the normal foo() call, and the second
1398              * for a faked up re-entry into the sub to execute the
1399              * code block. Hide this faked entry from the world. */
1400             if (cx->cx_type & CXp_SUB_RE_FAKE)
1401                 continue;
1402             /* FALLTHROUGH */
1403         case CXt_EVAL:
1404         case CXt_FORMAT:
1405             DEBUG_l( Perl_deb(aTHX_ "(dopoptosub_at(): found sub at cx=%ld)\n", (long)i));
1406             return i;
1407         }
1408     }
1409     return i;
1410 }
1411
1412 STATIC I32
1413 S_dopoptoeval(pTHX_ I32 startingblock)
1414 {
1415     I32 i;
1416     for (i = startingblock; i >= 0; i--) {
1417         const PERL_CONTEXT *cx = &cxstack[i];
1418         switch (CxTYPE(cx)) {
1419         default:
1420             continue;
1421         case CXt_EVAL:
1422             DEBUG_l( Perl_deb(aTHX_ "(dopoptoeval(): found eval at cx=%ld)\n", (long)i));
1423             return i;
1424         }
1425     }
1426     return i;
1427 }
1428
1429 STATIC I32
1430 S_dopoptoloop(pTHX_ I32 startingblock)
1431 {
1432     I32 i;
1433     for (i = startingblock; i >= 0; i--) {
1434         const PERL_CONTEXT * const cx = &cxstack[i];
1435         switch (CxTYPE(cx)) {
1436         case CXt_SUBST:
1437         case CXt_SUB:
1438         case CXt_FORMAT:
1439         case CXt_EVAL:
1440         case CXt_NULL:
1441             /* diag_listed_as: Exiting subroutine via %s */
1442             Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1443                            context_name[CxTYPE(cx)], OP_NAME(PL_op));
1444             if ((CxTYPE(cx)) == CXt_NULL) /* sort BLOCK */
1445                 return -1;
1446             break;
1447         case CXt_LOOP_LAZYIV:
1448         case CXt_LOOP_LAZYSV:
1449         case CXt_LOOP_FOR:
1450         case CXt_LOOP_PLAIN:
1451             DEBUG_l( Perl_deb(aTHX_ "(dopoptoloop(): found loop at cx=%ld)\n", (long)i));
1452             return i;
1453         }
1454     }
1455     return i;
1456 }
1457
1458 /* find the next GIVEN or FOR loop context block */
1459
1460 STATIC I32
1461 S_dopoptogivenfor(pTHX_ I32 startingblock)
1462 {
1463     I32 i;
1464     for (i = startingblock; i >= 0; i--) {
1465         const PERL_CONTEXT *cx = &cxstack[i];
1466         switch (CxTYPE(cx)) {
1467         default:
1468             continue;
1469         case CXt_GIVEN:
1470             DEBUG_l( Perl_deb(aTHX_ "(dopoptogivenfor(): found given at cx=%ld)\n", (long)i));
1471             return i;
1472         case CXt_LOOP_PLAIN:
1473             assert(!CxFOREACHDEF(cx));
1474             break;
1475         case CXt_LOOP_LAZYIV:
1476         case CXt_LOOP_LAZYSV:
1477         case CXt_LOOP_FOR:
1478             if (CxFOREACHDEF(cx)) {
1479                 DEBUG_l( Perl_deb(aTHX_ "(dopoptogivenfor(): found foreach at cx=%ld)\n", (long)i));
1480                 return i;
1481             }
1482         }
1483     }
1484     return i;
1485 }
1486
1487 STATIC I32
1488 S_dopoptowhen(pTHX_ I32 startingblock)
1489 {
1490     I32 i;
1491     for (i = startingblock; i >= 0; i--) {
1492         const PERL_CONTEXT *cx = &cxstack[i];
1493         switch (CxTYPE(cx)) {
1494         default:
1495             continue;
1496         case CXt_WHEN:
1497             DEBUG_l( Perl_deb(aTHX_ "(dopoptowhen(): found when at cx=%ld)\n", (long)i));
1498             return i;
1499         }
1500     }
1501     return i;
1502 }
1503
1504 void
1505 Perl_dounwind(pTHX_ I32 cxix)
1506 {
1507     if (!PL_curstackinfo) /* can happen if die during thread cloning */
1508         return;
1509
1510     while (cxstack_ix > cxix) {
1511         PERL_CONTEXT *cx = &cxstack[cxstack_ix];
1512         DEBUG_CX("UNWIND");                                             \
1513         /* Note: we don't need to restore the base context info till the end. */
1514
1515         CX_LEAVE_SCOPE(cx);
1516
1517         switch (CxTYPE(cx)) {
1518         case CXt_SUBST:
1519             POPSUBST(cx);
1520             break;
1521         case CXt_SUB:
1522             POPSUB(cx);
1523             break;
1524         case CXt_EVAL:
1525             POPEVAL(cx);
1526             break;
1527         case CXt_BLOCK:
1528             POPBASICBLK(cx);
1529             break;
1530         case CXt_LOOP_LAZYIV:
1531         case CXt_LOOP_LAZYSV:
1532         case CXt_LOOP_FOR:
1533         case CXt_LOOP_PLAIN:
1534             POPLOOP(cx);
1535             break;
1536         case CXt_WHEN:
1537             POPWHEN(cx);
1538             break;
1539         case CXt_GIVEN:
1540             POPGIVEN(cx);
1541             break;
1542         case CXt_NULL:
1543             /* there isn't a POPNULL ! */
1544             break;
1545         case CXt_FORMAT:
1546             POPFORMAT(cx);
1547             break;
1548         }
1549         cxstack_ix--;
1550     }
1551 }
1552
1553 void
1554 Perl_qerror(pTHX_ SV *err)
1555 {
1556     PERL_ARGS_ASSERT_QERROR;
1557
1558     if (PL_in_eval) {
1559         if (PL_in_eval & EVAL_KEEPERR) {
1560                 Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf,
1561                                                     SVfARG(err));
1562         }
1563         else
1564             sv_catsv(ERRSV, err);
1565     }
1566     else if (PL_errors)
1567         sv_catsv(PL_errors, err);
1568     else
1569         Perl_warn(aTHX_ "%"SVf, SVfARG(err));
1570     if (PL_parser)
1571         ++PL_parser->error_count;
1572 }
1573
1574
1575
1576 /* pop the cx, undef or delete the %INC entry, then croak.
1577  * require0 indicates that the require didn't return a true value */
1578
1579 void
1580 S_undo_inc_then_croak(pTHX_ PERL_CONTEXT *cx, SV *err, bool require0)
1581 {
1582     const char *fmt;
1583     HV *inc_hv = GvHVn(PL_incgv);
1584     SV *namesv = cx->blk_eval.old_namesv;
1585     I32  klen  = SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv);
1586     const char *key = SvPVX_const(namesv);
1587
1588     CX_POP(cx);
1589
1590     if (require0) {
1591         (void)hv_delete(inc_hv, key, klen, G_DISCARD);
1592         fmt = "%"SVf" did not return a true value";
1593         err = namesv;
1594     }
1595     else {
1596         (void)hv_store(inc_hv, key, klen, &PL_sv_undef, 0);
1597         fmt = "%"SVf"Compilation failed in require";
1598         err = err ? err : newSVpvs_flags("Unknown error\n", SVs_TEMP);
1599     }
1600
1601     /* note that unlike pp_entereval, pp_require isn't
1602      * supposed to trap errors. So now that we've popped the
1603      * EVAL that pp_require pushed, and processed the error
1604      * message, rethrow the error */
1605     Perl_croak(aTHX_ fmt, SVfARG(err));
1606 }
1607
1608
1609 void
1610 Perl_die_unwind(pTHX_ SV *msv)
1611 {
1612     SV *exceptsv = sv_mortalcopy(msv);
1613     U8 in_eval = PL_in_eval;
1614     PERL_ARGS_ASSERT_DIE_UNWIND;
1615
1616     if (in_eval) {
1617         I32 cxix;
1618
1619         /*
1620          * Historically, perl used to set ERRSV ($@) early in the die
1621          * process and rely on it not getting clobbered during unwinding.
1622          * That sucked, because it was liable to get clobbered, so the
1623          * setting of ERRSV used to emit the exception from eval{} has
1624          * been moved to much later, after unwinding (see just before
1625          * JMPENV_JUMP below).  However, some modules were relying on the
1626          * early setting, by examining $@ during unwinding to use it as
1627          * a flag indicating whether the current unwinding was caused by
1628          * an exception.  It was never a reliable flag for that purpose,
1629          * being totally open to false positives even without actual
1630          * clobberage, but was useful enough for production code to
1631          * semantically rely on it.
1632          *
1633          * We'd like to have a proper introspective interface that
1634          * explicitly describes the reason for whatever unwinding
1635          * operations are currently in progress, so that those modules
1636          * work reliably and $@ isn't further overloaded.  But we don't
1637          * have one yet.  In its absence, as a stopgap measure, ERRSV is
1638          * now *additionally* set here, before unwinding, to serve as the
1639          * (unreliable) flag that it used to.
1640          *
1641          * This behaviour is temporary, and should be removed when a
1642          * proper way to detect exceptional unwinding has been developed.
1643          * As of 2010-12, the authors of modules relying on the hack
1644          * are aware of the issue, because the modules failed on
1645          * perls 5.13.{1..7} which had late setting of $@ without this
1646          * early-setting hack.
1647          */
1648         if (!(in_eval & EVAL_KEEPERR)) {
1649             SvTEMP_off(exceptsv);
1650             sv_setsv(ERRSV, exceptsv);
1651         }
1652
1653         if (in_eval & EVAL_KEEPERR) {
1654             Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf,
1655                            SVfARG(exceptsv));
1656         }
1657
1658         while ((cxix = dopoptoeval(cxstack_ix)) < 0
1659                && PL_curstackinfo->si_prev)
1660         {
1661             dounwind(-1);
1662             POPSTACK;
1663         }
1664
1665         if (cxix >= 0) {
1666             PERL_CONTEXT *cx;
1667             SV **newsp;
1668             I32 gimme;
1669             JMPENV *restartjmpenv;
1670             OP *restartop;
1671
1672             if (cxix < cxstack_ix)
1673                 dounwind(cxix);
1674
1675             cx = &cxstack[cxstack_ix];
1676             assert(CxTYPE(cx) == CXt_EVAL);
1677
1678             /* return false to the caller of eval */
1679             newsp = PL_stack_base + cx->blk_oldsp;
1680             gimme = cx->blk_gimme;
1681             if (gimme == G_SCALAR)
1682                 *++newsp = &PL_sv_undef;
1683             PL_stack_sp = newsp;
1684
1685             CX_LEAVE_SCOPE(cx);
1686             POPEVAL(cx);
1687             POPBLOCK(cx);
1688
1689             restartjmpenv = cx->blk_eval.cur_top_env;
1690             restartop = cx->blk_eval.retop;
1691             if (CxOLD_OP_TYPE(cx) == OP_REQUIRE) {
1692                 S_undo_inc_then_croak(aTHX_ cx, exceptsv, FALSE);
1693                 NOT_REACHED; /* NOTREACHED */
1694             }
1695             CX_POP(cx);
1696
1697             if (!(in_eval & EVAL_KEEPERR))
1698                 sv_setsv(ERRSV, exceptsv);
1699             PL_restartjmpenv = restartjmpenv;
1700             PL_restartop = restartop;
1701             JMPENV_JUMP(3);
1702             NOT_REACHED; /* NOTREACHED */
1703         }
1704     }
1705
1706     write_to_stderr(exceptsv);
1707     my_failure_exit();
1708     NOT_REACHED; /* NOTREACHED */
1709 }
1710
1711 PP(pp_xor)
1712 {
1713     dSP; dPOPTOPssrl;
1714     if (SvTRUE(left) != SvTRUE(right))
1715         RETSETYES;
1716     else
1717         RETSETNO;
1718 }
1719
1720 /*
1721
1722 =head1 CV Manipulation Functions
1723
1724 =for apidoc caller_cx
1725
1726 The XSUB-writer's equivalent of L<caller()|perlfunc/caller>.  The
1727 returned C<PERL_CONTEXT> structure can be interrogated to find all the
1728 information returned to Perl by C<caller>.  Note that XSUBs don't get a
1729 stack frame, so C<caller_cx(0, NULL)> will return information for the
1730 immediately-surrounding Perl code.
1731
1732 This function skips over the automatic calls to C<&DB::sub> made on the
1733 behalf of the debugger.  If the stack frame requested was a sub called by
1734 C<DB::sub>, the return value will be the frame for the call to
1735 C<DB::sub>, since that has the correct line number/etc. for the call
1736 site.  If I<dbcxp> is non-C<NULL>, it will be set to a pointer to the
1737 frame for the sub call itself.
1738
1739 =cut
1740 */
1741
1742 const PERL_CONTEXT *
1743 Perl_caller_cx(pTHX_ I32 count, const PERL_CONTEXT **dbcxp)
1744 {
1745     I32 cxix = dopoptosub(cxstack_ix);
1746     const PERL_CONTEXT *cx;
1747     const PERL_CONTEXT *ccstack = cxstack;
1748     const PERL_SI *top_si = PL_curstackinfo;
1749
1750     for (;;) {
1751         /* we may be in a higher stacklevel, so dig down deeper */
1752         while (cxix < 0 && top_si->si_type != PERLSI_MAIN) {
1753             top_si = top_si->si_prev;
1754             ccstack = top_si->si_cxstack;
1755             cxix = dopoptosub_at(ccstack, top_si->si_cxix);
1756         }
1757         if (cxix < 0)
1758             return NULL;
1759         /* caller() should not report the automatic calls to &DB::sub */
1760         if (PL_DBsub && GvCV(PL_DBsub) && cxix >= 0 &&
1761                 ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub))
1762             count++;
1763         if (!count--)
1764             break;
1765         cxix = dopoptosub_at(ccstack, cxix - 1);
1766     }
1767
1768     cx = &ccstack[cxix];
1769     if (dbcxp) *dbcxp = cx;
1770
1771     if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1772         const I32 dbcxix = dopoptosub_at(ccstack, cxix - 1);
1773         /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the
1774            field below is defined for any cx. */
1775         /* caller() should not report the automatic calls to &DB::sub */
1776         if (PL_DBsub && GvCV(PL_DBsub) && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub))
1777             cx = &ccstack[dbcxix];
1778     }
1779
1780     return cx;
1781 }
1782
1783 PP(pp_caller)
1784 {
1785     dSP;
1786     const PERL_CONTEXT *cx;
1787     const PERL_CONTEXT *dbcx;
1788     I32 gimme = GIMME_V;
1789     const HEK *stash_hek;
1790     I32 count = 0;
1791     bool has_arg = MAXARG && TOPs;
1792     const COP *lcop;
1793
1794     if (MAXARG) {
1795       if (has_arg)
1796         count = POPi;
1797       else (void)POPs;
1798     }
1799
1800     cx = caller_cx(count + !!(PL_op->op_private & OPpOFFBYONE), &dbcx);
1801     if (!cx) {
1802         if (gimme != G_ARRAY) {
1803             EXTEND(SP, 1);
1804             RETPUSHUNDEF;
1805         }
1806         RETURN;
1807     }
1808
1809     DEBUG_CX("CALLER");
1810     assert(CopSTASH(cx->blk_oldcop));
1811     stash_hek = SvTYPE(CopSTASH(cx->blk_oldcop)) == SVt_PVHV
1812       ? HvNAME_HEK((HV*)CopSTASH(cx->blk_oldcop))
1813       : NULL;
1814     if (gimme != G_ARRAY) {
1815         EXTEND(SP, 1);
1816         if (!stash_hek)
1817             PUSHs(&PL_sv_undef);
1818         else {
1819             dTARGET;
1820             sv_sethek(TARG, stash_hek);
1821             PUSHs(TARG);
1822         }
1823         RETURN;
1824     }
1825
1826     EXTEND(SP, 11);
1827
1828     if (!stash_hek)
1829         PUSHs(&PL_sv_undef);
1830     else {
1831         dTARGET;
1832         sv_sethek(TARG, stash_hek);
1833         PUSHTARG;
1834     }
1835     mPUSHs(newSVpv(OutCopFILE(cx->blk_oldcop), 0));
1836     lcop = closest_cop(cx->blk_oldcop, OpSIBLING(cx->blk_oldcop),
1837                        cx->blk_sub.retop, TRUE);
1838     if (!lcop)
1839         lcop = cx->blk_oldcop;
1840     mPUSHu(CopLINE(lcop));
1841     if (!has_arg)
1842         RETURN;
1843     if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1844         /* So is ccstack[dbcxix]. */
1845         if (CvHASGV(dbcx->blk_sub.cv)) {
1846             PUSHs(cv_name(dbcx->blk_sub.cv, 0, 0));
1847             PUSHs(boolSV(CxHASARGS(cx)));
1848         }
1849         else {
1850             PUSHs(newSVpvs_flags("(unknown)", SVs_TEMP));
1851             PUSHs(boolSV(CxHASARGS(cx)));
1852         }
1853     }
1854     else {
1855         PUSHs(newSVpvs_flags("(eval)", SVs_TEMP));
1856         mPUSHi(0);
1857     }
1858     gimme = (I32)cx->blk_gimme;
1859     if (gimme == G_VOID)
1860         PUSHs(&PL_sv_undef);
1861     else
1862         PUSHs(boolSV((gimme & G_WANT) == G_ARRAY));
1863     if (CxTYPE(cx) == CXt_EVAL) {
1864         /* eval STRING */
1865         if (CxOLD_OP_TYPE(cx) == OP_ENTEREVAL) {
1866             SV *cur_text = cx->blk_eval.cur_text;
1867             if (SvCUR(cur_text) >= 2) {
1868                 PUSHs(newSVpvn_flags(SvPVX(cur_text), SvCUR(cur_text)-2,
1869                                      SvUTF8(cur_text)|SVs_TEMP));
1870             }
1871             else {
1872                 /* I think this is will always be "", but be sure */
1873                 PUSHs(sv_2mortal(newSVsv(cur_text)));
1874             }
1875
1876             PUSHs(&PL_sv_no);
1877         }
1878         /* require */
1879         else if (cx->blk_eval.old_namesv) {
1880             mPUSHs(newSVsv(cx->blk_eval.old_namesv));
1881             PUSHs(&PL_sv_yes);
1882         }
1883         /* eval BLOCK (try blocks have old_namesv == 0) */
1884         else {
1885             PUSHs(&PL_sv_undef);
1886             PUSHs(&PL_sv_undef);
1887         }
1888     }
1889     else {
1890         PUSHs(&PL_sv_undef);
1891         PUSHs(&PL_sv_undef);
1892     }
1893     if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)
1894         && CopSTASH_eq(PL_curcop, PL_debstash))
1895     {
1896         /* slot 0 of the pad contains the original @_ */
1897         AV * const ary = MUTABLE_AV(AvARRAY(MUTABLE_AV(
1898                             PadlistARRAY(CvPADLIST(cx->blk_sub.cv))[
1899                                 cx->blk_sub.olddepth+1]))[0]);
1900         const SSize_t off = AvARRAY(ary) - AvALLOC(ary);
1901
1902         Perl_init_dbargs(aTHX);
1903
1904         if (AvMAX(PL_dbargs) < AvFILLp(ary) + off)
1905             av_extend(PL_dbargs, AvFILLp(ary) + off);
1906         Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*);
1907         AvFILLp(PL_dbargs) = AvFILLp(ary) + off;
1908     }
1909     mPUSHi(CopHINTS_get(cx->blk_oldcop));
1910     {
1911         SV * mask ;
1912         STRLEN * const old_warnings = cx->blk_oldcop->cop_warnings ;
1913
1914         if  (old_warnings == pWARN_NONE)
1915             mask = newSVpvn(WARN_NONEstring, WARNsize) ;
1916         else if (old_warnings == pWARN_STD && (PL_dowarn & G_WARN_ON) == 0)
1917             mask = &PL_sv_undef ;
1918         else if (old_warnings == pWARN_ALL ||
1919                   (old_warnings == pWARN_STD && PL_dowarn & G_WARN_ON)) {
1920             /* Get the bit mask for $warnings::Bits{all}, because
1921              * it could have been extended by warnings::register */
1922             SV **bits_all;
1923             HV * const bits = get_hv("warnings::Bits", 0);
1924             if (bits && (bits_all=hv_fetchs(bits, "all", FALSE))) {
1925                 mask = newSVsv(*bits_all);
1926             }
1927             else {
1928                 mask = newSVpvn(WARN_ALLstring, WARNsize) ;
1929             }
1930         }
1931         else
1932             mask = newSVpvn((char *) (old_warnings + 1), old_warnings[0]);
1933         mPUSHs(mask);
1934     }
1935
1936     PUSHs(cx->blk_oldcop->cop_hints_hash ?
1937           sv_2mortal(newRV_noinc(MUTABLE_SV(cop_hints_2hv(cx->blk_oldcop, 0))))
1938           : &PL_sv_undef);
1939     RETURN;
1940 }
1941
1942 PP(pp_reset)
1943 {
1944     dSP;
1945     const char * tmps;
1946     STRLEN len = 0;
1947     if (MAXARG < 1 || (!TOPs && !POPs))
1948         tmps = NULL, len = 0;
1949     else
1950         tmps = SvPVx_const(POPs, len);
1951     sv_resetpvn(tmps, len, CopSTASH(PL_curcop));
1952     PUSHs(&PL_sv_yes);
1953     RETURN;
1954 }
1955
1956 /* like pp_nextstate, but used instead when the debugger is active */
1957
1958 PP(pp_dbstate)
1959 {
1960     PL_curcop = (COP*)PL_op;
1961     TAINT_NOT;          /* Each statement is presumed innocent */
1962     PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
1963     FREETMPS;
1964
1965     PERL_ASYNC_CHECK();
1966
1967     if (PL_op->op_flags & OPf_SPECIAL /* breakpoint */
1968             || PL_DBsingle_iv || PL_DBsignal_iv || PL_DBtrace_iv)
1969     {
1970         dSP;
1971         PERL_CONTEXT *cx;
1972         const I32 gimme = G_ARRAY;
1973         GV * const gv = PL_DBgv;
1974         CV * cv = NULL;
1975
1976         if (gv && isGV_with_GP(gv))
1977             cv = GvCV(gv);
1978
1979         if (!cv || (!CvROOT(cv) && !CvXSUB(cv)))
1980             DIE(aTHX_ "No DB::DB routine defined");
1981
1982         if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG))
1983             /* don't do recursive DB::DB call */
1984             return NORMAL;
1985
1986         if (CvISXSUB(cv)) {
1987             ENTER;
1988             SAVEI32(PL_debug);
1989             PL_debug = 0;
1990             SAVESTACK_POS();
1991             SAVETMPS;
1992             PUSHMARK(SP);
1993             (void)(*CvXSUB(cv))(aTHX_ cv);
1994             FREETMPS;
1995             LEAVE;
1996             return NORMAL;
1997         }
1998         else {
1999             U8 hasargs = 0;
2000             PUSHBLOCK(cx, CXt_SUB, SP);
2001             PUSHSUB_DB(cx);
2002             cx->blk_sub.retop = PL_op->op_next;
2003             cx->cx_old_savestack_ix = PL_savestack_ix;
2004
2005             SAVEI32(PL_debug);
2006             PL_debug = 0;
2007             SAVESTACK_POS();
2008             CvDEPTH(cv)++;
2009             if (CvDEPTH(cv) >= 2) {
2010                 PERL_STACK_OVERFLOW_CHECK();
2011                 pad_push(CvPADLIST(cv), CvDEPTH(cv));
2012             }
2013             PAD_SET_CUR_NOSAVE(CvPADLIST(cv), CvDEPTH(cv));
2014             RETURNOP(CvSTART(cv));
2015         }
2016     }
2017     else
2018         return NORMAL;
2019 }
2020
2021 /* S_leave_common: Common code that many functions in this file use on
2022                    scope exit.
2023
2024    Process the return args on the stack in the range (mark+1..PL_stack_sp)
2025    based on context, with any final args starting at newsp+1.
2026    Args are mortal copied (or mortalied if lvalue) unless its safe to use
2027    as-is, based on whether it has the specified flags. Note that most
2028    callers specify flags as (SVs_PADTMP|SVs_TEMP), while leaveeval skips
2029    SVs_PADTMP since its optree gets immediately freed, freeing its padtmps
2030    at the same time.
2031
2032    Also, taintedness is cleared.
2033 */
2034
2035 STATIC void
2036 S_leave_common(pTHX_ SV **newsp, SV **mark, I32 gimme,
2037                               U32 flags, bool lvalue)
2038 {
2039     dSP;
2040     PERL_ARGS_ASSERT_LEAVE_COMMON;
2041
2042     TAINT_NOT;
2043     if (gimme == G_SCALAR) {
2044         if (MARK < SP)
2045             *++newsp = (SvFLAGS(*SP) & flags)
2046                             ? *SP
2047                             : lvalue
2048                                 ? sv_2mortal(SvREFCNT_inc_simple_NN(*SP))
2049                                 : sv_mortalcopy(*SP);
2050         else {
2051             EXTEND(newsp, 1);
2052             *++newsp = &PL_sv_undef;
2053         }
2054     }
2055     else if (gimme == G_ARRAY) {
2056         /* in case LEAVE wipes old return values */
2057         while (++MARK <= SP) {
2058             if (SvFLAGS(*MARK) & flags)
2059                 *++newsp = *MARK;
2060             else {
2061                 *++newsp = lvalue
2062                             ? sv_2mortal(SvREFCNT_inc_simple_NN(*MARK))
2063                             : sv_mortalcopy(*MARK);
2064                 TAINT_NOT;      /* Each item is independent */
2065             }
2066         }
2067         /* When this function was called with MARK == newsp, we reach this
2068          * point with SP == newsp. */
2069     }
2070
2071     PL_stack_sp = newsp;
2072 }
2073
2074
2075 PP(pp_enter)
2076 {
2077     dSP;
2078     PERL_CONTEXT *cx;
2079     I32 gimme = GIMME_V;
2080
2081     PUSHBLOCK(cx, CXt_BLOCK, SP);
2082     PUSHBASICBLK(cx);
2083
2084     RETURN;
2085 }
2086
2087 PP(pp_leave)
2088 {
2089     PERL_CONTEXT *cx;
2090     SV **newsp;
2091     I32 gimme;
2092
2093     cx = &cxstack[cxstack_ix];
2094     assert(CxTYPE(cx) == CXt_BLOCK);
2095
2096     if (PL_op->op_flags & OPf_SPECIAL)
2097         cx->blk_oldpm = PL_curpm; /* fake block should preserve $1 et al */
2098
2099     newsp = PL_stack_base + cx->blk_oldsp;
2100     gimme = cx->blk_gimme;
2101
2102     if (gimme == G_VOID)
2103         PL_stack_sp = newsp;
2104     else
2105         leave_common(newsp, newsp, gimme, SVs_PADTMP|SVs_TEMP,
2106                                PL_op->op_private & OPpLVALUE);
2107
2108     CX_LEAVE_SCOPE(cx);
2109     POPBASICBLK(cx);
2110     POPBLOCK(cx);
2111     CX_POP(cx);
2112
2113     return NORMAL;
2114 }
2115
2116 static bool
2117 S_outside_integer(pTHX_ SV *sv)
2118 {
2119   if (SvOK(sv)) {
2120     const NV nv = SvNV_nomg(sv);
2121     if (Perl_isinfnan(nv))
2122       return TRUE;
2123 #ifdef NV_PRESERVES_UV
2124     if (nv < (NV)IV_MIN || nv > (NV)IV_MAX)
2125       return TRUE;
2126 #else
2127     if (nv <= (NV)IV_MIN)
2128       return TRUE;
2129     if ((nv > 0) &&
2130         ((nv > (NV)UV_MAX ||
2131           SvUV_nomg(sv) > (UV)IV_MAX)))
2132       return TRUE;
2133 #endif
2134   }
2135   return FALSE;
2136 }
2137
2138 PP(pp_enteriter)
2139 {
2140     dSP; dMARK;
2141     PERL_CONTEXT *cx;
2142     const I32 gimme = GIMME_V;
2143     void *itervarp; /* GV or pad slot of the iteration variable */
2144     SV   *itersave; /* the old var in the iterator var slot */
2145     U8 cxtype = CXt_LOOP_FOR;
2146
2147     if (PL_op->op_targ) {                        /* "my" variable */
2148         itervarp = &PAD_SVl(PL_op->op_targ);
2149         itersave = *(SV**)itervarp;
2150         assert(itersave);
2151         if (PL_op->op_private & OPpLVAL_INTRO) {        /* for my $x (...) */
2152             /* the SV currently in the pad slot is never live during
2153              * iteration (the slot is always aliased to one of the items)
2154              * so it's always stale */
2155             SvPADSTALE_on(itersave);
2156         }
2157         SvREFCNT_inc_simple_void_NN(itersave);
2158         cxtype |= CXp_FOR_PAD;
2159     }
2160     else {
2161         SV * const sv = POPs;
2162         itervarp = (void *)sv;
2163         if (LIKELY(isGV(sv))) {         /* symbol table variable */
2164             SV** svp = &GvSV(sv);
2165             itersave = *svp;
2166             if (LIKELY(itersave))
2167                 SvREFCNT_inc_simple_void_NN(itersave);
2168             else
2169                 *svp = newSV(0);
2170             cxtype |= CXp_FOR_GV;
2171         }
2172         else {                          /* LV ref: for \$foo (...) */
2173             assert(SvTYPE(sv) == SVt_PVMG);
2174             assert(SvMAGIC(sv));
2175             assert(SvMAGIC(sv)->mg_type == PERL_MAGIC_lvref);
2176             itersave = NULL;
2177             cxtype |= CXp_FOR_LVREF;
2178         }
2179     }
2180
2181     if (PL_op->op_private & OPpITER_DEF)
2182         cxtype |= CXp_FOR_DEF;
2183
2184     PUSHBLOCK(cx, cxtype, SP);
2185     PUSHLOOP_FOR(cx, itervarp, itersave, MARK);
2186     if (PL_op->op_flags & OPf_STACKED) {
2187         SV *maybe_ary = POPs;
2188         if (SvTYPE(maybe_ary) != SVt_PVAV) {
2189             dPOPss;
2190             SV * const right = maybe_ary;
2191             if (UNLIKELY(cxtype & CXp_FOR_LVREF))
2192                 DIE(aTHX_ "Assigned value is not a reference");
2193             SvGETMAGIC(sv);
2194             SvGETMAGIC(right);
2195             if (RANGE_IS_NUMERIC(sv,right)) {
2196                 cx->cx_type &= ~CXTYPEMASK;
2197                 cx->cx_type |= CXt_LOOP_LAZYIV;
2198                 /* Make sure that no-one re-orders cop.h and breaks our
2199                    assumptions */
2200                 assert(CxTYPE(cx) == CXt_LOOP_LAZYIV);
2201                 if (S_outside_integer(aTHX_ sv) ||
2202                     S_outside_integer(aTHX_ right))
2203                     DIE(aTHX_ "Range iterator outside integer range");
2204                 cx->blk_loop.state_u.lazyiv.cur = SvIV_nomg(sv);
2205                 cx->blk_loop.state_u.lazyiv.end = SvIV_nomg(right);
2206 #ifdef DEBUGGING
2207                 /* for correct -Dstv display */
2208                 cx->blk_oldsp = sp - PL_stack_base;
2209 #endif
2210             }
2211             else {
2212                 cx->cx_type &= ~CXTYPEMASK;
2213                 cx->cx_type |= CXt_LOOP_LAZYSV;
2214                 /* Make sure that no-one re-orders cop.h and breaks our
2215                    assumptions */
2216                 assert(CxTYPE(cx) == CXt_LOOP_LAZYSV);
2217                 cx->blk_loop.state_u.lazysv.cur = newSVsv(sv);
2218                 cx->blk_loop.state_u.lazysv.end = right;
2219                 SvREFCNT_inc(right);
2220                 (void) SvPV_force_nolen(cx->blk_loop.state_u.lazysv.cur);
2221                 /* This will do the upgrade to SVt_PV, and warn if the value
2222                    is uninitialised.  */
2223                 (void) SvPV_nolen_const(right);
2224                 /* Doing this avoids a check every time in pp_iter in pp_hot.c
2225                    to replace !SvOK() with a pointer to "".  */
2226                 if (!SvOK(right)) {
2227                     SvREFCNT_dec(right);
2228                     cx->blk_loop.state_u.lazysv.end = &PL_sv_no;
2229                 }
2230             }
2231         }
2232         else /* SvTYPE(maybe_ary) == SVt_PVAV */ {
2233             cx->blk_loop.state_u.ary.ary = MUTABLE_AV(maybe_ary);
2234             SvREFCNT_inc(maybe_ary);
2235             cx->blk_loop.state_u.ary.ix =
2236                 (PL_op->op_private & OPpITER_REVERSED) ?
2237                 AvFILL(cx->blk_loop.state_u.ary.ary) + 1 :
2238                 -1;
2239         }
2240     }
2241     else { /* iterating over items on the stack */
2242         cx->blk_loop.state_u.ary.ary = NULL; /* means to use the stack */
2243         if (PL_op->op_private & OPpITER_REVERSED) {
2244             cx->blk_loop.state_u.ary.ix = cx->blk_oldsp + 1;
2245         }
2246         else {
2247             cx->blk_loop.state_u.ary.ix = MARK - PL_stack_base;
2248         }
2249     }
2250
2251     RETURN;
2252 }
2253
2254 PP(pp_enterloop)
2255 {
2256     dSP;
2257     PERL_CONTEXT *cx;
2258     const I32 gimme = GIMME_V;
2259
2260     PUSHBLOCK(cx, CXt_LOOP_PLAIN, SP);
2261     PUSHLOOP_PLAIN(cx, SP);
2262
2263     RETURN;
2264 }
2265
2266 PP(pp_leaveloop)
2267 {
2268     PERL_CONTEXT *cx;
2269     I32 gimme;
2270     SV **newsp;
2271     SV **mark;
2272
2273     cx = &cxstack[cxstack_ix];
2274     assert(CxTYPE_is_LOOP(cx));
2275     mark = PL_stack_base + cx->blk_oldsp;
2276     newsp = PL_stack_base + cx->blk_loop.resetsp;
2277     gimme = cx->blk_gimme;
2278
2279     if (gimme == G_VOID)
2280         PL_stack_sp = newsp;
2281     else
2282         leave_common(newsp, MARK, gimme, SVs_PADTMP|SVs_TEMP,
2283                                PL_op->op_private & OPpLVALUE);
2284
2285     CX_LEAVE_SCOPE(cx);
2286     POPLOOP(cx);        /* Stack values are safe: release loop vars ... */
2287     POPBLOCK(cx);
2288     CX_POP(cx);
2289
2290     return NORMAL;
2291 }
2292
2293
2294 /* This duplicates most of pp_leavesub, but with additional code to handle
2295  * return args in lvalue context. It was forked from pp_leavesub to
2296  * avoid slowing down that function any further.
2297  *
2298  * Any changes made to this function may need to be copied to pp_leavesub
2299  * and vice-versa.
2300  */
2301
2302 PP(pp_leavesublv)
2303 {
2304     dSP;
2305     SV **newsp;
2306     SV **mark;
2307     I32 gimme;
2308     PERL_CONTEXT *cx;
2309     bool ref;
2310     const char *what = NULL;
2311     OP *retop;
2312
2313     cx = &cxstack[cxstack_ix];
2314     assert(CxTYPE(cx) == CXt_SUB);
2315
2316     if (CxMULTICALL(cx)) {
2317         /* entry zero of a stack is always PL_sv_undef, which
2318          * simplifies converting a '()' return into undef in scalar context */
2319         assert(PL_stack_sp > PL_stack_base || *PL_stack_base == &PL_sv_undef);
2320         return 0;
2321     }
2322
2323     newsp = PL_stack_base + cx->blk_oldsp;
2324     gimme = cx->blk_gimme;
2325     TAINT_NOT;
2326
2327     mark = newsp + 1;
2328
2329     ref = !!(CxLVAL(cx) & OPpENTERSUB_INARGS);
2330     if (gimme == G_SCALAR) {
2331         if (CxLVAL(cx) && !ref) {     /* Leave it as it is if we can. */
2332             if (MARK <= SP) {
2333                 if ((SvPADTMP(TOPs) || SvREADONLY(TOPs)) &&
2334                     !SvSMAGICAL(TOPs)) {
2335                     what =
2336                         SvREADONLY(TOPs) ? (TOPs == &PL_sv_undef) ? "undef"
2337                         : "a readonly value" : "a temporary";
2338                 }
2339                 else goto copy_sv;
2340             }
2341             else {
2342                 /* sub:lvalue{} will take us here. */
2343                 what = "undef";
2344             }
2345           croak:
2346             Perl_croak(aTHX_
2347                       "Can't return %s from lvalue subroutine", what
2348             );
2349         }
2350         if (MARK <= SP) {
2351               copy_sv:
2352                 if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) {
2353                     if (!SvPADTMP(*SP)) {
2354                         *MARK = SvREFCNT_inc(*SP);
2355                         FREETMPS;
2356                         sv_2mortal(*MARK);
2357                     }
2358                     else {
2359                         /* FREETMPS could clobber it */
2360                         SV *sv = SvREFCNT_inc(*SP);
2361                         FREETMPS;
2362                         *MARK = sv_mortalcopy(sv);
2363                         SvREFCNT_dec(sv);
2364                     }
2365                 }
2366                 else
2367                     *MARK =
2368                       SvPADTMP(*SP)
2369                        ? sv_mortalcopy(*SP)
2370                        : !SvTEMP(*SP)
2371                           ? sv_2mortal(SvREFCNT_inc_simple_NN(*SP))
2372                           : *SP;
2373         }
2374         else {
2375             MEXTEND(MARK, 0);
2376             *MARK = &PL_sv_undef;
2377         }
2378         SP = MARK;
2379
2380         if (CxLVAL(cx) & OPpDEREF) {
2381             SvGETMAGIC(TOPs);
2382             if (!SvOK(TOPs)) {
2383                 TOPs = vivify_ref(TOPs, CxLVAL(cx) & OPpDEREF);
2384             }
2385         }
2386     }
2387     else if (gimme == G_ARRAY) {
2388         assert (!(CxLVAL(cx) & OPpDEREF));
2389         if (ref || !CxLVAL(cx))
2390             for (; MARK <= SP; MARK++)
2391                 *MARK =
2392                        SvFLAGS(*MARK) & SVs_PADTMP
2393                            ? sv_mortalcopy(*MARK)
2394                      : SvTEMP(*MARK)
2395                            ? *MARK
2396                            : sv_2mortal(SvREFCNT_inc_simple_NN(*MARK));
2397         else for (; MARK <= SP; MARK++) {
2398             if (*MARK != &PL_sv_undef
2399                     && (SvPADTMP(*MARK) || SvREADONLY(*MARK))
2400             ) {
2401                     /* Might be flattened array after $#array =  */
2402                     what = SvREADONLY(*MARK)
2403                             ? "a readonly value" : "a temporary";
2404                     goto croak;
2405             }
2406             else if (!SvTEMP(*MARK))
2407                 *MARK = sv_2mortal(SvREFCNT_inc_simple_NN(*MARK));
2408         }
2409     }
2410     PUTBACK;
2411
2412     CX_LEAVE_SCOPE(cx);
2413     POPSUB(cx); /* Stack values are safe: release CV and @_ ... */
2414     POPBLOCK(cx);
2415     retop =  cx->blk_sub.retop;
2416     CX_POP(cx);
2417
2418     return retop;
2419 }
2420
2421
2422 PP(pp_return)
2423 {
2424     dSP; dMARK;
2425     PERL_CONTEXT *cx;
2426     const I32 cxix = dopoptosub(cxstack_ix);
2427
2428     assert(cxstack_ix >= 0);
2429     if (cxix < cxstack_ix) {
2430         if (cxix < 0) {
2431             if (!(       PL_curstackinfo->si_type == PERLSI_SORT
2432                   || (   PL_curstackinfo->si_type == PERLSI_MULTICALL
2433                       && (cxstack[0].cx_type & CXp_SUB_RE_FAKE))
2434                  )
2435             )
2436                 DIE(aTHX_ "Can't return outside a subroutine");
2437             /* We must be in:
2438              *  a sort block, which is a CXt_NULL not a CXt_SUB;
2439              *  or a /(?{...})/ block.
2440              * Handle specially. */
2441             assert(CxTYPE(&cxstack[0]) == CXt_NULL
2442                     || (   CxTYPE(&cxstack[0]) == CXt_SUB
2443                         && (cxstack[0].cx_type & CXp_SUB_RE_FAKE)));
2444             if (cxstack_ix > 0) {
2445                 /* See comment below about context popping. Since we know
2446                  * we're scalar and not lvalue, we can preserve the return
2447                  * value in a simpler fashion than there. */
2448                 SV *sv = *SP;
2449                 assert(cxstack[0].blk_gimme == G_SCALAR);
2450                 if (   (sp != PL_stack_base)
2451                     && !(SvFLAGS(sv) & (SVs_TEMP|SVs_PADTMP))
2452                 )
2453                     *SP = sv_mortalcopy(sv);
2454                 dounwind(0);
2455             }
2456             /* caller responsible for popping cxstack[0] */
2457             return 0;
2458         }
2459
2460         /* There are contexts that need popping. Doing this may free the
2461          * return value(s), so preserve them first, e.g. popping the plain
2462          * loop here would free $x:
2463          *     sub f {  { my $x = 1; return $x } }
2464          * We may also need to shift the args down; for example,
2465          *    for (1,2) { return 3,4 }
2466          * leaves 1,2,3,4 on the stack. Both these actions can be done by
2467          * leave_common().  By calling it with lvalue=TRUE, we just bump
2468          * the ref count and mortalise the args that need it.  The "scan
2469          * the args and maybe copy them" process will be repeated by
2470          * whoever we tail-call (e.g. pp_leaveeval), where any copying etc
2471          * will be done. That is to say, in this code path two scans of
2472          * the args will be done; the first just shifts and preserves; the
2473          * second is the "real" arg processing, based on the type of
2474          * return.
2475          */
2476         cx = &cxstack[cxix];
2477         PUTBACK;
2478         leave_common(PL_stack_base + cx->blk_oldsp, MARK,
2479                             cx->blk_gimme, SVs_TEMP|SVs_PADTMP, TRUE);
2480         SPAGAIN;
2481         dounwind(cxix);
2482         cx = &cxstack[cxix]; /* CX stack may have been realloced */
2483     }
2484     else {
2485         /* Like in the branch above, we need to handle any extra junk on
2486          * the stack. But because we're not also popping extra contexts, we
2487          * don't have to worry about prematurely freeing args. So we just
2488          * need to do the bare minimum to handle junk, and leave the main
2489          * arg processing in the function we tail call, e.g. pp_leavesub.
2490          * In list context we have to splice out the junk; in scalar
2491          * context we can leave as-is (pp_leavesub will later return the
2492          * top stack element). But for an  empty arg list, e.g.
2493          *    for (1,2) { return }
2494          * we need to set sp = oldsp so that pp_leavesub knows to push
2495          * &PL_sv_undef onto the stack.
2496          */
2497         SV **oldsp;
2498         cx = &cxstack[cxix];
2499         oldsp = PL_stack_base + cx->blk_oldsp;
2500         if (oldsp != MARK) {
2501             SSize_t nargs = SP - MARK;
2502             if (nargs) {
2503                 if (cx->blk_gimme == G_ARRAY) {
2504                     /* shift return args to base of call stack frame */
2505                     Move(MARK + 1, oldsp + 1, nargs, SV*);
2506                     PL_stack_sp  = oldsp + nargs;
2507                 }
2508             }
2509             else
2510                 PL_stack_sp  = oldsp;
2511         }
2512     }
2513
2514     /* fall through to a normal exit */
2515     switch (CxTYPE(cx)) {
2516     case CXt_EVAL:
2517         return CxTRYBLOCK(cx)
2518             ? Perl_pp_leavetry(aTHX)
2519             : Perl_pp_leaveeval(aTHX);
2520     case CXt_SUB:
2521         return CvLVALUE(cx->blk_sub.cv)
2522             ? Perl_pp_leavesublv(aTHX)
2523             : Perl_pp_leavesub(aTHX);
2524     case CXt_FORMAT:
2525         return Perl_pp_leavewrite(aTHX);
2526     default:
2527         DIE(aTHX_ "panic: return, type=%u", (unsigned) CxTYPE(cx));
2528     }
2529 }
2530
2531
2532 static I32
2533 S_unwind_loop(pTHX_ const char * const opname)
2534 {
2535     I32 cxix;
2536     if (PL_op->op_flags & OPf_SPECIAL) {
2537         cxix = dopoptoloop(cxstack_ix);
2538         if (cxix < 0)
2539             /* diag_listed_as: Can't "last" outside a loop block */
2540             Perl_croak(aTHX_ "Can't \"%s\" outside a loop block", opname);
2541     }
2542     else {
2543         dSP;
2544         STRLEN label_len;
2545         const char * const label =
2546             PL_op->op_flags & OPf_STACKED
2547                 ? SvPV(TOPs,label_len)
2548                 : (label_len = strlen(cPVOP->op_pv), cPVOP->op_pv);
2549         const U32 label_flags =
2550             PL_op->op_flags & OPf_STACKED
2551                 ? SvUTF8(POPs)
2552                 : (cPVOP->op_private & OPpPV_IS_UTF8) ? SVf_UTF8 : 0;
2553         PUTBACK;
2554         cxix = dopoptolabel(label, label_len, label_flags);
2555         if (cxix < 0)
2556             /* diag_listed_as: Label not found for "last %s" */
2557             Perl_croak(aTHX_ "Label not found for \"%s %"SVf"\"",
2558                                        opname,
2559                                        SVfARG(PL_op->op_flags & OPf_STACKED
2560                                               && !SvGMAGICAL(TOPp1s)
2561                                               ? TOPp1s
2562                                               : newSVpvn_flags(label,
2563                                                     label_len,
2564                                                     label_flags | SVs_TEMP)));
2565     }
2566     if (cxix < cxstack_ix)
2567         dounwind(cxix);
2568     return cxix;
2569 }
2570
2571 PP(pp_last)
2572 {
2573     PERL_CONTEXT *cx;
2574     OP* nextop;
2575
2576     S_unwind_loop(aTHX_ "last");
2577
2578     cx = &cxstack[cxstack_ix];
2579
2580     assert(
2581            CxTYPE(cx) == CXt_LOOP_LAZYIV
2582         || CxTYPE(cx) == CXt_LOOP_LAZYSV
2583         || CxTYPE(cx) == CXt_LOOP_FOR
2584         || CxTYPE(cx) == CXt_LOOP_PLAIN
2585     );
2586     PL_stack_sp = PL_stack_base + cx->blk_loop.resetsp;
2587
2588     TAINT_NOT;
2589
2590     /* Stack values are safe: */
2591     CX_LEAVE_SCOPE(cx);
2592     POPLOOP(cx);        /* release loop vars ... */
2593     POPBLOCK(cx);
2594     nextop = cx->blk_loop.my_op->op_lastop->op_next;
2595     CX_POP(cx);
2596
2597     return nextop;
2598 }
2599
2600 PP(pp_next)
2601 {
2602     PERL_CONTEXT *cx;
2603
2604     S_unwind_loop(aTHX_ "next");
2605
2606     TOPBLOCK(cx);
2607     PL_curcop = cx->blk_oldcop;
2608     PERL_ASYNC_CHECK();
2609     return (cx)->blk_loop.my_op->op_nextop;
2610 }
2611
2612 PP(pp_redo)
2613 {
2614     const I32 cxix = S_unwind_loop(aTHX_ "redo");
2615     PERL_CONTEXT *cx;
2616     OP* redo_op = cxstack[cxix].blk_loop.my_op->op_redoop;
2617
2618     if (redo_op->op_type == OP_ENTER) {
2619         /* pop one less context to avoid $x being freed in while (my $x..) */
2620         cxstack_ix++;
2621         assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_BLOCK);
2622         redo_op = redo_op->op_next;
2623     }
2624
2625     TOPBLOCK(cx);
2626     CX_LEAVE_SCOPE(cx);
2627     FREETMPS;
2628     PL_curcop = cx->blk_oldcop;
2629     PERL_ASYNC_CHECK();
2630     return redo_op;
2631 }
2632
2633 STATIC OP *
2634 S_dofindlabel(pTHX_ OP *o, const char *label, STRLEN len, U32 flags, OP **opstack, OP **oplimit)
2635 {
2636     OP **ops = opstack;
2637     static const char* const too_deep = "Target of goto is too deeply nested";
2638
2639     PERL_ARGS_ASSERT_DOFINDLABEL;
2640
2641     if (ops >= oplimit)
2642         Perl_croak(aTHX_ "%s", too_deep);
2643     if (o->op_type == OP_LEAVE ||
2644         o->op_type == OP_SCOPE ||
2645         o->op_type == OP_LEAVELOOP ||
2646         o->op_type == OP_LEAVESUB ||
2647         o->op_type == OP_LEAVETRY)
2648     {
2649         *ops++ = cUNOPo->op_first;
2650         if (ops >= oplimit)
2651             Perl_croak(aTHX_ "%s", too_deep);
2652     }
2653     *ops = 0;
2654     if (o->op_flags & OPf_KIDS) {
2655         OP *kid;
2656         /* First try all the kids at this level, since that's likeliest. */
2657         for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
2658             if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2659                 STRLEN kid_label_len;
2660                 U32 kid_label_flags;
2661                 const char *kid_label = CopLABEL_len_flags(kCOP,
2662                                                     &kid_label_len, &kid_label_flags);
2663                 if (kid_label && (
2664                     ( (kid_label_flags & SVf_UTF8) != (flags & SVf_UTF8) ) ?
2665                         (flags & SVf_UTF8)
2666                             ? (bytes_cmp_utf8(
2667                                         (const U8*)kid_label, kid_label_len,
2668                                         (const U8*)label, len) == 0)
2669                             : (bytes_cmp_utf8(
2670                                         (const U8*)label, len,
2671                                         (const U8*)kid_label, kid_label_len) == 0)
2672                     : ( len == kid_label_len && ((kid_label == label)
2673                                     || memEQ(kid_label, label, len)))))
2674                     return kid;
2675             }
2676         }
2677         for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) {
2678             if (kid == PL_lastgotoprobe)
2679                 continue;
2680             if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2681                 if (ops == opstack)
2682                     *ops++ = kid;
2683                 else if (ops[-1]->op_type == OP_NEXTSTATE ||
2684                          ops[-1]->op_type == OP_DBSTATE)
2685                     ops[-1] = kid;
2686                 else
2687                     *ops++ = kid;
2688             }
2689             if ((o = dofindlabel(kid, label, len, flags, ops, oplimit)))
2690                 return o;
2691         }
2692     }
2693     *ops = 0;
2694     return 0;
2695 }
2696
2697
2698 /* also used for: pp_dump() */
2699
2700 PP(pp_goto)
2701 {
2702     dVAR; dSP;
2703     OP *retop = NULL;
2704     I32 ix;
2705     PERL_CONTEXT *cx;
2706 #define GOTO_DEPTH 64
2707     OP *enterops[GOTO_DEPTH];
2708     const char *label = NULL;
2709     STRLEN label_len = 0;
2710     U32 label_flags = 0;
2711     const bool do_dump = (PL_op->op_type == OP_DUMP);
2712     static const char* const must_have_label = "goto must have label";
2713
2714     if (PL_op->op_flags & OPf_STACKED) {
2715         /* goto EXPR  or  goto &foo */
2716
2717         SV * const sv = POPs;
2718         SvGETMAGIC(sv);
2719
2720         if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
2721             /* This egregious kludge implements goto &subroutine */
2722             I32 cxix;
2723             PERL_CONTEXT *cx;
2724             CV *cv = MUTABLE_CV(SvRV(sv));
2725             AV *arg = GvAV(PL_defgv);
2726
2727             while (!CvROOT(cv) && !CvXSUB(cv)) {
2728                 const GV * const gv = CvGV(cv);
2729                 if (gv) {
2730                     GV *autogv;
2731                     SV *tmpstr;
2732                     /* autoloaded stub? */
2733                     if (cv != GvCV(gv) && (cv = GvCV(gv)))
2734                         continue;
2735                     autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv),
2736                                           GvNAMELEN(gv),
2737                                           GvNAMEUTF8(gv) ? SVf_UTF8 : 0);
2738                     if (autogv && (cv = GvCV(autogv)))
2739                         continue;
2740                     tmpstr = sv_newmortal();
2741                     gv_efullname3(tmpstr, gv, NULL);
2742                     DIE(aTHX_ "Goto undefined subroutine &%"SVf"", SVfARG(tmpstr));
2743                 }
2744                 DIE(aTHX_ "Goto undefined subroutine");
2745             }
2746
2747             cxix = dopoptosub(cxstack_ix);
2748             if (cxix < 0) {
2749                 DIE(aTHX_ "Can't goto subroutine outside a subroutine");
2750             }
2751             cx  = &cxstack[cxix];
2752             /* ban goto in eval: see <20050521150056.GC20213@iabyn.com> */
2753             if (CxTYPE(cx) == CXt_EVAL) {
2754                 if (CxREALEVAL(cx))
2755                 /* diag_listed_as: Can't goto subroutine from an eval-%s */
2756                     DIE(aTHX_ "Can't goto subroutine from an eval-string");
2757                 else
2758                 /* diag_listed_as: Can't goto subroutine from an eval-%s */
2759                     DIE(aTHX_ "Can't goto subroutine from an eval-block");
2760             }
2761             else if (CxMULTICALL(cx))
2762                 DIE(aTHX_ "Can't goto subroutine from a sort sub (or similar callback)");
2763
2764             /* First do some returnish stuff. */
2765
2766             SvREFCNT_inc_simple_void(cv); /* avoid premature free during unwind */
2767             FREETMPS;
2768             if (cxix < cxstack_ix) {
2769                 dounwind(cxix);
2770             }
2771             TOPBLOCK(cx);
2772             SPAGAIN;
2773
2774             /* protect @_ during save stack unwind. */
2775             if (arg)
2776                 SvREFCNT_inc_NN(sv_2mortal(MUTABLE_SV(arg)));
2777
2778             assert(PL_scopestack_ix == cx->blk_oldscopesp);
2779             CX_LEAVE_SCOPE(cx);
2780
2781             if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) {
2782                 /* this is POPSUB_ARGS() with minor variations */
2783                 AV* av = MUTABLE_AV(PAD_SVl(0));
2784                 assert(AvARRAY(MUTABLE_AV(
2785                     PadlistARRAY(CvPADLIST(cx->blk_sub.cv))[
2786                             CvDEPTH(cx->blk_sub.cv)])) == PL_curpad);
2787
2788                 /* we are going to donate the current @_ from the old sub
2789                  * to the new sub. This first part of the donation puts a
2790                  * new empty AV in the pad[0] slot of the old sub,
2791                  * unless pad[0] and @_ differ (e.g. if the old sub did
2792                  * local *_ = []); in which case clear the old pad[0]
2793                  * array in the usual way */
2794                 if (av == arg || AvREAL(av))
2795                     clear_defarray(av, av == arg);
2796                 else CLEAR_ARGARRAY(av);
2797             }
2798
2799             /* don't restore PL_comppad here. It won't be needed if the
2800              * sub we're going to is non-XS, but restoring it early then
2801              * croaking (e.g. the "Goto undefined subroutine" below)
2802              * means the CX block gets processed again in dounwind,
2803              * but this time with the wrong PL_comppad */
2804
2805             /* A destructor called during LEAVE_SCOPE could have undefined
2806              * our precious cv.  See bug #99850. */
2807             if (!CvROOT(cv) && !CvXSUB(cv)) {
2808                 const GV * const gv = CvGV(cv);
2809                 if (gv) {
2810                     SV * const tmpstr = sv_newmortal();
2811                     gv_efullname3(tmpstr, gv, NULL);
2812                     DIE(aTHX_ "Goto undefined subroutine &%"SVf"",
2813                                SVfARG(tmpstr));
2814                 }
2815                 DIE(aTHX_ "Goto undefined subroutine");
2816             }
2817
2818             if (CxTYPE(cx) == CXt_SUB) {
2819                 CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth;
2820                 SvREFCNT_dec_NN(cx->blk_sub.cv);
2821             }
2822
2823             /* Now do some callish stuff. */
2824             if (CvISXSUB(cv)) {
2825                 const SSize_t items = arg ? AvFILL(arg) + 1 : 0;
2826                 const bool m = arg ? cBOOL(SvRMAGICAL(arg)) : 0;
2827                 SV** mark;
2828
2829                 ENTER;
2830                 SAVETMPS;
2831                 SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
2832
2833                 /* put GvAV(defgv) back onto stack */
2834                 if (items) {
2835                     EXTEND(SP, items+1); /* @_ could have been extended. */
2836                 }
2837                 mark = SP;
2838                 if (items) {
2839                     SSize_t index;
2840                     bool r = cBOOL(AvREAL(arg));
2841                     for (index=0; index<items; index++)
2842                     {
2843                         SV *sv;
2844                         if (m) {
2845                             SV ** const svp = av_fetch(arg, index, 0);
2846                             sv = svp ? *svp : NULL;
2847                         }
2848                         else sv = AvARRAY(arg)[index];
2849                         SP[index+1] = sv
2850                             ? r ? SvREFCNT_inc_NN(sv_2mortal(sv)) : sv
2851                             : sv_2mortal(newSVavdefelem(arg, index, 1));
2852                     }
2853                 }
2854                 SP += items;
2855                 if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) {
2856                     /* Restore old @_ */
2857                     POP_SAVEARRAY();
2858                 }
2859
2860                 retop = cx->blk_sub.retop;
2861                 PL_comppad = cx->blk_sub.prevcomppad;
2862                 PL_curpad = LIKELY(PL_comppad) ? AvARRAY(PL_comppad) : NULL;
2863
2864                 /* XS subs don't have a CXt_SUB, so pop it;
2865                  * this is a POPBLOCK(), less all the stuff we already did
2866                  * for TOPBLOCK() earlier */
2867                 PL_curcop = cx->blk_oldcop;
2868                 CX_POP(cx);
2869
2870                 /* Push a mark for the start of arglist */
2871                 PUSHMARK(mark);
2872                 PUTBACK;
2873                 (void)(*CvXSUB(cv))(aTHX_ cv);
2874                 LEAVE;
2875                 goto _return;
2876             }
2877             else {
2878                 PADLIST * const padlist = CvPADLIST(cv);
2879
2880                 SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
2881
2882                 /* partial unrolled PUSHSUB(): */
2883
2884                 cx->blk_sub.cv = cv;
2885                 cx->blk_sub.olddepth = CvDEPTH(cv);
2886
2887                 CvDEPTH(cv)++;
2888                 SvREFCNT_inc_simple_void_NN(cv);
2889                 if (CvDEPTH(cv) > 1) {
2890                     if (CvDEPTH(cv) == PERL_SUB_DEPTH_WARN && ckWARN(WARN_RECURSION))
2891                         sub_crush_depth(cv);
2892                     pad_push(padlist, CvDEPTH(cv));
2893                 }
2894                 PL_curcop = cx->blk_oldcop;
2895                 PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv));
2896                 if (CxHASARGS(cx))
2897                 {
2898                     /* second half of donating @_ from the old sub to the
2899                      * new sub: abandon the original pad[0] AV in the
2900                      * new sub, and replace it with the donated @_.
2901                      * pad[0] takes ownership of the extra refcount
2902                      * we gave arg earlier */
2903                     if (arg) {
2904                         SvREFCNT_dec(PAD_SVl(0));
2905                         PAD_SVl(0) = (SV *)arg;
2906                         SvREFCNT_inc_simple_void_NN(arg);
2907                     }
2908
2909                     /* GvAV(PL_defgv) might have been modified on scope
2910                        exit, so point it at arg again. */
2911                     if (arg != GvAV(PL_defgv)) {
2912                         AV * const av = GvAV(PL_defgv);
2913                         GvAV(PL_defgv) = (AV *)SvREFCNT_inc_simple(arg);
2914                         SvREFCNT_dec(av);
2915                     }
2916                 }
2917
2918                 if (PERLDB_SUB) {       /* Checking curstash breaks DProf. */
2919                     Perl_get_db_sub(aTHX_ NULL, cv);
2920                     if (PERLDB_GOTO) {
2921                         CV * const gotocv = get_cvs("DB::goto", 0);
2922                         if (gotocv) {
2923                             PUSHMARK( PL_stack_sp );
2924                             call_sv(MUTABLE_SV(gotocv), G_SCALAR | G_NODEBUG);
2925                             PL_stack_sp--;
2926                         }
2927                     }
2928                 }
2929                 retop = CvSTART(cv);
2930                 goto putback_return;
2931             }
2932         }
2933         else {
2934             /* goto EXPR */
2935             label       = SvPV_nomg_const(sv, label_len);
2936             label_flags = SvUTF8(sv);
2937         }
2938     }
2939     else if (!(PL_op->op_flags & OPf_SPECIAL)) {
2940         /* goto LABEL  or  dump LABEL */
2941         label       = cPVOP->op_pv;
2942         label_flags = (cPVOP->op_private & OPpPV_IS_UTF8) ? SVf_UTF8 : 0;
2943         label_len   = strlen(label);
2944     }
2945     if (!(do_dump || label_len)) DIE(aTHX_ "%s", must_have_label);
2946
2947     PERL_ASYNC_CHECK();
2948
2949     if (label_len) {
2950         OP *gotoprobe = NULL;
2951         bool leaving_eval = FALSE;
2952         bool in_block = FALSE;
2953         PERL_CONTEXT *last_eval_cx = NULL;
2954
2955         /* find label */
2956
2957         PL_lastgotoprobe = NULL;
2958         *enterops = 0;
2959         for (ix = cxstack_ix; ix >= 0; ix--) {
2960             cx = &cxstack[ix];
2961             switch (CxTYPE(cx)) {
2962             case CXt_EVAL:
2963                 leaving_eval = TRUE;
2964                 if (!CxTRYBLOCK(cx)) {
2965                     gotoprobe = (last_eval_cx ?
2966                                 last_eval_cx->blk_eval.old_eval_root :
2967                                 PL_eval_root);
2968                     last_eval_cx = cx;
2969                     break;
2970                 }
2971                 /* else fall through */
2972             case CXt_LOOP_LAZYIV:
2973             case CXt_LOOP_LAZYSV:
2974             case CXt_LOOP_FOR:
2975             case CXt_LOOP_PLAIN:
2976             case CXt_GIVEN:
2977             case CXt_WHEN:
2978                 gotoprobe = OpSIBLING(cx->blk_oldcop);
2979                 break;
2980             case CXt_SUBST:
2981                 continue;
2982             case CXt_BLOCK:
2983                 if (ix) {
2984                     gotoprobe = OpSIBLING(cx->blk_oldcop);
2985                     in_block = TRUE;
2986                 } else
2987                     gotoprobe = PL_main_root;
2988                 break;
2989             case CXt_SUB:
2990                 if (CvDEPTH(cx->blk_sub.cv) && !CxMULTICALL(cx)) {
2991                     gotoprobe = CvROOT(cx->blk_sub.cv);
2992                     break;
2993                 }
2994                 /* FALLTHROUGH */
2995             case CXt_FORMAT:
2996             case CXt_NULL:
2997                 DIE(aTHX_ "Can't \"goto\" out of a pseudo block");
2998             default:
2999                 if (ix)
3000                     DIE(aTHX_ "panic: goto, type=%u, ix=%ld",
3001                         CxTYPE(cx), (long) ix);
3002                 gotoprobe = PL_main_root;
3003                 break;
3004             }
3005             if (gotoprobe) {
3006                 OP *sibl1, *sibl2;
3007
3008                 retop = dofindlabel(gotoprobe, label, label_len, label_flags,
3009                                     enterops, enterops + GOTO_DEPTH);
3010                 if (retop)
3011                     break;
3012                 if ( (sibl1 = OpSIBLING(gotoprobe)) &&
3013                      sibl1->op_type == OP_UNSTACK &&
3014                      (sibl2 = OpSIBLING(sibl1)))
3015                 {
3016                     retop = dofindlabel(sibl2,
3017                                         label, label_len, label_flags, enterops,
3018                                         enterops + GOTO_DEPTH);
3019                     if (retop)
3020                         break;
3021                 }
3022             }
3023             PL_lastgotoprobe = gotoprobe;
3024         }
3025         if (!retop)
3026             DIE(aTHX_ "Can't find label %"UTF8f, 
3027                        UTF8fARG(label_flags, label_len, label));
3028
3029         /* if we're leaving an eval, check before we pop any frames
3030            that we're not going to punt, otherwise the error
3031            won't be caught */
3032
3033         if (leaving_eval && *enterops && enterops[1]) {
3034             I32 i;
3035             for (i = 1; enterops[i]; i++)
3036                 if (enterops[i]->op_type == OP_ENTERITER)
3037                     DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
3038         }
3039
3040         if (*enterops && enterops[1]) {
3041             I32 i = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
3042             if (enterops[i])
3043                 deprecate("\"goto\" to jump into a construct");
3044         }
3045
3046         /* pop unwanted frames */
3047
3048         if (ix < cxstack_ix) {
3049             if (ix < 0)
3050                 DIE(aTHX_ "panic: docatch: illegal ix=%ld", (long)ix);
3051             dounwind(ix);
3052             TOPBLOCK(cx);
3053         }
3054
3055         /* push wanted frames */
3056
3057         if (*enterops && enterops[1]) {
3058             OP * const oldop = PL_op;
3059             ix = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
3060             for (; enterops[ix]; ix++) {
3061                 PL_op = enterops[ix];
3062                 /* Eventually we may want to stack the needed arguments
3063                  * for each op.  For now, we punt on the hard ones. */
3064                 if (PL_op->op_type == OP_ENTERITER)
3065                     DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
3066                 PL_op->op_ppaddr(aTHX);
3067             }
3068             PL_op = oldop;
3069         }
3070     }
3071
3072     if (do_dump) {
3073 #ifdef VMS
3074         if (!retop) retop = PL_main_start;
3075 #endif
3076         PL_restartop = retop;
3077         PL_do_undump = TRUE;
3078
3079         my_unexec();
3080
3081         PL_restartop = 0;               /* hmm, must be GNU unexec().. */
3082         PL_do_undump = FALSE;
3083     }
3084
3085     putback_return:
3086     PL_stack_sp = sp;
3087     _return:
3088     PERL_ASYNC_CHECK();
3089     return retop;
3090 }
3091
3092 PP(pp_exit)
3093 {
3094     dSP;
3095     I32 anum;
3096
3097     if (MAXARG < 1)
3098         anum = 0;
3099     else if (!TOPs) {
3100         anum = 0; (void)POPs;
3101     }
3102     else {
3103         anum = SvIVx(POPs);
3104 #ifdef VMS
3105         if (anum == 1
3106          && SvTRUE(cop_hints_fetch_pvs(PL_curcop, "vmsish_exit", 0)))
3107             anum = 0;
3108         VMSISH_HUSHED  =
3109             VMSISH_HUSHED || (PL_curcop->op_private & OPpHUSH_VMSISH);
3110 #endif
3111     }
3112     PL_exit_flags |= PERL_EXIT_EXPECTED;
3113     my_exit(anum);
3114     PUSHs(&PL_sv_undef);
3115     RETURN;
3116 }
3117
3118 /* Eval. */
3119
3120 STATIC void
3121 S_save_lines(pTHX_ AV *array, SV *sv)
3122 {
3123     const char *s = SvPVX_const(sv);
3124     const char * const send = SvPVX_const(sv) + SvCUR(sv);
3125     I32 line = 1;
3126
3127     PERL_ARGS_ASSERT_SAVE_LINES;
3128
3129     while (s && s < send) {
3130         const char *t;
3131         SV * const tmpstr = newSV_type(SVt_PVMG);
3132
3133         t = (const char *)memchr(s, '\n', send - s);
3134         if (t)
3135             t++;
3136         else
3137             t = send;
3138
3139         sv_setpvn(tmpstr, s, t - s);
3140         av_store(array, line++, tmpstr);
3141         s = t;
3142     }
3143 }
3144
3145 /*
3146 =for apidoc docatch
3147
3148 Check for the cases 0 or 3 of cur_env.je_ret, only used inside an eval context.
3149
3150 0 is used as continue inside eval,
3151
3152 3 is used for a die caught by an inner eval - continue inner loop
3153
3154 See F<cop.h>: je_mustcatch, when set at any runlevel to TRUE, means eval ops must
3155 establish a local jmpenv to handle exception traps.
3156
3157 =cut
3158 */
3159 STATIC OP *
3160 S_docatch(pTHX_ OP *o)
3161 {
3162     int ret;
3163     OP * const oldop = PL_op;
3164     dJMPENV;
3165
3166 #ifdef DEBUGGING
3167     assert(CATCH_GET == TRUE);
3168 #endif
3169     PL_op = o;
3170
3171     JMPENV_PUSH(ret);
3172     switch (ret) {
3173     case 0:
3174         assert(cxstack_ix >= 0);
3175         assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
3176         cxstack[cxstack_ix].blk_eval.cur_top_env = PL_top_env;
3177  redo_body:
3178         CALLRUNOPS(aTHX);
3179         break;
3180     case 3:
3181         /* die caught by an inner eval - continue inner loop */
3182         if (PL_restartop && PL_restartjmpenv == PL_top_env) {
3183             PL_restartjmpenv = NULL;
3184             PL_op = PL_restartop;
3185             PL_restartop = 0;
3186             goto redo_body;
3187         }
3188         /* FALLTHROUGH */
3189     default:
3190         JMPENV_POP;
3191         PL_op = oldop;
3192         JMPENV_JUMP(ret);
3193         NOT_REACHED; /* NOTREACHED */
3194     }
3195     JMPENV_POP;
3196     PL_op = oldop;
3197     return NULL;
3198 }
3199
3200
3201 /*
3202 =for apidoc find_runcv
3203
3204 Locate the CV corresponding to the currently executing sub or eval.
3205 If C<db_seqp> is non_null, skip CVs that are in the DB package and populate
3206 C<*db_seqp> with the cop sequence number at the point that the DB:: code was
3207 entered.  (This allows debuggers to eval in the scope of the breakpoint
3208 rather than in the scope of the debugger itself.)
3209
3210 =cut
3211 */
3212
3213 CV*
3214 Perl_find_runcv(pTHX_ U32 *db_seqp)
3215 {
3216     return Perl_find_runcv_where(aTHX_ 0, 0, db_seqp);
3217 }
3218
3219 /* If this becomes part of the API, it might need a better name. */
3220 CV *
3221 Perl_find_runcv_where(pTHX_ U8 cond, IV arg, U32 *db_seqp)
3222 {
3223     PERL_SI      *si;
3224     int          level = 0;
3225
3226     if (db_seqp)
3227         *db_seqp =
3228             PL_curcop == &PL_compiling
3229                 ? PL_cop_seqmax
3230                 : PL_curcop->cop_seq;
3231
3232     for (si = PL_curstackinfo; si; si = si->si_prev) {
3233         I32 ix;
3234         for (ix = si->si_cxix; ix >= 0; ix--) {
3235             const PERL_CONTEXT *cx = &(si->si_cxstack[ix]);
3236             CV *cv = NULL;
3237             if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
3238                 cv = cx->blk_sub.cv;
3239                 /* skip DB:: code */
3240                 if (db_seqp && PL_debstash && CvSTASH(cv) == PL_debstash) {
3241                     *db_seqp = cx->blk_oldcop->cop_seq;
3242                     continue;
3243                 }
3244                 if (cx->cx_type & CXp_SUB_RE)
3245                     continue;
3246             }
3247             else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx))
3248                 cv = cx->blk_eval.cv;
3249             if (cv) {
3250                 switch (cond) {
3251                 case FIND_RUNCV_padid_eq:
3252                     if (!CvPADLIST(cv)
3253                      || CvPADLIST(cv)->xpadl_id != (U32)arg)
3254                         continue;
3255                     return cv;
3256                 case FIND_RUNCV_level_eq:
3257                     if (level++ != arg) continue;
3258                     /* GERONIMO! */
3259                 default:
3260                     return cv;
3261                 }
3262             }
3263         }
3264     }
3265     return cond == FIND_RUNCV_padid_eq ? NULL : PL_main_cv;
3266 }
3267
3268
3269 /* Run yyparse() in a setjmp wrapper. Returns:
3270  *   0: yyparse() successful
3271  *   1: yyparse() failed
3272  *   3: yyparse() died
3273  */
3274 STATIC int
3275 S_try_yyparse(pTHX_ int gramtype)
3276 {
3277     int ret;
3278     dJMPENV;
3279
3280     assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
3281     JMPENV_PUSH(ret);
3282     switch (ret) {
3283     case 0:
3284         ret = yyparse(gramtype) ? 1 : 0;
3285         break;
3286     case 3:
3287         break;
3288     default:
3289         JMPENV_POP;
3290         JMPENV_JUMP(ret);
3291         NOT_REACHED; /* NOTREACHED */
3292     }
3293     JMPENV_POP;
3294     return ret;
3295 }
3296
3297
3298 /* Compile a require/do or an eval ''.
3299  *
3300  * outside is the lexically enclosing CV (if any) that invoked us.
3301  * seq     is the current COP scope value.
3302  * hh      is the saved hints hash, if any.
3303  *
3304  * Returns a bool indicating whether the compile was successful; if so,
3305  * PL_eval_start contains the first op of the compiled code; otherwise,
3306  * pushes undef.
3307  *
3308  * This function is called from two places: pp_require and pp_entereval.
3309  * These can be distinguished by whether PL_op is entereval.
3310  */
3311
3312 STATIC bool
3313 S_doeval_compile(pTHX_ int gimme, CV* outside, U32 seq, HV *hh)
3314 {
3315     dSP;
3316     OP * const saveop = PL_op;
3317     bool clear_hints = saveop->op_type != OP_ENTEREVAL;
3318     COP * const oldcurcop = PL_curcop;
3319     bool in_require = (saveop->op_type == OP_REQUIRE);
3320     int yystatus;
3321     CV *evalcv;
3322
3323     PL_in_eval = (in_require
3324                   ? (EVAL_INREQUIRE | (PL_in_eval & EVAL_INEVAL))
3325                   : (EVAL_INEVAL |
3326                         ((PL_op->op_private & OPpEVAL_RE_REPARSING)
3327                             ? EVAL_RE_REPARSING : 0)));
3328
3329     PUSHMARK(SP);
3330
3331     evalcv = MUTABLE_CV(newSV_type(SVt_PVCV));
3332     CvEVAL_on(evalcv);
3333     assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
3334     cxstack[cxstack_ix].blk_eval.cv = evalcv;
3335     cxstack[cxstack_ix].blk_gimme = gimme;
3336
3337     CvOUTSIDE_SEQ(evalcv) = seq;
3338     CvOUTSIDE(evalcv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
3339
3340     /* set up a scratch pad */
3341
3342     CvPADLIST_set(evalcv, pad_new(padnew_SAVE));
3343     PL_op = NULL; /* avoid PL_op and PL_curpad referring to different CVs */
3344
3345
3346     SAVEMORTALIZESV(evalcv);    /* must remain until end of current statement */
3347
3348     /* make sure we compile in the right package */
3349
3350     if (CopSTASH_ne(PL_curcop, PL_curstash)) {
3351         SAVEGENERICSV(PL_curstash);
3352         PL_curstash = (HV *)CopSTASH(PL_curcop);
3353         if (SvTYPE(PL_curstash) != SVt_PVHV) PL_curstash = NULL;
3354         else SvREFCNT_inc_simple_void(PL_curstash);
3355     }
3356     /* XXX:ajgo do we really need to alloc an AV for begin/checkunit */
3357     SAVESPTR(PL_beginav);
3358     PL_beginav = newAV();
3359     SAVEFREESV(PL_beginav);
3360     SAVESPTR(PL_unitcheckav);
3361     PL_unitcheckav = newAV();
3362     SAVEFREESV(PL_unitcheckav);
3363
3364
3365     ENTER_with_name("evalcomp");
3366     SAVESPTR(PL_compcv);
3367     PL_compcv = evalcv;
3368
3369     /* try to compile it */
3370
3371     PL_eval_root = NULL;
3372     PL_curcop = &PL_compiling;
3373     if ((saveop->op_type != OP_REQUIRE) && (saveop->op_flags & OPf_SPECIAL))
3374         PL_in_eval |= EVAL_KEEPERR;
3375     else
3376         CLEAR_ERRSV();
3377
3378     SAVEHINTS();
3379     if (clear_hints) {
3380         PL_hints = 0;
3381         hv_clear(GvHV(PL_hintgv));
3382     }
3383     else {
3384         PL_hints = saveop->op_private & OPpEVAL_COPHH
3385                      ? oldcurcop->cop_hints : saveop->op_targ;
3386
3387         /* making 'use re eval' not be in scope when compiling the
3388          * qr/mabye_has_runtime_code_block/ ensures that we don't get
3389          * infinite recursion when S_has_runtime_code() gives a false
3390          * positive: the second time round, HINT_RE_EVAL isn't set so we
3391          * don't bother calling S_has_runtime_code() */
3392         if (PL_in_eval & EVAL_RE_REPARSING)
3393             PL_hints &= ~HINT_RE_EVAL;
3394
3395         if (hh) {
3396             /* SAVEHINTS created a new HV in PL_hintgv, which we need to GC */
3397             SvREFCNT_dec(GvHV(PL_hintgv));
3398             GvHV(PL_hintgv) = hh;
3399         }
3400     }
3401     SAVECOMPILEWARNINGS();
3402     if (clear_hints) {
3403         if (PL_dowarn & G_WARN_ALL_ON)
3404             PL_compiling.cop_warnings = pWARN_ALL ;
3405         else if (PL_dowarn & G_WARN_ALL_OFF)
3406             PL_compiling.cop_warnings = pWARN_NONE ;
3407         else
3408             PL_compiling.cop_warnings = pWARN_STD ;
3409     }
3410     else {
3411         PL_compiling.cop_warnings =
3412             DUP_WARNINGS(oldcurcop->cop_warnings);
3413         cophh_free(CopHINTHASH_get(&PL_compiling));
3414         if (Perl_cop_fetch_label(aTHX_ oldcurcop, NULL, NULL)) {
3415             /* The label, if present, is the first entry on the chain. So rather
3416                than writing a blank label in front of it (which involves an
3417                allocation), just use the next entry in the chain.  */
3418             PL_compiling.cop_hints_hash
3419                 = cophh_copy(oldcurcop->cop_hints_hash->refcounted_he_next);
3420             /* Check the assumption that this removed the label.  */
3421             assert(Perl_cop_fetch_label(aTHX_ &PL_compiling, NULL, NULL) == NULL);
3422         }
3423         else
3424             PL_compiling.cop_hints_hash = cophh_copy(oldcurcop->cop_hints_hash);
3425     }
3426
3427     CALL_BLOCK_HOOKS(bhk_eval, saveop);
3428
3429     /* note that yyparse() may raise an exception, e.g. C<BEGIN{die}>,
3430      * so honour CATCH_GET and trap it here if necessary */
3431
3432
3433     /* compile the code */
3434     yystatus = (!in_require && CATCH_GET) ? S_try_yyparse(aTHX_ GRAMPROG) : yyparse(GRAMPROG);
3435
3436     if (yystatus || PL_parser->error_count || !PL_eval_root) {
3437         PERL_CONTEXT *cx;
3438         SV *errsv;
3439
3440         PL_op = saveop;
3441         /* note that if yystatus == 3, then the require/eval died during
3442          * compilation, so the EVAL CX block has already been popped, and
3443          * various vars restored */
3444         if (yystatus != 3) {
3445             if (PL_eval_root) {
3446                 op_free(PL_eval_root);
3447                 PL_eval_root = NULL;
3448             }
3449             SP = PL_stack_base + POPMARK;       /* pop original mark */
3450             cx = &cxstack[cxstack_ix];
3451             CX_LEAVE_SCOPE(cx);
3452             POPEVAL(cx);
3453             POPBLOCK(cx);
3454             if (in_require) {
3455                 S_undo_inc_then_croak(aTHX_ cx, ERRSV, FALSE);
3456                 NOT_REACHED; /* NOTREACHED */
3457             }
3458             CX_POP(cx);
3459         }
3460
3461         errsv = ERRSV;
3462         if (in_require) {
3463             assert(yystatus == 3);
3464             cx = &cxstack[cxstack_ix];
3465             assert(CxTYPE(cx) == CXt_EVAL);
3466             S_undo_inc_then_croak(aTHX_ cx, errsv, FALSE);
3467             NOT_REACHED; /* NOTREACHED */
3468         }
3469
3470         if (!*(SvPV_nolen_const(errsv)))
3471             sv_setpvs(errsv, "Compilation error");
3472
3473         if (gimme != G_ARRAY) PUSHs(&PL_sv_undef);
3474         PUTBACK;
3475         return FALSE;
3476     }
3477
3478     /* Compilation successful. Now clean up */
3479
3480     LEAVE_with_name("evalcomp");
3481
3482     CopLINE_set(&PL_compiling, 0);
3483     SAVEFREEOP(PL_eval_root);
3484     cv_forget_slab(evalcv);
3485
3486     DEBUG_x(dump_eval());
3487
3488     /* Register with debugger: */
3489     if (PERLDB_INTER && saveop->op_type == OP_REQUIRE) {
3490         CV * const cv = get_cvs("DB::postponed", 0);
3491         if (cv) {
3492             dSP;
3493             PUSHMARK(SP);
3494             XPUSHs(MUTABLE_SV(CopFILEGV(&PL_compiling)));
3495             PUTBACK;
3496             call_sv(MUTABLE_SV(cv), G_DISCARD);
3497         }
3498     }
3499
3500     if (PL_unitcheckav) {
3501         OP *es = PL_eval_start;
3502         call_list(PL_scopestack_ix, PL_unitcheckav);
3503         PL_eval_start = es;
3504     }
3505
3506     CvDEPTH(evalcv) = 1;
3507     SP = PL_stack_base + POPMARK;               /* pop original mark */
3508     PL_op = saveop;                     /* The caller may need it. */
3509     PL_parser->lex_state = LEX_NOTPARSING;      /* $^S needs this. */
3510
3511     PUTBACK;
3512     return TRUE;
3513 }
3514
3515
3516 STATIC PerlIO *
3517 S_check_type_and_open(pTHX_ SV *name)
3518 {
3519     Stat_t st;
3520     STRLEN len;
3521     PerlIO * retio;
3522     const char *p = SvPV_const(name, len);
3523     int st_rc;
3524
3525     PERL_ARGS_ASSERT_CHECK_TYPE_AND_OPEN;
3526
3527     /* checking here captures a reasonable error message when
3528      * PERL_DISABLE_PMC is true, but when PMC checks are enabled, the
3529      * user gets a confusing message about looking for the .pmc file
3530      * rather than for the .pm file so do the check in S_doopen_pm when
3531      * PMC is on instead of here. S_doopen_pm calls this func.
3532      * This check prevents a \0 in @INC causing problems.
3533      */
3534 #ifdef PERL_DISABLE_PMC
3535     if (!IS_SAFE_PATHNAME(p, len, "require"))
3536         return NULL;
3537 #endif
3538
3539     /* on Win32 stat is expensive (it does an open() and close() twice and
3540        a couple other IO calls), the open will fail with a dir on its own with
3541        errno EACCES, so only do a stat to separate a dir from a real EACCES
3542        caused by user perms */
3543 #ifndef WIN32
3544     /* we use the value of errno later to see how stat() or open() failed.
3545      * We don't want it set if the stat succeeded but we still failed,
3546      * such as if the name exists, but is a directory */
3547     errno = 0;
3548
3549     st_rc = PerlLIO_stat(p, &st);
3550
3551     if (st_rc < 0 || S_ISDIR(st.st_mode) || S_ISBLK(st.st_mode)) {
3552         return NULL;
3553     }
3554 #endif
3555
3556     retio = PerlIO_openn(aTHX_ ":", PERL_SCRIPT_MODE, -1, 0, 0, NULL, 1, &name);
3557 #ifdef WIN32
3558     /* EACCES stops the INC search early in pp_require to implement
3559        feature RT #113422 */
3560     if(!retio && errno == EACCES) { /* exists but probably a directory */
3561         int eno;
3562         st_rc = PerlLIO_stat(p, &st);
3563         if (st_rc >= 0) {
3564             if(S_ISDIR(st.st_mode) || S_ISBLK(st.st_mode))
3565                 eno = 0;
3566             else
3567                 eno = EACCES;
3568             errno = eno;
3569         }
3570     }
3571 #endif
3572     return retio;
3573 }
3574
3575 #ifndef PERL_DISABLE_PMC
3576 STATIC PerlIO *
3577 S_doopen_pm(pTHX_ SV *name)
3578 {
3579     STRLEN namelen;
3580     const char *p = SvPV_const(name, namelen);
3581
3582     PERL_ARGS_ASSERT_DOOPEN_PM;
3583
3584     /* check the name before trying for the .pmc name to avoid the
3585      * warning referring to the .pmc which the user probably doesn't
3586      * know or care about
3587      */
3588     if (!IS_SAFE_PATHNAME(p, namelen, "require"))
3589         return NULL;
3590
3591     if (namelen > 3 && memEQs(p + namelen - 3, 3, ".pm")) {
3592         SV *const pmcsv = sv_newmortal();
3593         PerlIO * pmcio;
3594
3595         SvSetSV_nosteal(pmcsv,name);
3596         sv_catpvs(pmcsv, "c");
3597
3598         pmcio = check_type_and_open(pmcsv);
3599         if (pmcio)
3600             return pmcio;
3601     }
3602     return check_type_and_open(name);
3603 }
3604 #else
3605 #  define doopen_pm(name) check_type_and_open(name)
3606 #endif /* !PERL_DISABLE_PMC */
3607
3608 /* require doesn't search for absolute names, or when the name is
3609    explicitly relative the current directory */
3610 PERL_STATIC_INLINE bool
3611 S_path_is_searchable(const char *name)
3612 {
3613     PERL_ARGS_ASSERT_PATH_IS_SEARCHABLE;
3614
3615     if (PERL_FILE_IS_ABSOLUTE(name)
3616 #ifdef WIN32
3617         || (*name == '.' && ((name[1] == '/' ||
3618                              (name[1] == '.' && name[2] == '/'))
3619                          || (name[1] == '\\' ||
3620                              ( name[1] == '.' && name[2] == '\\')))
3621             )
3622 #else
3623         || (*name == '.' && (name[1] == '/' ||
3624                              (name[1] == '.' && name[2] == '/')))
3625 #endif
3626          )
3627     {
3628         return FALSE;
3629     }
3630     else
3631         return TRUE;
3632 }
3633
3634
3635 /* also used for: pp_dofile() */
3636
3637 PP(pp_require)
3638 {
3639     dSP;
3640     PERL_CONTEXT *cx;
3641     SV *sv;
3642     const char *name;
3643     STRLEN len;
3644     char * unixname;
3645     STRLEN unixlen;
3646 #ifdef VMS
3647     int vms_unixname = 0;
3648     char *unixdir;
3649 #endif
3650     const char *tryname = NULL;
3651     SV *namesv = NULL;
3652     const I32 gimme = GIMME_V;
3653     int filter_has_file = 0;
3654     PerlIO *tryrsfp = NULL;
3655     SV *filter_cache = NULL;
3656     SV *filter_state = NULL;
3657     SV *filter_sub = NULL;
3658     SV *hook_sv = NULL;
3659     OP *op;
3660     int saved_errno;
3661     bool path_searchable;
3662     I32 old_savestack_ix;
3663
3664     sv = POPs;
3665     SvGETMAGIC(sv);
3666     if ( (SvNIOKp(sv) || SvVOK(sv)) && PL_op->op_type != OP_DOFILE) {
3667         sv = sv_2mortal(new_version(sv));
3668         if (!Perl_sv_derived_from_pvn(aTHX_ PL_patchlevel, STR_WITH_LEN("version"), 0))
3669             upg_version(PL_patchlevel, TRUE);
3670         if (cUNOP->op_first->op_type == OP_CONST && cUNOP->op_first->op_private & OPpCONST_NOVER) {
3671             if ( vcmp(sv,PL_patchlevel) <= 0 )
3672                 DIE(aTHX_ "Perls since %"SVf" too modern--this is %"SVf", stopped",
3673                     SVfARG(sv_2mortal(vnormal(sv))),
3674                     SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3675                 );
3676         }
3677         else {
3678             if ( vcmp(sv,PL_patchlevel) > 0 ) {
3679                 I32 first = 0;
3680                 AV *lav;
3681                 SV * const req = SvRV(sv);
3682                 SV * const pv = *hv_fetchs(MUTABLE_HV(req), "original", FALSE);
3683
3684                 /* get the left hand term */
3685                 lav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(req), "version", FALSE)));
3686
3687                 first  = SvIV(*av_fetch(lav,0,0));
3688                 if (   first > (int)PERL_REVISION    /* probably 'use 6.0' */
3689                     || hv_exists(MUTABLE_HV(req), "qv", 2 ) /* qv style */
3690                     || av_tindex(lav) > 1            /* FP with > 3 digits */
3691                     || strstr(SvPVX(pv),".0")        /* FP with leading 0 */
3692                    ) {
3693                     DIE(aTHX_ "Perl %"SVf" required--this is only "
3694                         "%"SVf", stopped",
3695                         SVfARG(sv_2mortal(vnormal(req))),
3696                         SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3697                     );
3698                 }
3699                 else { /* probably 'use 5.10' or 'use 5.8' */
3700                     SV *hintsv;
3701                     I32 second = 0;
3702
3703                     if (av_tindex(lav)>=1)
3704                         second = SvIV(*av_fetch(lav,1,0));
3705
3706                     second /= second >= 600  ? 100 : 10;
3707                     hintsv = Perl_newSVpvf(aTHX_ "v%d.%d.0",
3708                                            (int)first, (int)second);
3709                     upg_version(hintsv, TRUE);
3710
3711                     DIE(aTHX_ "Perl %"SVf" required (did you mean %"SVf"?)"
3712                         "--this is only %"SVf", stopped",
3713                         SVfARG(sv_2mortal(vnormal(req))),
3714                         SVfARG(sv_2mortal(vnormal(sv_2mortal(hintsv)))),
3715                         SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3716                     );
3717                 }
3718             }
3719         }
3720
3721         RETPUSHYES;
3722     }
3723     if (!SvOK(sv))
3724         DIE(aTHX_ "Missing or undefined argument to require");
3725     name = SvPV_nomg_const(sv, len);
3726     if (!(name && len > 0 && *name))
3727         DIE(aTHX_ "Missing or undefined argument to require");
3728
3729     if (!IS_SAFE_PATHNAME(name, len, "require")) {
3730         DIE(aTHX_ "Can't locate %s:   %s",
3731             pv_escape(newSVpvs_flags("",SVs_TEMP),SvPVX(sv),SvCUR(sv),
3732                       SvCUR(sv)*2,NULL, SvUTF8(sv)?PERL_PV_ESCAPE_UNI:0),
3733             Strerror(ENOENT));
3734     }
3735     TAINT_PROPER("require");
3736
3737     path_searchable = path_is_searchable(name);
3738
3739 #ifdef VMS
3740     /* The key in the %ENV hash is in the syntax of file passed as the argument
3741      * usually this is in UNIX format, but sometimes in VMS format, which
3742      * can result in a module being pulled in more than once.
3743      * To prevent this, the key must be stored in UNIX format if the VMS
3744      * name can be translated to UNIX.
3745      */
3746     
3747     if ((unixname =
3748           tounixspec(name, SvPVX(sv_2mortal(newSVpv("", VMS_MAXRSS-1)))))
3749          != NULL) {
3750         unixlen = strlen(unixname);
3751         vms_unixname = 1;
3752     }
3753     else
3754 #endif
3755     {
3756         /* if not VMS or VMS name can not be translated to UNIX, pass it
3757          * through.
3758          */
3759         unixname = (char *) name;
3760         unixlen = len;
3761     }
3762     if (PL_op->op_type == OP_REQUIRE) {
3763         SV * const * const svp = hv_fetch(GvHVn(PL_incgv),
3764                                           unixname, unixlen, 0);
3765         if ( svp ) {
3766             if (*svp != &PL_sv_undef)
3767                 RETPUSHYES;
3768             else
3769                 DIE(aTHX_ "Attempt to reload %s aborted.\n"
3770                             "Compilation failed in require", unixname);
3771         }
3772     }
3773
3774     LOADING_FILE_PROBE(unixname);
3775
3776     /* prepare to compile file */
3777
3778     if (!path_searchable) {
3779         /* At this point, name is SvPVX(sv)  */
3780         tryname = name;
3781         tryrsfp = doopen_pm(sv);
3782     }
3783     if (!tryrsfp && !(errno == EACCES && !path_searchable)) {
3784         AV * const ar = GvAVn(PL_incgv);
3785         SSize_t i;
3786 #ifdef VMS
3787         if (vms_unixname)
3788 #endif
3789         {
3790             SV *nsv = sv;
3791             namesv = newSV_type(SVt_PV);
3792             for (i = 0; i <= AvFILL(ar); i++) {
3793                 SV * const dirsv = *av_fetch(ar, i, TRUE);
3794
3795                 SvGETMAGIC(dirsv);
3796                 if (SvROK(dirsv)) {
3797                     int count;
3798                     SV **svp;
3799                     SV *loader = dirsv;
3800
3801                     if (SvTYPE(SvRV(loader)) == SVt_PVAV
3802                         && !SvOBJECT(SvRV(loader)))
3803                     {
3804                         loader = *av_fetch(MUTABLE_AV(SvRV(loader)), 0, TRUE);
3805                         SvGETMAGIC(loader);
3806                     }
3807
3808                     Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%"UVxf"/%s",
3809                                    PTR2UV(SvRV(dirsv)), name);
3810                     tryname = SvPVX_const(namesv);
3811                     tryrsfp = NULL;
3812
3813                     if (SvPADTMP(nsv)) {
3814                         nsv = sv_newmortal();
3815                         SvSetSV_nosteal(nsv,sv);
3816                     }
3817
3818                     ENTER_with_name("call_INC");
3819                     SAVETMPS;
3820                     EXTEND(SP, 2);
3821
3822                     PUSHMARK(SP);
3823                     PUSHs(dirsv);
3824                     PUSHs(nsv);
3825                     PUTBACK;
3826                     if (SvGMAGICAL(loader)) {
3827                         SV *l = sv_newmortal();
3828                         sv_setsv_nomg(l, loader);
3829                         loader = l;
3830                     }
3831                     if (sv_isobject(loader))
3832                         count = call_method("INC", G_ARRAY);
3833                     else
3834                         count = call_sv(loader, G_ARRAY);
3835                     SPAGAIN;
3836
3837                     if (count > 0) {
3838                         int i = 0;
3839                         SV *arg;
3840
3841                         SP -= count - 1;
3842                         arg = SP[i++];
3843
3844                         if (SvROK(arg) && (SvTYPE(SvRV(arg)) <= SVt_PVLV)
3845                             && !isGV_with_GP(SvRV(arg))) {
3846                             filter_cache = SvRV(arg);
3847
3848                             if (i < count) {
3849                                 arg = SP[i++];
3850                             }
3851                         }
3852
3853                         if (SvROK(arg) && isGV_with_GP(SvRV(arg))) {
3854                             arg = SvRV(arg);
3855                         }
3856
3857                         if (isGV_with_GP(arg)) {
3858                             IO * const io = GvIO((const GV *)arg);
3859
3860                             ++filter_has_file;
3861
3862                             if (io) {
3863                                 tryrsfp = IoIFP(io);
3864                                 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
3865                                     PerlIO_close(IoOFP(io));
3866                                 }
3867                                 IoIFP(io) = NULL;
3868                                 IoOFP(io) = NULL;
3869                             }
3870
3871                             if (i < count) {
3872                                 arg = SP[i++];
3873                             }
3874                         }
3875
3876                         if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) {
3877                             filter_sub = arg;
3878                             SvREFCNT_inc_simple_void_NN(filter_sub);
3879
3880                             if (i < count) {
3881                                 filter_state = SP[i];
3882                                 SvREFCNT_inc_simple_void(filter_state);
3883                             }
3884                         }
3885
3886                         if (!tryrsfp && (filter_cache || filter_sub)) {
3887                             tryrsfp = PerlIO_open(BIT_BUCKET,
3888                                                   PERL_SCRIPT_MODE);
3889                         }
3890                         SP--;
3891                     }
3892
3893                     /* FREETMPS may free our filter_cache */
3894                     SvREFCNT_inc_simple_void(filter_cache);
3895
3896                     PUTBACK;
3897                     FREETMPS;
3898                     LEAVE_with_name("call_INC");
3899
3900                     /* Now re-mortalize it. */
3901                     sv_2mortal(filter_cache);
3902
3903                     /* Adjust file name if the hook has set an %INC entry.
3904                        This needs to happen after the FREETMPS above.  */
3905                     svp = hv_fetch(GvHVn(PL_incgv), name, len, 0);
3906                     if (svp)
3907                         tryname = SvPV_nolen_const(*svp);
3908
3909                     if (tryrsfp) {
3910                         hook_sv = dirsv;
3911                         break;
3912                     }
3913
3914                     filter_has_file = 0;
3915                     filter_cache = NULL;
3916                     if (filter_state) {
3917                         SvREFCNT_dec_NN(filter_state);
3918                         filter_state = NULL;
3919                     }
3920                     if (filter_sub) {
3921                         SvREFCNT_dec_NN(filter_sub);
3922                         filter_sub = NULL;
3923                     }
3924                 }
3925                 else {
3926                   if (path_searchable) {
3927                     const char *dir;
3928                     STRLEN dirlen;
3929
3930                     if (SvOK(dirsv)) {
3931                         dir = SvPV_nomg_const(dirsv, dirlen);
3932                     } else {
3933                         dir = "";
3934                         dirlen = 0;
3935                     }
3936
3937                     if (!IS_SAFE_SYSCALL(dir, dirlen, "@INC entry", "require"))
3938                         continue;
3939 #ifdef VMS
3940                     if ((unixdir =
3941                           tounixpath(dir, SvPVX(sv_2mortal(newSVpv("", VMS_MAXRSS-1)))))
3942                          == NULL)
3943                         continue;
3944                     sv_setpv(namesv, unixdir);
3945                     sv_catpv(namesv, unixname);
3946 #else
3947 #  ifdef __SYMBIAN32__
3948                     if (PL_origfilename[0] &&
3949                         PL_origfilename[1] == ':' &&
3950                         !(dir[0] && dir[1] == ':'))
3951                         Perl_sv_setpvf(aTHX_ namesv,
3952                                        "%c:%s\\%s",
3953                                        PL_origfilename[0],
3954                                        dir, name);
3955                     else
3956                         Perl_sv_setpvf(aTHX_ namesv,
3957                                        "%s\\%s",
3958                                        dir, name);
3959 #  else
3960                     /* The equivalent of                    
3961                        Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir, name);
3962                        but without the need to parse the format string, or
3963                        call strlen on either pointer, and with the correct
3964                        allocation up front.  */
3965                     {
3966                         char *tmp = SvGROW(namesv, dirlen + len + 2);
3967
3968                         memcpy(tmp, dir, dirlen);
3969                         tmp +=dirlen;
3970
3971                         /* Avoid '<dir>//<file>' */
3972                         if (!dirlen || *(tmp-1) != '/') {
3973                             *tmp++ = '/';
3974                         } else {
3975                             /* So SvCUR_set reports the correct length below */
3976                             dirlen--;
3977                         }
3978
3979                         /* name came from an SV, so it will have a '\0' at the
3980                            end that we can copy as part of this memcpy().  */
3981                         memcpy(tmp, name, len + 1);
3982
3983                         SvCUR_set(namesv, dirlen + len + 1);
3984                         SvPOK_on(namesv);
3985                     }
3986 #  endif
3987 #endif
3988                     TAINT_PROPER("require");
3989                     tryname = SvPVX_const(namesv);
3990                     tryrsfp = doopen_pm(namesv);
3991                     if (tryrsfp) {
3992                         if (tryname[0] == '.' && tryname[1] == '/') {
3993                             ++tryname;
3994                             while (*++tryname == '/') {}
3995                         }
3996                         break;
3997                     }
3998                     else if (errno == EMFILE || errno == EACCES) {
3999                         /* no point in trying other paths if out of handles;
4000                          * on the other hand, if we couldn't open one of the
4001                          * files, then going on with the search could lead to
4002                          * unexpected results; see perl #113422
4003                          */
4004                         break;
4005                     }
4006                   }
4007                 }
4008             }
4009         }
4010     }
4011     saved_errno = errno; /* sv_2mortal can realloc things */
4012     sv_2mortal(namesv);
4013     if (!tryrsfp) {
4014         if (PL_op->op_type == OP_REQUIRE) {
4015             if(saved_errno == EMFILE || saved_errno == EACCES) {
4016                 /* diag_listed_as: Can't locate %s */
4017                 DIE(aTHX_ "Can't locate %s:   %s: %s",
4018                     name, tryname, Strerror(saved_errno));
4019             } else {
4020                 if (namesv) {                   /* did we lookup @INC? */
4021                     AV * const ar = GvAVn(PL_incgv);
4022                     SSize_t i;
4023                     SV *const msg = newSVpvs_flags("", SVs_TEMP);
4024                     SV *const inc = newSVpvs_flags("", SVs_TEMP);
4025                     for (i = 0; i <= AvFILL(ar); i++) {
4026                         sv_catpvs(inc, " ");
4027                         sv_catsv(inc, *av_fetch(ar, i, TRUE));
4028                     }
4029                     if (len >= 4 && memEQ(name + len - 3, ".pm", 4)) {
4030                         const char *c, *e = name + len - 3;
4031                         sv_catpv(msg, " (you may need to install the ");
4032                         for (c = name; c < e; c++) {
4033                             if (*c == '/') {
4034                                 sv_catpvs(msg, "::");
4035                             }
4036                             else {
4037                                 sv_catpvn(msg, c, 1);
4038                             }
4039                         }
4040                         sv_catpv(msg, " module)");
4041                     }
4042                     else if (len >= 2 && memEQ(name + len - 2, ".h", 3)) {
4043                         sv_catpv(msg, " (change .h to .ph maybe?) (did you run h2ph?)");
4044                     }
4045                     else if (len >= 3 && memEQ(name + len - 3, ".ph", 4)) {
4046                         sv_catpv(msg, " (did you run h2ph?)");
4047                     }
4048
4049                     /* diag_listed_as: Can't locate %s */
4050                     DIE(aTHX_
4051                         "Can't locate %s in @INC%" SVf " (@INC contains:%" SVf ")",
4052                         name, msg, inc);
4053                 }
4054             }
4055             DIE(aTHX_ "Can't locate %s", name);
4056         }
4057
4058         CLEAR_ERRSV();
4059         RETPUSHUNDEF;
4060     }
4061     else
4062         SETERRNO(0, SS_NORMAL);
4063
4064     /* Assume success here to prevent recursive requirement. */
4065     /* name is never assigned to again, so len is still strlen(name)  */
4066     /* Check whether a hook in @INC has already filled %INC */
4067     if (!hook_sv) {
4068         (void)hv_store(GvHVn(PL_incgv),
4069                        unixname, unixlen, newSVpv(tryname,0),0);
4070     } else {
4071         SV** const svp = hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
4072         if (!svp)
4073             (void)hv_store(GvHVn(PL_incgv),
4074                            unixname, unixlen, SvREFCNT_inc_simple(hook_sv), 0 );
4075     }
4076
4077     old_savestack_ix = PL_savestack_ix;
4078     SAVECOPFILE_FREE(&PL_compiling);
4079     CopFILE_set(&PL_compiling, tryname);
4080     lex_start(NULL, tryrsfp, 0);
4081
4082     if (filter_sub || filter_cache) {
4083         /* We can use the SvPV of the filter PVIO itself as our cache, rather
4084            than hanging another SV from it. In turn, filter_add() optionally
4085            takes the SV to use as the filter (or creates a new SV if passed
4086            NULL), so simply pass in whatever value filter_cache has.  */
4087         SV * const fc = filter_cache ? newSV(0) : NULL;
4088         SV *datasv;
4089         if (fc) sv_copypv(fc, filter_cache);
4090         datasv = filter_add(S_run_user_filter, fc);
4091         IoLINES(datasv) = filter_has_file;
4092         IoTOP_GV(datasv) = MUTABLE_GV(filter_state);
4093         IoBOTTOM_GV(datasv) = MUTABLE_GV(filter_sub);
4094     }
4095
4096     /* switch to eval mode */
4097     PUSHBLOCK(cx, CXt_EVAL, SP);
4098     PUSHEVAL(cx, name);
4099     cx->cx_old_savestack_ix = old_savestack_ix;
4100     cx->blk_eval.retop = PL_op->op_next;
4101
4102     SAVECOPLINE(&PL_compiling);
4103     CopLINE_set(&PL_compiling, 0);
4104
4105     PUTBACK;
4106
4107     if (doeval_compile(gimme, NULL, PL_curcop->cop_seq, NULL))
4108         op = DOCATCH(PL_eval_start);
4109     else
4110         op = PL_op->op_next;
4111
4112     LOADED_FILE_PROBE(unixname);
4113
4114     return op;
4115 }
4116
4117 /* This is a op added to hold the hints hash for
4118    pp_entereval. The hash can be modified by the code
4119    being eval'ed, so we return a copy instead. */
4120
4121 PP(pp_hintseval)
4122 {
4123     dSP;
4124     mXPUSHs(MUTABLE_SV(hv_copy_hints_hv(MUTABLE_HV(cSVOP_sv))));
4125     RETURN;
4126 }
4127
4128
4129 PP(pp_entereval)
4130 {
4131     dSP;
4132     PERL_CONTEXT *cx;
4133     SV *sv;
4134     const I32 gimme = GIMME_V;
4135     const U32 was = PL_breakable_sub_gen;
4136     char tbuf[TYPE_DIGITS(long) + 12];
4137     bool saved_delete = FALSE;
4138     char *tmpbuf = tbuf;
4139     STRLEN len;
4140     CV* runcv;
4141     U32 seq, lex_flags = 0;
4142     HV *saved_hh = NULL;
4143     const bool bytes = PL_op->op_private & OPpEVAL_BYTES;
4144     I32 old_savestack_ix;
4145
4146     if (PL_op->op_private & OPpEVAL_HAS_HH) {
4147         saved_hh = MUTABLE_HV(SvREFCNT_inc(POPs));
4148     }
4149     else if (PL_hints & HINT_LOCALIZE_HH || (
4150                 PL_op->op_private & OPpEVAL_COPHH
4151              && PL_curcop->cop_hints & HINT_LOCALIZE_HH
4152             )) {
4153         saved_hh = cop_hints_2hv(PL_curcop, 0);
4154         hv_magic(saved_hh, NULL, PERL_MAGIC_hints);
4155     }
4156     sv = POPs;
4157     if (!SvPOK(sv)) {
4158         /* make sure we've got a plain PV (no overload etc) before testing
4159          * for taint. Making a copy here is probably overkill, but better
4160          * safe than sorry */
4161         STRLEN len;
4162         const char * const p = SvPV_const(sv, len);
4163
4164         sv = newSVpvn_flags(p, len, SVs_TEMP | SvUTF8(sv));
4165         lex_flags |= LEX_START_COPIED;
4166
4167         if (bytes && SvUTF8(sv))
4168             SvPVbyte_force(sv, len);
4169     }
4170     else if (bytes && SvUTF8(sv)) {
4171         /* Don't modify someone else's scalar */
4172         STRLEN len;
4173         sv = newSVsv(sv);
4174         (void)sv_2mortal(sv);
4175         SvPVbyte_force(sv,len);
4176         lex_flags |= LEX_START_COPIED;
4177     }
4178
4179     TAINT_IF(SvTAINTED(sv));
4180     TAINT_PROPER("eval");
4181
4182     old_savestack_ix = PL_savestack_ix;
4183
4184     lex_start(sv, NULL, lex_flags | (PL_op->op_private & OPpEVAL_UNICODE
4185                            ? LEX_IGNORE_UTF8_HINTS
4186                            : bytes ? LEX_EVALBYTES : LEX_START_SAME_FILTER
4187                         )
4188              );
4189
4190     /* switch to eval mode */
4191
4192     if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
4193         SV * const temp_sv = sv_newmortal();
4194         Perl_sv_setpvf(aTHX_ temp_sv, "_<(eval %lu)[%s:%"IVdf"]",
4195                        (unsigned long)++PL_evalseq,
4196                        CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
4197         tmpbuf = SvPVX(temp_sv);
4198         len = SvCUR(temp_sv);
4199     }
4200     else
4201         len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(eval %lu)", (unsigned long)++PL_evalseq);
4202     SAVECOPFILE_FREE(&PL_compiling);
4203     CopFILE_set(&PL_compiling, tmpbuf+2);
4204     SAVECOPLINE(&PL_compiling);
4205     CopLINE_set(&PL_compiling, 1);
4206     /* special case: an eval '' executed within the DB package gets lexically
4207      * placed in the first non-DB CV rather than the current CV - this
4208      * allows the debugger to execute code, find lexicals etc, in the
4209      * scope of the code being debugged. Passing &seq gets find_runcv
4210      * to do the dirty work for us */
4211     runcv = find_runcv(&seq);
4212
4213     PUSHBLOCK(cx, (CXt_EVAL|CXp_REAL), SP);
4214     PUSHEVAL(cx, 0);
4215     cx->cx_old_savestack_ix = old_savestack_ix;
4216     cx->blk_eval.retop = PL_op->op_next;
4217
4218     /* prepare to compile string */
4219
4220     if (PERLDB_LINE_OR_SAVESRC && PL_curstash != PL_debstash)
4221         save_lines(CopFILEAV(&PL_compiling), PL_parser->linestr);
4222     else {
4223         /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
4224            deleting the eval's FILEGV from the stash before gv_check() runs
4225            (i.e. before run-time proper). To work around the coredump that
4226            ensues, we always turn GvMULTI_on for any globals that were
4227            introduced within evals. See force_ident(). GSAR 96-10-12 */
4228         char *const safestr = savepvn(tmpbuf, len);
4229         SAVEDELETE(PL_defstash, safestr, len);
4230         saved_delete = TRUE;
4231     }
4232     
4233     PUTBACK;
4234
4235     if (doeval_compile(gimme, runcv, seq, saved_hh)) {
4236         if (was != PL_breakable_sub_gen /* Some subs defined here. */
4237             ?  PERLDB_LINE_OR_SAVESRC
4238             :  PERLDB_SAVESRC_NOSUBS) {
4239             /* Retain the filegv we created.  */
4240         } else if (!saved_delete) {
4241             char *const safestr = savepvn(tmpbuf, len);
4242             SAVEDELETE(PL_defstash, safestr, len);
4243         }
4244         return DOCATCH(PL_eval_start);
4245     } else {
4246         /* We have already left the scope set up earlier thanks to the LEAVE
4247            in doeval_compile().  */
4248         if (was != PL_breakable_sub_gen /* Some subs defined here. */
4249             ?  PERLDB_LINE_OR_SAVESRC
4250             :  PERLDB_SAVESRC_INVALID) {
4251             /* Retain the filegv we created.  */
4252         } else if (!saved_delete) {
4253             (void)hv_delete(PL_defstash, tmpbuf, len, G_DISCARD);
4254         }
4255         return PL_op->op_next;
4256     }
4257 }
4258
4259 PP(pp_leaveeval)
4260 {
4261     dSP;
4262     SV **newsp;
4263     I32 gimme;
4264     PERL_CONTEXT *cx;
4265     OP *retop;
4266     I32 optype;
4267     CV *evalcv;
4268     /* grab this value before POPEVAL restores old PL_in_eval */
4269     bool keep = cBOOL(PL_in_eval & EVAL_KEEPERR);
4270
4271     PERL_ASYNC_CHECK();
4272
4273     cx = &cxstack[cxstack_ix];
4274     assert(CxTYPE(cx) == CXt_EVAL);
4275     newsp = PL_stack_base + cx->blk_oldsp;
4276     gimme = cx->blk_gimme;
4277
4278     if (gimme != G_VOID) {
4279         PUTBACK;
4280         leave_common(newsp, newsp, gimme, SVs_TEMP, FALSE);
4281         SPAGAIN;
4282     }
4283     /* the POPEVAL does a leavescope, which frees the optree associated
4284      * with eval, which if it frees the nextstate associated with
4285      * PL_curcop, sets PL_curcop to NULL. Which can mess up freeing a
4286      * regex when running under 'use re Debug' because it needs PL_curcop
4287      * to get the current hints. So restore it early.
4288      */
4289     PL_curcop = cx->blk_oldcop;
4290     CX_LEAVE_SCOPE(cx);
4291     POPEVAL(cx);
4292     POPBLOCK(cx);
4293     retop = cx->blk_eval.retop;
4294     evalcv = cx->blk_eval.cv;
4295     optype = CxOLD_OP_TYPE(cx);
4296
4297
4298 #ifdef DEBUGGING
4299     assert(CvDEPTH(evalcv) == 1);
4300 #endif
4301     CvDEPTH(evalcv) = 0;
4302
4303     if (optype == OP_REQUIRE &&
4304         !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
4305     {
4306         /* Unassume the success we assumed earlier. */
4307         S_undo_inc_then_croak(aTHX_ cx, NULL, TRUE);
4308         NOT_REACHED; /* NOTREACHED */
4309     }
4310
4311     CX_POP(cx);
4312
4313     if (!keep)
4314         CLEAR_ERRSV();
4315
4316     RETURNOP(retop);
4317 }
4318
4319 /* Common code for Perl_call_sv and Perl_fold_constants, put here to keep it
4320    close to the related Perl_create_eval_scope.  */
4321 void
4322 Perl_delete_eval_scope(pTHX)
4323 {
4324     PERL_CONTEXT *cx;
4325         
4326     cx = &cxstack[cxstack_ix];
4327     CX_LEAVE_SCOPE(cx);
4328     POPEVAL(cx);
4329     POPBLOCK(cx);
4330     CX_POP(cx);
4331 }
4332
4333 /* Common-ish code salvaged from Perl_call_sv and pp_entertry, because it was
4334    also needed by Perl_fold_constants.  */
4335 PERL_CONTEXT *
4336 Perl_create_eval_scope(pTHX_ U32 flags)
4337 {
4338     PERL_CONTEXT *cx;
4339     const I32 gimme = GIMME_V;
4340         
4341     PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
4342     PUSHEVAL(cx, 0);
4343     cx->cx_old_savestack_ix = PL_savestack_ix;
4344
4345     PL_in_eval = EVAL_INEVAL;
4346     if (flags & G_KEEPERR)
4347         PL_in_eval |= EVAL_KEEPERR;
4348     else
4349         CLEAR_ERRSV();
4350     if (flags & G_FAKINGEVAL) {
4351         PL_eval_root = PL_op; /* Only needed so that goto works right. */
4352     }
4353     return cx;
4354 }
4355     
4356 PP(pp_entertry)
4357 {
4358     PERL_CONTEXT * const cx = create_eval_scope(0);
4359     cx->blk_eval.retop = cLOGOP->op_other->op_next;
4360     return DOCATCH(PL_op->op_next);
4361 }
4362
4363 PP(pp_leavetry)
4364 {
4365     SV **newsp;
4366     I32 gimme;
4367     PERL_CONTEXT *cx;
4368     OP *retop;
4369
4370     PERL_ASYNC_CHECK();
4371
4372     cx = &cxstack[cxstack_ix];
4373     assert(CxTYPE(cx) == CXt_EVAL);
4374     newsp = PL_stack_base + cx->blk_oldsp;
4375     gimme = cx->blk_gimme;
4376
4377     if (gimme == G_VOID)
4378         PL_stack_sp = newsp;
4379     else
4380         leave_common(newsp, newsp, gimme, SVs_PADTMP|SVs_TEMP, FALSE);
4381     CX_LEAVE_SCOPE(cx);
4382     POPEVAL(cx);
4383     POPBLOCK(cx);
4384     retop = cx->blk_eval.retop;
4385     CX_POP(cx);
4386
4387     CLEAR_ERRSV();
4388     return retop;
4389 }
4390
4391 PP(pp_entergiven)
4392 {
4393     dSP;
4394     PERL_CONTEXT *cx;
4395     const I32 gimme = GIMME_V;
4396     SV *origsv = DEFSV;
4397     SV *newsv = POPs;
4398     
4399     assert(!PL_op->op_targ); /* used to be set for lexical $_ */
4400     GvSV(PL_defgv) = SvREFCNT_inc(newsv);
4401
4402     PUSHBLOCK(cx, CXt_GIVEN, SP);
4403     PUSHGIVEN(cx, origsv);
4404
4405     RETURN;
4406 }
4407
4408 PP(pp_leavegiven)
4409 {
4410     PERL_CONTEXT *cx;
4411     I32 gimme;
4412     SV **newsp;
4413     PERL_UNUSED_CONTEXT;
4414
4415     cx = &cxstack[cxstack_ix];
4416     assert(CxTYPE(cx) == CXt_GIVEN);
4417     newsp = PL_stack_base + cx->blk_oldsp;
4418     gimme = cx->blk_gimme;
4419
4420     if (gimme == G_VOID)
4421         PL_stack_sp = newsp;
4422     else
4423         leave_common(newsp, newsp, gimme, SVs_PADTMP|SVs_TEMP, FALSE);
4424
4425     CX_LEAVE_SCOPE(cx);
4426     POPGIVEN(cx);
4427     POPBLOCK(cx);
4428     CX_POP(cx);
4429
4430     return NORMAL;
4431 }
4432
4433 /* Helper routines used by pp_smartmatch */
4434 STATIC PMOP *
4435 S_make_matcher(pTHX_ REGEXP *re)
4436 {
4437     PMOP *matcher = (PMOP *) newPMOP(OP_MATCH, OPf_WANT_SCALAR | OPf_STACKED);
4438
4439     PERL_ARGS_ASSERT_MAKE_MATCHER;
4440
4441     PM_SETRE(matcher, ReREFCNT_inc(re));
4442
4443     SAVEFREEOP((OP *) matcher);
4444     ENTER_with_name("matcher"); SAVETMPS;
4445     SAVEOP();
4446     return matcher;
4447 }
4448
4449 STATIC bool
4450 S_matcher_matches_sv(pTHX_ PMOP *matcher, SV *sv)
4451 {
4452     dSP;
4453     bool result;
4454
4455     PERL_ARGS_ASSERT_MATCHER_MATCHES_SV;
4456     
4457     PL_op = (OP *) matcher;
4458     XPUSHs(sv);
4459     PUTBACK;
4460     (void) Perl_pp_match(aTHX);
4461     SPAGAIN;
4462     result = SvTRUEx(POPs);
4463     PUTBACK;
4464
4465     return result;
4466 }
4467
4468 STATIC void
4469 S_destroy_matcher(pTHX_ PMOP *matcher)
4470 {
4471     PERL_ARGS_ASSERT_DESTROY_MATCHER;
4472     PERL_UNUSED_ARG(matcher);
4473
4474     FREETMPS;
4475     LEAVE_with_name("matcher");
4476 }
4477
4478 /* Do a smart match */
4479 PP(pp_smartmatch)
4480 {
4481     DEBUG_M(Perl_deb(aTHX_ "Starting smart match resolution\n"));
4482     return do_smartmatch(NULL, NULL, 0);
44