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