Upgrade to Test::Simple 0.60
[p5sagit/p5-mst-13.2.git] / pp_ctl.c
1 /*    pp_ctl.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, 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
20 /* This file contains control-oriented pp ("push/pop") functions that
21  * execute the opcodes that make up a perl program. A typical pp function
22  * expects to find its arguments on the stack, and usually pushes its
23  * results onto the stack, hence the 'pp' terminology. Each OP structure
24  * contains a pointer to the relevant pp_foo() function.
25  *
26  * Control-oriented means things like pp_enteriter() and pp_next(), which
27  * alter the flow of control of the program.
28  */
29
30
31 #include "EXTERN.h"
32 #define PERL_IN_PP_CTL_C
33 #include "perl.h"
34
35 #ifndef WORD_ALIGN
36 #define WORD_ALIGN sizeof(U32)
37 #endif
38
39 #define DOCATCH(o) ((CATCH_GET == TRUE) ? docatch(o) : (o))
40
41 static I32 run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen);
42
43 PP(pp_wantarray)
44 {
45     dSP;
46     I32 cxix;
47     EXTEND(SP, 1);
48
49     cxix = dopoptosub(cxstack_ix);
50     if (cxix < 0)
51         RETPUSHUNDEF;
52
53     switch (cxstack[cxix].blk_gimme) {
54     case G_ARRAY:
55         RETPUSHYES;
56     case G_SCALAR:
57         RETPUSHNO;
58     default:
59         RETPUSHUNDEF;
60     }
61 }
62
63 PP(pp_regcmaybe)
64 {
65     return NORMAL;
66 }
67
68 PP(pp_regcreset)
69 {
70     /* XXXX Should store the old value to allow for tie/overload - and
71        restore in regcomp, where marked with XXXX. */
72     PL_reginterp_cnt = 0;
73     TAINT_NOT;
74     return NORMAL;
75 }
76
77 PP(pp_regcomp)
78 {
79     dSP;
80     register PMOP *pm = (PMOP*)cLOGOP->op_other;
81     register char *t;
82     SV *tmpstr;
83     STRLEN len;
84     MAGIC *mg = Null(MAGIC*);
85
86     /* prevent recompiling under /o and ithreads. */
87 #if defined(USE_ITHREADS)
88     if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) {
89         if (PL_op->op_flags & OPf_STACKED) {
90             dMARK;
91             SP = MARK;
92         }
93         else
94             (void)POPs;
95         RETURN;
96     }
97 #endif
98     if (PL_op->op_flags & OPf_STACKED) {
99         /* multiple args; concatentate them */
100         dMARK; dORIGMARK;
101         tmpstr = PAD_SV(ARGTARG);
102         sv_setpvn(tmpstr, "", 0);
103         while (++MARK <= SP) {
104             if (PL_amagic_generation) {
105                 SV *sv;
106                 if ((SvAMAGIC(tmpstr) || SvAMAGIC(*MARK)) &&
107                     (sv = amagic_call(tmpstr, *MARK, concat_amg, AMGf_assign)))
108                 {
109                    sv_setsv(tmpstr, sv);
110                    continue;
111                 }
112             }
113             sv_catsv(tmpstr, *MARK);
114         }
115         SvSETMAGIC(tmpstr);
116         SP = ORIGMARK;
117     }
118     else
119         tmpstr = POPs;
120
121     if (SvROK(tmpstr)) {
122         SV *sv = SvRV(tmpstr);
123         if(SvMAGICAL(sv))
124             mg = mg_find(sv, PERL_MAGIC_qr);
125     }
126     if (mg) {
127         regexp *re = (regexp *)mg->mg_obj;
128         ReREFCNT_dec(PM_GETRE(pm));
129         PM_SETRE(pm, ReREFCNT_inc(re));
130     }
131     else {
132         t = SvPV(tmpstr, len);
133
134         /* Check against the last compiled regexp. */
135         if (!PM_GETRE(pm) || !PM_GETRE(pm)->precomp ||
136             PM_GETRE(pm)->prelen != (I32)len ||
137             memNE(PM_GETRE(pm)->precomp, t, len))
138         {
139             if (PM_GETRE(pm)) {
140                 ReREFCNT_dec(PM_GETRE(pm));
141                 PM_SETRE(pm, Null(REGEXP*));    /* crucial if regcomp aborts */
142             }
143             if (PL_op->op_flags & OPf_SPECIAL)
144                 PL_reginterp_cnt = I32_MAX; /* Mark as safe.  */
145
146             pm->op_pmflags = pm->op_pmpermflags;        /* reset case sensitivity */
147             if (DO_UTF8(tmpstr))
148                 pm->op_pmdynflags |= PMdf_DYN_UTF8;
149             else {
150                 pm->op_pmdynflags &= ~PMdf_DYN_UTF8;
151                 if (pm->op_pmdynflags & PMdf_UTF8)
152                     t = (char*)bytes_to_utf8((U8*)t, &len);
153             }
154             PM_SETRE(pm, CALLREGCOMP(aTHX_ t, t + len, pm));
155             if (!DO_UTF8(tmpstr) && (pm->op_pmdynflags & PMdf_UTF8))
156                 Safefree(t);
157             PL_reginterp_cnt = 0;       /* XXXX Be extra paranoid - needed
158                                            inside tie/overload accessors.  */
159         }
160     }
161
162 #ifndef INCOMPLETE_TAINTS
163     if (PL_tainting) {
164         if (PL_tainted)
165             pm->op_pmdynflags |= PMdf_TAINTED;
166         else
167             pm->op_pmdynflags &= ~PMdf_TAINTED;
168     }
169 #endif
170
171     if (!PM_GETRE(pm)->prelen && PL_curpm)
172         pm = PL_curpm;
173     else if (strEQ("\\s+", PM_GETRE(pm)->precomp))
174         pm->op_pmflags |= PMf_WHITE;
175     else
176         pm->op_pmflags &= ~PMf_WHITE;
177
178     /* XXX runtime compiled output needs to move to the pad */
179     if (pm->op_pmflags & PMf_KEEP) {
180         pm->op_private &= ~OPpRUNTIME;  /* no point compiling again */
181 #if !defined(USE_ITHREADS)
182         /* XXX can't change the optree at runtime either */
183         cLOGOP->op_first->op_next = PL_op->op_next;
184 #endif
185     }
186     RETURN;
187 }
188
189 PP(pp_substcont)
190 {
191     dSP;
192     register PMOP *pm = (PMOP*) cLOGOP->op_other;
193     register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
194     register SV *dstr = cx->sb_dstr;
195     register char *s = cx->sb_s;
196     register char *m = cx->sb_m;
197     char *orig = cx->sb_orig;
198     register REGEXP *rx = cx->sb_rx;
199     SV *nsv = Nullsv;
200     REGEXP *old = PM_GETRE(pm);
201     if(old != rx) {
202         if(old)
203             ReREFCNT_dec(old);
204         PM_SETRE(pm,rx);
205     }
206
207     rxres_restore(&cx->sb_rxres, rx);
208     RX_MATCH_UTF8_set(rx, SvUTF8(cx->sb_targ));
209
210     if (cx->sb_iters++) {
211         I32 saviters = cx->sb_iters;
212         if (cx->sb_iters > cx->sb_maxiters)
213             DIE(aTHX_ "Substitution loop");
214
215         if (!(cx->sb_rxtainted & 2) && SvTAINTED(TOPs))
216             cx->sb_rxtainted |= 2;
217         sv_catsv(dstr, POPs);
218
219         /* Are we done */
220         if (cx->sb_once || !CALLREGEXEC(aTHX_ rx, s, cx->sb_strend, orig,
221                                      s == m, cx->sb_targ, NULL,
222                                      ((cx->sb_rflags & REXEC_COPY_STR)
223                                       ? (REXEC_IGNOREPOS|REXEC_NOT_FIRST)
224                                       : (REXEC_COPY_STR|REXEC_IGNOREPOS|REXEC_NOT_FIRST))))
225         {
226             SV *targ = cx->sb_targ;
227
228             assert(cx->sb_strend >= s);
229             if(cx->sb_strend > s) {
230                  if (DO_UTF8(dstr) && !SvUTF8(targ))
231                       sv_catpvn_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv);
232                  else
233                       sv_catpvn(dstr, s, cx->sb_strend - s);
234             }
235             cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
236
237 #ifdef PERL_COPY_ON_WRITE
238             if (SvIsCOW(targ)) {
239                 sv_force_normal_flags(targ, SV_COW_DROP_PV);
240             } else
241 #endif
242             {
243                 SvPV_free(targ);
244             }
245             SvPV_set(targ, SvPVX(dstr));
246             SvCUR_set(targ, SvCUR(dstr));
247             SvLEN_set(targ, SvLEN(dstr));
248             if (DO_UTF8(dstr))
249                 SvUTF8_on(targ);
250             SvPV_set(dstr, (char*)0);
251             sv_free(dstr);
252
253             TAINT_IF(cx->sb_rxtainted & 1);
254             PUSHs(sv_2mortal(newSViv(saviters - 1)));
255
256             (void)SvPOK_only_UTF8(targ);
257             TAINT_IF(cx->sb_rxtainted);
258             SvSETMAGIC(targ);
259             SvTAINT(targ);
260
261             LEAVE_SCOPE(cx->sb_oldsave);
262             ReREFCNT_dec(rx);
263             POPSUBST(cx);
264             RETURNOP(pm->op_next);
265         }
266         cx->sb_iters = saviters;
267     }
268     if (RX_MATCH_COPIED(rx) && rx->subbeg != orig) {
269         m = s;
270         s = orig;
271         cx->sb_orig = orig = rx->subbeg;
272         s = orig + (m - s);
273         cx->sb_strend = s + (cx->sb_strend - m);
274     }
275     cx->sb_m = m = rx->startp[0] + orig;
276     if (m > s) {
277         if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ))
278             sv_catpvn_utf8_upgrade(dstr, s, m - s, nsv);
279         else
280             sv_catpvn(dstr, s, m-s);
281     }
282     cx->sb_s = rx->endp[0] + orig;
283     { /* Update the pos() information. */
284         SV *sv = cx->sb_targ;
285         MAGIC *mg;
286         I32 i;
287         if (SvTYPE(sv) < SVt_PVMG)
288             (void)SvUPGRADE(sv, SVt_PVMG);
289         if (!(mg = mg_find(sv, PERL_MAGIC_regex_global))) {
290             sv_magic(sv, Nullsv, PERL_MAGIC_regex_global, Nullch, 0);
291             mg = mg_find(sv, PERL_MAGIC_regex_global);
292         }
293         i = m - orig;
294         if (DO_UTF8(sv))
295             sv_pos_b2u(sv, &i);
296         mg->mg_len = i;
297     }
298     if (old != rx)
299         ReREFCNT_inc(rx);
300     cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
301     rxres_save(&cx->sb_rxres, rx);
302     RETURNOP(pm->op_pmreplstart);
303 }
304
305 void
306 Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx)
307 {
308     UV *p = (UV*)*rsp;
309     U32 i;
310
311     if (!p || p[1] < rx->nparens) {
312 #ifdef PERL_COPY_ON_WRITE
313         i = 7 + rx->nparens * 2;
314 #else
315         i = 6 + rx->nparens * 2;
316 #endif
317         if (!p)
318             New(501, p, i, UV);
319         else
320             Renew(p, i, UV);
321         *rsp = (void*)p;
322     }
323
324     *p++ = PTR2UV(RX_MATCH_COPIED(rx) ? rx->subbeg : Nullch);
325     RX_MATCH_COPIED_off(rx);
326
327 #ifdef PERL_COPY_ON_WRITE
328     *p++ = PTR2UV(rx->saved_copy);
329     rx->saved_copy = Nullsv;
330 #endif
331
332     *p++ = rx->nparens;
333
334     *p++ = PTR2UV(rx->subbeg);
335     *p++ = (UV)rx->sublen;
336     for (i = 0; i <= rx->nparens; ++i) {
337         *p++ = (UV)rx->startp[i];
338         *p++ = (UV)rx->endp[i];
339     }
340 }
341
342 void
343 Perl_rxres_restore(pTHX_ void **rsp, REGEXP *rx)
344 {
345     UV *p = (UV*)*rsp;
346     U32 i;
347
348     RX_MATCH_COPY_FREE(rx);
349     RX_MATCH_COPIED_set(rx, *p);
350     *p++ = 0;
351
352 #ifdef PERL_COPY_ON_WRITE
353     if (rx->saved_copy)
354         SvREFCNT_dec (rx->saved_copy);
355     rx->saved_copy = INT2PTR(SV*,*p);
356     *p++ = 0;
357 #endif
358
359     rx->nparens = *p++;
360
361     rx->subbeg = INT2PTR(char*,*p++);
362     rx->sublen = (I32)(*p++);
363     for (i = 0; i <= rx->nparens; ++i) {
364         rx->startp[i] = (I32)(*p++);
365         rx->endp[i] = (I32)(*p++);
366     }
367 }
368
369 void
370 Perl_rxres_free(pTHX_ void **rsp)
371 {
372     UV *p = (UV*)*rsp;
373
374     if (p) {
375         Safefree(INT2PTR(char*,*p));
376 #ifdef PERL_COPY_ON_WRITE
377         if (p[1]) {
378             SvREFCNT_dec (INT2PTR(SV*,p[1]));
379         }
380 #endif
381         Safefree(p);
382         *rsp = Null(void*);
383     }
384 }
385
386 PP(pp_formline)
387 {
388     dSP; dMARK; dORIGMARK;
389     register SV *tmpForm = *++MARK;
390     register U32 *fpc;
391     register char *t;
392     register char *f;
393     register char *s;
394     register char *send;
395     register I32 arg;
396     register SV *sv = Nullsv;
397     char *item = Nullch;
398     I32 itemsize  = 0;
399     I32 fieldsize = 0;
400     I32 lines = 0;
401     bool chopspace = (strchr(PL_chopset, ' ') != Nullch);
402     char *chophere = Nullch;
403     char *linemark = Nullch;
404     NV value;
405     bool gotsome = FALSE;
406     STRLEN len;
407     STRLEN fudge = SvPOK(tmpForm)
408                         ? (SvCUR(tmpForm) * (IN_BYTES ? 1 : 3) + 1) : 0;
409     bool item_is_utf8 = FALSE;
410     bool targ_is_utf8 = FALSE;
411     SV * nsv = Nullsv;
412     OP * parseres = 0;
413     const char *fmt;
414     bool oneline;
415
416     if (!SvMAGICAL(tmpForm) || !SvCOMPILED(tmpForm)) {
417         if (SvREADONLY(tmpForm)) {
418             SvREADONLY_off(tmpForm);
419             parseres = doparseform(tmpForm);
420             SvREADONLY_on(tmpForm);
421         }
422         else
423             parseres = doparseform(tmpForm);
424         if (parseres)
425             return parseres;
426     }
427     SvPV_force(PL_formtarget, len);
428     if (DO_UTF8(PL_formtarget))
429         targ_is_utf8 = TRUE;
430     t = SvGROW(PL_formtarget, len + fudge + 1);  /* XXX SvCUR bad */
431     t += len;
432     f = SvPV(tmpForm, len);
433     /* need to jump to the next word */
434     s = f + len + WORD_ALIGN - SvCUR(tmpForm) % WORD_ALIGN;
435
436     fpc = (U32*)s;
437
438     for (;;) {
439         DEBUG_f( {
440             const char *name = "???";
441             arg = -1;
442             switch (*fpc) {
443             case FF_LITERAL:    arg = fpc[1]; name = "LITERAL"; break;
444             case FF_BLANK:      arg = fpc[1]; name = "BLANK";   break;
445             case FF_SKIP:       arg = fpc[1]; name = "SKIP";    break;
446             case FF_FETCH:      arg = fpc[1]; name = "FETCH";   break;
447             case FF_DECIMAL:    arg = fpc[1]; name = "DECIMAL"; break;
448
449             case FF_CHECKNL:    name = "CHECKNL";       break;
450             case FF_CHECKCHOP:  name = "CHECKCHOP";     break;
451             case FF_SPACE:      name = "SPACE";         break;
452             case FF_HALFSPACE:  name = "HALFSPACE";     break;
453             case FF_ITEM:       name = "ITEM";          break;
454             case FF_CHOP:       name = "CHOP";          break;
455             case FF_LINEGLOB:   name = "LINEGLOB";      break;
456             case FF_NEWLINE:    name = "NEWLINE";       break;
457             case FF_MORE:       name = "MORE";          break;
458             case FF_LINEMARK:   name = "LINEMARK";      break;
459             case FF_END:        name = "END";           break;
460             case FF_0DECIMAL:   name = "0DECIMAL";      break;
461             case FF_LINESNGL:   name = "LINESNGL";      break;
462             }
463             if (arg >= 0)
464                 PerlIO_printf(Perl_debug_log, "%-16s%ld\n", name, (long) arg);
465             else
466                 PerlIO_printf(Perl_debug_log, "%-16s\n", name);
467         } );
468         switch (*fpc++) {
469         case FF_LINEMARK:
470             linemark = t;
471             lines++;
472             gotsome = FALSE;
473             break;
474
475         case FF_LITERAL:
476             arg = *fpc++;
477             if (targ_is_utf8 && !SvUTF8(tmpForm)) {
478                 SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
479                 *t = '\0';
480                 sv_catpvn_utf8_upgrade(PL_formtarget, f, arg, nsv);
481                 t = SvEND(PL_formtarget);
482                 break;
483             }
484             if (!targ_is_utf8 && DO_UTF8(tmpForm)) {
485                 SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
486                 *t = '\0';
487                 sv_utf8_upgrade(PL_formtarget);
488                 SvGROW(PL_formtarget, SvCUR(PL_formtarget) + fudge + 1);
489                 t = SvEND(PL_formtarget);
490                 targ_is_utf8 = TRUE;
491             }
492             while (arg--)
493                 *t++ = *f++;
494             break;
495
496         case FF_SKIP:
497             f += *fpc++;
498             break;
499
500         case FF_FETCH:
501             arg = *fpc++;
502             f += arg;
503             fieldsize = arg;
504
505             if (MARK < SP)
506                 sv = *++MARK;
507             else {
508                 sv = &PL_sv_no;
509                 if (ckWARN(WARN_SYNTAX))
510                     Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Not enough format arguments");
511             }
512             break;
513
514         case FF_CHECKNL:
515             item = s = SvPV(sv, len);
516             itemsize = len;
517             if (DO_UTF8(sv)) {
518                 itemsize = sv_len_utf8(sv);
519                 if (itemsize != (I32)len) {
520                     I32 itembytes;
521                     if (itemsize > fieldsize) {
522                         itemsize = fieldsize;
523                         itembytes = itemsize;
524                         sv_pos_u2b(sv, &itembytes, 0);
525                     }
526                     else
527                         itembytes = len;
528                     send = chophere = s + itembytes;
529                     while (s < send) {
530                         if (*s & ~31)
531                             gotsome = TRUE;
532                         else if (*s == '\n')
533                             break;
534                         s++;
535                     }
536                     item_is_utf8 = TRUE;
537                     itemsize = s - item;
538                     sv_pos_b2u(sv, &itemsize);
539                     break;
540                 }
541             }
542             item_is_utf8 = FALSE;
543             if (itemsize > fieldsize)
544                 itemsize = fieldsize;
545             send = chophere = s + itemsize;
546             while (s < send) {
547                 if (*s & ~31)
548                     gotsome = TRUE;
549                 else if (*s == '\n')
550                     break;
551                 s++;
552             }
553             itemsize = s - item;
554             break;
555
556         case FF_CHECKCHOP:
557             item = s = SvPV(sv, len);
558             itemsize = len;
559             if (DO_UTF8(sv)) {
560                 itemsize = sv_len_utf8(sv);
561                 if (itemsize != (I32)len) {
562                     I32 itembytes;
563                     if (itemsize <= fieldsize) {
564                         send = chophere = s + itemsize;
565                         while (s < send) {
566                             if (*s == '\r') {
567                                 itemsize = s - item;
568                                 chophere = s;
569                                 break;
570                             }
571                             if (*s++ & ~31)
572                                 gotsome = TRUE;
573                         }
574                     }
575                     else {
576                         itemsize = fieldsize;
577                         itembytes = itemsize;
578                         sv_pos_u2b(sv, &itembytes, 0);
579                         send = chophere = s + itembytes;
580                         while (s < send || (s == send && isSPACE(*s))) {
581                             if (isSPACE(*s)) {
582                                 if (chopspace)
583                                     chophere = s;
584                                 if (*s == '\r')
585                                     break;
586                             }
587                             else {
588                                 if (*s & ~31)
589                                     gotsome = TRUE;
590                                 if (strchr(PL_chopset, *s))
591                                     chophere = s + 1;
592                             }
593                             s++;
594                         }
595                         itemsize = chophere - item;
596                         sv_pos_b2u(sv, &itemsize);
597                     }
598                     item_is_utf8 = TRUE;
599                     break;
600                 }
601             }
602             item_is_utf8 = FALSE;
603             if (itemsize <= fieldsize) {
604                 send = chophere = s + itemsize;
605                 while (s < send) {
606                     if (*s == '\r') {
607                         itemsize = s - item;
608                         chophere = s;
609                         break;
610                     }
611                     if (*s++ & ~31)
612                         gotsome = TRUE;
613                 }
614             }
615             else {
616                 itemsize = fieldsize;
617                 send = chophere = s + itemsize;
618                 while (s < send || (s == send && isSPACE(*s))) {
619                     if (isSPACE(*s)) {
620                         if (chopspace)
621                             chophere = s;
622                         if (*s == '\r')
623                             break;
624                     }
625                     else {
626                         if (*s & ~31)
627                             gotsome = TRUE;
628                         if (strchr(PL_chopset, *s))
629                             chophere = s + 1;
630                     }
631                     s++;
632                 }
633                 itemsize = chophere - item;
634             }
635             break;
636
637         case FF_SPACE:
638             arg = fieldsize - itemsize;
639             if (arg) {
640                 fieldsize -= arg;
641                 while (arg-- > 0)
642                     *t++ = ' ';
643             }
644             break;
645
646         case FF_HALFSPACE:
647             arg = fieldsize - itemsize;
648             if (arg) {
649                 arg /= 2;
650                 fieldsize -= arg;
651                 while (arg-- > 0)
652                     *t++ = ' ';
653             }
654             break;
655
656         case FF_ITEM:
657             arg = itemsize;
658             s = item;
659             if (item_is_utf8) {
660                 if (!targ_is_utf8) {
661                     SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
662                     *t = '\0';
663                     sv_utf8_upgrade(PL_formtarget);
664                     SvGROW(PL_formtarget, SvCUR(PL_formtarget) + fudge + 1);
665                     t = SvEND(PL_formtarget);
666                     targ_is_utf8 = TRUE;
667                 }
668                 while (arg--) {
669                     if (UTF8_IS_CONTINUED(*s)) {
670                         STRLEN skip = UTF8SKIP(s);
671                         switch (skip) {
672                         default:
673                             Move(s,t,skip,char);
674                             s += skip;
675                             t += skip;
676                             break;
677                         case 7: *t++ = *s++;
678                         case 6: *t++ = *s++;
679                         case 5: *t++ = *s++;
680                         case 4: *t++ = *s++;
681                         case 3: *t++ = *s++;
682                         case 2: *t++ = *s++;
683                         case 1: *t++ = *s++;
684                         }
685                     }
686                     else {
687                         if ( !((*t++ = *s++) & ~31) )
688                             t[-1] = ' ';
689                     }
690                 }
691                 break;
692             }
693             if (targ_is_utf8 && !item_is_utf8) {
694                 SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
695                 *t = '\0';
696                 sv_catpvn_utf8_upgrade(PL_formtarget, s, arg, nsv);
697                 for (; t < SvEND(PL_formtarget); t++) {
698 #ifdef EBCDIC
699                     int ch = *t;
700                     if (iscntrl(ch))
701 #else
702                     if (!(*t & ~31))
703 #endif
704                         *t = ' ';
705                 }
706                 break;
707             }
708             while (arg--) {
709 #ifdef EBCDIC
710                 int ch = *t++ = *s++;
711                 if (iscntrl(ch))
712 #else
713                 if ( !((*t++ = *s++) & ~31) )
714 #endif
715                     t[-1] = ' ';
716             }
717             break;
718
719         case FF_CHOP:
720             s = chophere;
721             if (chopspace) {
722                 while (*s && isSPACE(*s))
723                     s++;
724             }
725             sv_chop(sv,s);
726             SvSETMAGIC(sv);
727             break;
728
729         case FF_LINESNGL:
730             chopspace = 0;
731             oneline = TRUE;
732             goto ff_line;
733         case FF_LINEGLOB:
734             oneline = FALSE;
735         ff_line:
736             item = s = SvPV(sv, len);
737             itemsize = len;
738             if ((item_is_utf8 = DO_UTF8(sv)))
739                 itemsize = sv_len_utf8(sv);
740             if (itemsize) {
741                 bool chopped = FALSE;
742                 gotsome = TRUE;
743                 send = s + len;
744                 chophere = s + itemsize;
745                 while (s < send) {
746                     if (*s++ == '\n') {
747                         if (oneline) {
748                             chopped = TRUE;
749                             chophere = s;
750                             break;
751                         } else {
752                             if (s == send) {
753                                 itemsize--;
754                                 chopped = TRUE;
755                             } else
756                                 lines++;
757                         }
758                     }
759                 }
760                 SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
761                 if (targ_is_utf8)
762                     SvUTF8_on(PL_formtarget);
763                 if (oneline) {
764                     SvCUR_set(sv, chophere - item);
765                     sv_catsv(PL_formtarget, sv);
766                     SvCUR_set(sv, itemsize);
767                 } else
768                     sv_catsv(PL_formtarget, sv);
769                 if (chopped)
770                     SvCUR_set(PL_formtarget, SvCUR(PL_formtarget) - 1);
771                 SvGROW(PL_formtarget, SvCUR(PL_formtarget) + fudge + 1);
772                 t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget);
773                 if (item_is_utf8)
774                     targ_is_utf8 = TRUE;
775             }
776             break;
777
778         case FF_0DECIMAL:
779             arg = *fpc++;
780 #if defined(USE_LONG_DOUBLE)
781             fmt = (arg & 256) ? "%#0*.*" PERL_PRIfldbl : "%0*.*" PERL_PRIfldbl;
782 #else
783             fmt = (arg & 256) ? "%#0*.*f"              : "%0*.*f";
784 #endif
785             goto ff_dec;
786         case FF_DECIMAL:
787             arg = *fpc++;
788 #if defined(USE_LONG_DOUBLE)
789             fmt = (arg & 256) ? "%#*.*" PERL_PRIfldbl : "%*.*" PERL_PRIfldbl;
790 #else
791             fmt = (arg & 256) ? "%#*.*f"              : "%*.*f";
792 #endif
793         ff_dec:
794             /* If the field is marked with ^ and the value is undefined,
795                blank it out. */
796             if ((arg & 512) && !SvOK(sv)) {
797                 arg = fieldsize;
798                 while (arg--)
799                     *t++ = ' ';
800                 break;
801             }
802             gotsome = TRUE;
803             value = SvNV(sv);
804             /* overflow evidence */
805             if (num_overflow(value, fieldsize, arg)) {
806                 arg = fieldsize;
807                 while (arg--)
808                     *t++ = '#';
809                 break;
810             }
811             /* Formats aren't yet marked for locales, so assume "yes". */
812             {
813                 STORE_NUMERIC_STANDARD_SET_LOCAL();
814                 sprintf(t, fmt, (int) fieldsize, (int) arg & 255, value);
815                 RESTORE_NUMERIC_STANDARD();
816             }
817             t += fieldsize;
818             break;
819
820         case FF_NEWLINE:
821             f++;
822             while (t-- > linemark && *t == ' ') ;
823             t++;
824             *t++ = '\n';
825             break;
826
827         case FF_BLANK:
828             arg = *fpc++;
829             if (gotsome) {
830                 if (arg) {              /* repeat until fields exhausted? */
831                     *t = '\0';
832                     SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
833                     lines += FmLINES(PL_formtarget);
834                     if (lines == 200) {
835                         arg = t - linemark;
836                         if (strnEQ(linemark, linemark - arg, arg))
837                             DIE(aTHX_ "Runaway format");
838                     }
839                     if (targ_is_utf8)
840                         SvUTF8_on(PL_formtarget);
841                     FmLINES(PL_formtarget) = lines;
842                     SP = ORIGMARK;
843                     RETURNOP(cLISTOP->op_first);
844                 }
845             }
846             else {
847                 t = linemark;
848                 lines--;
849             }
850             break;
851
852         case FF_MORE:
853             s = chophere;
854             send = item + len;
855             if (chopspace) {
856                 while (*s && isSPACE(*s) && s < send)
857                     s++;
858             }
859             if (s < send) {
860                 arg = fieldsize - itemsize;
861                 if (arg) {
862                     fieldsize -= arg;
863                     while (arg-- > 0)
864                         *t++ = ' ';
865                 }
866                 s = t - 3;
867                 if (strnEQ(s,"   ",3)) {
868                     while (s > SvPVX(PL_formtarget) && isSPACE(s[-1]))
869                         s--;
870                 }
871                 *s++ = '.';
872                 *s++ = '.';
873                 *s++ = '.';
874             }
875             break;
876
877         case FF_END:
878             *t = '\0';
879             SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
880             if (targ_is_utf8)
881                 SvUTF8_on(PL_formtarget);
882             FmLINES(PL_formtarget) += lines;
883             SP = ORIGMARK;
884             RETPUSHYES;
885         }
886     }
887 }
888
889 PP(pp_grepstart)
890 {
891     dVAR; dSP;
892     SV *src;
893
894     if (PL_stack_base + *PL_markstack_ptr == SP) {
895         (void)POPMARK;
896         if (GIMME_V == G_SCALAR)
897             XPUSHs(sv_2mortal(newSViv(0)));
898         RETURNOP(PL_op->op_next->op_next);
899     }
900     PL_stack_sp = PL_stack_base + *PL_markstack_ptr + 1;
901     pp_pushmark();                              /* push dst */
902     pp_pushmark();                              /* push src */
903     ENTER;                                      /* enter outer scope */
904
905     SAVETMPS;
906     if (PL_op->op_private & OPpGREP_LEX)
907         SAVESPTR(PAD_SVl(PL_op->op_targ));
908     else
909         SAVE_DEFSV;
910     ENTER;                                      /* enter inner scope */
911     SAVEVPTR(PL_curpm);
912
913     src = PL_stack_base[*PL_markstack_ptr];
914     SvTEMP_off(src);
915     if (PL_op->op_private & OPpGREP_LEX)
916         PAD_SVl(PL_op->op_targ) = src;
917     else
918         DEFSV = src;
919
920     PUTBACK;
921     if (PL_op->op_type == OP_MAPSTART)
922         pp_pushmark();                  /* push top */
923     return ((LOGOP*)PL_op->op_next)->op_other;
924 }
925
926 PP(pp_mapstart)
927 {
928     DIE(aTHX_ "panic: mapstart");       /* uses grepstart */
929 }
930
931 PP(pp_mapwhile)
932 {
933     dVAR; dSP;
934     I32 gimme = GIMME_V;
935     I32 items = (SP - PL_stack_base) - *PL_markstack_ptr; /* how many new items */
936     I32 count;
937     I32 shift;
938     SV** src;
939     SV** dst;
940
941     /* first, move source pointer to the next item in the source list */
942     ++PL_markstack_ptr[-1];
943
944     /* if there are new items, push them into the destination list */
945     if (items && gimme != G_VOID) {
946         /* might need to make room back there first */
947         if (items > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) {
948             /* XXX this implementation is very pessimal because the stack
949              * is repeatedly extended for every set of items.  Is possible
950              * to do this without any stack extension or copying at all
951              * by maintaining a separate list over which the map iterates
952              * (like foreach does). --gsar */
953
954             /* everything in the stack after the destination list moves
955              * towards the end the stack by the amount of room needed */
956             shift = items - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]);
957
958             /* items to shift up (accounting for the moved source pointer) */
959             count = (SP - PL_stack_base) - (PL_markstack_ptr[-1] - 1);
960
961             /* This optimization is by Ben Tilly and it does
962              * things differently from what Sarathy (gsar)
963              * is describing.  The downside of this optimization is
964              * that leaves "holes" (uninitialized and hopefully unused areas)
965              * to the Perl stack, but on the other hand this
966              * shouldn't be a problem.  If Sarathy's idea gets
967              * implemented, this optimization should become
968              * irrelevant.  --jhi */
969             if (shift < count)
970                 shift = count; /* Avoid shifting too often --Ben Tilly */
971
972             EXTEND(SP,shift);
973             src = SP;
974             dst = (SP += shift);
975             PL_markstack_ptr[-1] += shift;
976             *PL_markstack_ptr += shift;
977             while (count--)
978                 *dst-- = *src--;
979         }
980         /* copy the new items down to the destination list */
981         dst = PL_stack_base + (PL_markstack_ptr[-2] += items) - 1;
982         if (gimme == G_ARRAY) {
983             while (items-- > 0)
984                 *dst-- = SvTEMP(TOPs) ? POPs : sv_mortalcopy(POPs);
985         }
986         else {
987             /* scalar context: we don't care about which values map returns
988              * (we use undef here). And so we certainly don't want to do mortal
989              * copies of meaningless values. */
990             while (items-- > 0) {
991                 (void)POPs;
992                 *dst-- = &PL_sv_undef;
993             }
994         }
995     }
996     LEAVE;                                      /* exit inner scope */
997
998     /* All done yet? */
999     if (PL_markstack_ptr[-1] > *PL_markstack_ptr) {
1000
1001         (void)POPMARK;                          /* pop top */
1002         LEAVE;                                  /* exit outer scope */
1003         (void)POPMARK;                          /* pop src */
1004         items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
1005         (void)POPMARK;                          /* pop dst */
1006         SP = PL_stack_base + POPMARK;           /* pop original mark */
1007         if (gimme == G_SCALAR) {
1008             if (PL_op->op_private & OPpGREP_LEX) {
1009                 SV* sv = sv_newmortal();
1010                 sv_setiv(sv, items);
1011                 PUSHs(sv);
1012             }
1013             else {
1014                 dTARGET;
1015                 XPUSHi(items);
1016             }
1017         }
1018         else if (gimme == G_ARRAY)
1019             SP += items;
1020         RETURN;
1021     }
1022     else {
1023         SV *src;
1024
1025         ENTER;                                  /* enter inner scope */
1026         SAVEVPTR(PL_curpm);
1027
1028         /* set $_ to the new source item */
1029         src = PL_stack_base[PL_markstack_ptr[-1]];
1030         SvTEMP_off(src);
1031         if (PL_op->op_private & OPpGREP_LEX)
1032             PAD_SVl(PL_op->op_targ) = src;
1033         else
1034             DEFSV = src;
1035
1036         RETURNOP(cLOGOP->op_other);
1037     }
1038 }
1039
1040 /* Range stuff. */
1041
1042 PP(pp_range)
1043 {
1044     if (GIMME == G_ARRAY)
1045         return NORMAL;
1046     if (SvTRUEx(PAD_SV(PL_op->op_targ)))
1047         return cLOGOP->op_other;
1048     else
1049         return NORMAL;
1050 }
1051
1052 PP(pp_flip)
1053 {
1054     dSP;
1055
1056     if (GIMME == G_ARRAY) {
1057         RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
1058     }
1059     else {
1060         dTOPss;
1061         SV *targ = PAD_SV(PL_op->op_targ);
1062         int flip = 0;
1063
1064         if (PL_op->op_private & OPpFLIP_LINENUM) {
1065             if (GvIO(PL_last_in_gv)) {
1066                 flip = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1067             }
1068             else {
1069                 GV *gv = gv_fetchpv(".", TRUE, SVt_PV);
1070                 if (gv && GvSV(gv)) flip = SvIV(sv) == SvIV(GvSV(gv));
1071             }
1072         } else {
1073             flip = SvTRUE(sv);
1074         }
1075         if (flip) {
1076             sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
1077             if (PL_op->op_flags & OPf_SPECIAL) {
1078                 sv_setiv(targ, 1);
1079                 SETs(targ);
1080                 RETURN;
1081             }
1082             else {
1083                 sv_setiv(targ, 0);
1084                 SP--;
1085                 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
1086             }
1087         }
1088         sv_setpv(TARG, "");
1089         SETs(targ);
1090         RETURN;
1091     }
1092 }
1093
1094 /* This code tries to decide if "$left .. $right" should use the
1095    magical string increment, or if the range is numeric (we make
1096    an exception for .."0" [#18165]). AMS 20021031. */
1097
1098 #define RANGE_IS_NUMERIC(left,right) ( \
1099         SvNIOKp(left)  || (SvOK(left)  && !SvPOKp(left))  || \
1100         SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \
1101         (((!SvOK(left) && SvOK(right)) || ((!SvOK(left) || \
1102           looks_like_number(left)) && SvPOKp(left) && *SvPVX(left) != '0')) \
1103          && (!SvOK(right) || looks_like_number(right))))
1104
1105 PP(pp_flop)
1106 {
1107     dSP;
1108
1109     if (GIMME == G_ARRAY) {
1110         dPOPPOPssrl;
1111         register IV i, j;
1112         register SV *sv;
1113         IV max;
1114
1115         if (SvGMAGICAL(left))
1116             mg_get(left);
1117         if (SvGMAGICAL(right))
1118             mg_get(right);
1119
1120         if (RANGE_IS_NUMERIC(left,right)) {
1121             if ((SvOK(left) && SvNV(left) < IV_MIN) ||
1122                 (SvOK(right) && SvNV(right) > IV_MAX))
1123                 DIE(aTHX_ "Range iterator outside integer range");
1124             i = SvIV(left);
1125             max = SvIV(right);
1126             if (max >= i) {
1127                 j = max - i + 1;
1128                 EXTEND_MORTAL(j);
1129                 EXTEND(SP, j);
1130             }
1131             else
1132                 j = 0;
1133             while (j--) {
1134                 sv = sv_2mortal(newSViv(i++));
1135                 PUSHs(sv);
1136             }
1137         }
1138         else {
1139             SV *final = sv_mortalcopy(right);
1140             STRLEN len, n_a;
1141             char *tmps = SvPV(final, len);
1142
1143             sv = sv_mortalcopy(left);
1144             SvPV_force(sv,n_a);
1145             while (!SvNIOKp(sv) && SvCUR(sv) <= len) {
1146                 XPUSHs(sv);
1147                 if (strEQ(SvPVX(sv),tmps))
1148                     break;
1149                 sv = sv_2mortal(newSVsv(sv));
1150                 sv_inc(sv);
1151             }
1152         }
1153     }
1154     else {
1155         dTOPss;
1156         SV *targ = PAD_SV(cUNOP->op_first->op_targ);
1157         int flop = 0;
1158         sv_inc(targ);
1159
1160         if (PL_op->op_private & OPpFLIP_LINENUM) {
1161             if (GvIO(PL_last_in_gv)) {
1162                 flop = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1163             }
1164             else {
1165                 GV *gv = gv_fetchpv(".", TRUE, SVt_PV);
1166                 if (gv && GvSV(gv)) flop = SvIV(sv) == SvIV(GvSV(gv));
1167             }
1168         }
1169         else {
1170             flop = SvTRUE(sv);
1171         }
1172
1173         if (flop) {
1174             sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
1175             sv_catpv(targ, "E0");
1176         }
1177         SETs(targ);
1178     }
1179
1180     RETURN;
1181 }
1182
1183 /* Control. */
1184
1185 static const char * const context_name[] = {
1186     "pseudo-block",
1187     "subroutine",
1188     "eval",
1189     "loop",
1190     "substitution",
1191     "block",
1192     "format"
1193 };
1194
1195 STATIC I32
1196 S_dopoptolabel(pTHX_ const char *label)
1197 {
1198     register I32 i;
1199
1200     for (i = cxstack_ix; i >= 0; i--) {
1201         register const PERL_CONTEXT *cx = &cxstack[i];
1202         switch (CxTYPE(cx)) {
1203         case CXt_SUBST:
1204         case CXt_SUB:
1205         case CXt_FORMAT:
1206         case CXt_EVAL:
1207         case CXt_NULL:
1208             if (ckWARN(WARN_EXITING))
1209                 Perl_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1210                         context_name[CxTYPE(cx)], OP_NAME(PL_op));
1211             if (CxTYPE(cx) == CXt_NULL)
1212                 return -1;
1213             break;
1214         case CXt_LOOP:
1215             if (!cx->blk_loop.label ||
1216               strNE(label, cx->blk_loop.label) ) {
1217                 DEBUG_l(Perl_deb(aTHX_ "(Skipping label #%ld %s)\n",
1218                         (long)i, cx->blk_loop.label));
1219                 continue;
1220             }
1221             DEBUG_l( Perl_deb(aTHX_ "(Found label #%ld %s)\n", (long)i, label));
1222             return i;
1223         }
1224     }
1225     return i;
1226 }
1227
1228 I32
1229 Perl_dowantarray(pTHX)
1230 {
1231     I32 gimme = block_gimme();
1232     return (gimme == G_VOID) ? G_SCALAR : gimme;
1233 }
1234
1235 I32
1236 Perl_block_gimme(pTHX)
1237 {
1238     const I32 cxix = dopoptosub(cxstack_ix);
1239     if (cxix < 0)
1240         return G_VOID;
1241
1242     switch (cxstack[cxix].blk_gimme) {
1243     case G_VOID:
1244         return G_VOID;
1245     case G_SCALAR:
1246         return G_SCALAR;
1247     case G_ARRAY:
1248         return G_ARRAY;
1249     default:
1250         Perl_croak(aTHX_ "panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
1251         /* NOTREACHED */
1252         return 0;
1253     }
1254 }
1255
1256 I32
1257 Perl_is_lvalue_sub(pTHX)
1258 {
1259     const I32 cxix = dopoptosub(cxstack_ix);
1260     assert(cxix >= 0);  /* We should only be called from inside subs */
1261
1262     if (cxstack[cxix].blk_sub.lval && CvLVALUE(cxstack[cxix].blk_sub.cv))
1263         return cxstack[cxix].blk_sub.lval;
1264     else
1265         return 0;
1266 }
1267
1268 STATIC I32
1269 S_dopoptosub(pTHX_ I32 startingblock)
1270 {
1271     return dopoptosub_at(cxstack, startingblock);
1272 }
1273
1274 STATIC I32
1275 S_dopoptosub_at(pTHX_ PERL_CONTEXT *cxstk, I32 startingblock)
1276 {
1277     I32 i;
1278     for (i = startingblock; i >= 0; i--) {
1279         register const PERL_CONTEXT *cx = &cxstk[i];
1280         switch (CxTYPE(cx)) {
1281         default:
1282             continue;
1283         case CXt_EVAL:
1284         case CXt_SUB:
1285         case CXt_FORMAT:
1286             DEBUG_l( Perl_deb(aTHX_ "(Found sub #%ld)\n", (long)i));
1287             return i;
1288         }
1289     }
1290     return i;
1291 }
1292
1293 STATIC I32
1294 S_dopoptoeval(pTHX_ I32 startingblock)
1295 {
1296     I32 i;
1297     for (i = startingblock; i >= 0; i--) {
1298         register const PERL_CONTEXT *cx = &cxstack[i];
1299         switch (CxTYPE(cx)) {
1300         default:
1301             continue;
1302         case CXt_EVAL:
1303             DEBUG_l( Perl_deb(aTHX_ "(Found eval #%ld)\n", (long)i));
1304             return i;
1305         }
1306     }
1307     return i;
1308 }
1309
1310 STATIC I32
1311 S_dopoptoloop(pTHX_ I32 startingblock)
1312 {
1313     I32 i;
1314     for (i = startingblock; i >= 0; i--) {
1315         register const PERL_CONTEXT *cx = &cxstack[i];
1316         switch (CxTYPE(cx)) {
1317         case CXt_SUBST:
1318         case CXt_SUB:
1319         case CXt_FORMAT:
1320         case CXt_EVAL:
1321         case CXt_NULL:
1322             if (ckWARN(WARN_EXITING))
1323                 Perl_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1324                         context_name[CxTYPE(cx)], OP_NAME(PL_op));
1325             if ((CxTYPE(cx)) == CXt_NULL)
1326                 return -1;
1327             break;
1328         case CXt_LOOP:
1329             DEBUG_l( Perl_deb(aTHX_ "(Found loop #%ld)\n", (long)i));
1330             return i;
1331         }
1332     }
1333     return i;
1334 }
1335
1336 void
1337 Perl_dounwind(pTHX_ I32 cxix)
1338 {
1339     I32 optype;
1340
1341     while (cxstack_ix > cxix) {
1342         SV *sv;
1343         register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
1344         DEBUG_l(PerlIO_printf(Perl_debug_log, "Unwinding block %ld, type %s\n",
1345                               (long) cxstack_ix, PL_block_type[CxTYPE(cx)]));
1346         /* Note: we don't need to restore the base context info till the end. */
1347         switch (CxTYPE(cx)) {
1348         case CXt_SUBST:
1349             POPSUBST(cx);
1350             continue;  /* not break */
1351         case CXt_SUB:
1352             POPSUB(cx,sv);
1353             LEAVESUB(sv);
1354             break;
1355         case CXt_EVAL:
1356             POPEVAL(cx);
1357             break;
1358         case CXt_LOOP:
1359             POPLOOP(cx);
1360             break;
1361         case CXt_NULL:
1362             break;
1363         case CXt_FORMAT:
1364             POPFORMAT(cx);
1365             break;
1366         }
1367         cxstack_ix--;
1368     }
1369 }
1370
1371 void
1372 Perl_qerror(pTHX_ SV *err)
1373 {
1374     if (PL_in_eval)
1375         sv_catsv(ERRSV, err);
1376     else if (PL_errors)
1377         sv_catsv(PL_errors, err);
1378     else
1379         Perl_warn(aTHX_ "%"SVf, err);
1380     ++PL_error_count;
1381 }
1382
1383 OP *
1384 Perl_die_where(pTHX_ const char *message, STRLEN msglen)
1385 {
1386     dVAR;
1387     STRLEN n_a;
1388
1389     if (PL_in_eval) {
1390         I32 cxix;
1391         I32 gimme;
1392         SV **newsp;
1393
1394         if (message) {
1395             if (PL_in_eval & EVAL_KEEPERR) {
1396                 static const char prefix[] = "\t(in cleanup) ";
1397                 SV *err = ERRSV;
1398                 const char *e = Nullch;
1399                 if (!SvPOK(err))
1400                     sv_setpv(err,"");
1401                 else if (SvCUR(err) >= sizeof(prefix)+msglen-1) {
1402                     e = SvPV(err, n_a);
1403                     e += n_a - msglen;
1404                     if (*e != *message || strNE(e,message))
1405                         e = Nullch;
1406                 }
1407                 if (!e) {
1408                     SvGROW(err, SvCUR(err)+sizeof(prefix)+msglen);
1409                     sv_catpvn(err, prefix, sizeof(prefix)-1);
1410                     sv_catpvn(err, message, msglen);
1411                     if (ckWARN(WARN_MISC)) {
1412                         STRLEN start = SvCUR(err)-msglen-sizeof(prefix)+1;
1413                         Perl_warner(aTHX_ packWARN(WARN_MISC), SvPVX(err)+start);
1414                     }
1415                 }
1416             }
1417             else {
1418                 sv_setpvn(ERRSV, message, msglen);
1419             }
1420         }
1421
1422         while ((cxix = dopoptoeval(cxstack_ix)) < 0
1423                && PL_curstackinfo->si_prev)
1424         {
1425             dounwind(-1);
1426             POPSTACK;
1427         }
1428
1429         if (cxix >= 0) {
1430             I32 optype;
1431             register PERL_CONTEXT *cx;
1432
1433             if (cxix < cxstack_ix)
1434                 dounwind(cxix);
1435
1436             POPBLOCK(cx,PL_curpm);
1437             if (CxTYPE(cx) != CXt_EVAL) {
1438                 if (!message)
1439                     message = SvPVx(ERRSV, msglen);
1440                 PerlIO_write(Perl_error_log, "panic: die ", 11);
1441                 PerlIO_write(Perl_error_log, message, msglen);
1442                 my_exit(1);
1443             }
1444             POPEVAL(cx);
1445
1446             if (gimme == G_SCALAR)
1447                 *++newsp = &PL_sv_undef;
1448             PL_stack_sp = newsp;
1449
1450             LEAVE;
1451
1452             /* LEAVE could clobber PL_curcop (see save_re_context())
1453              * XXX it might be better to find a way to avoid messing with
1454              * PL_curcop in save_re_context() instead, but this is a more
1455              * minimal fix --GSAR */
1456             PL_curcop = cx->blk_oldcop;
1457
1458             if (optype == OP_REQUIRE) {
1459                 const char* msg = SvPVx(ERRSV, n_a);
1460                 SV *nsv = cx->blk_eval.old_namesv;
1461                 (void)hv_store(GvHVn(PL_incgv), SvPVX(nsv), SvCUR(nsv),
1462                                &PL_sv_undef, 0);
1463                 DIE(aTHX_ "%sCompilation failed in require",
1464                     *msg ? msg : "Unknown error\n");
1465             }
1466             assert(CxTYPE(cx) == CXt_EVAL);
1467             return cx->blk_eval.retop;
1468         }
1469     }
1470     if (!message)
1471         message = SvPVx(ERRSV, msglen);
1472
1473     write_to_stderr(message, msglen);
1474     my_failure_exit();
1475     /* NOTREACHED */
1476     return 0;
1477 }
1478
1479 PP(pp_xor)
1480 {
1481     dSP; dPOPTOPssrl;
1482     if (SvTRUE(left) != SvTRUE(right))
1483         RETSETYES;
1484     else
1485         RETSETNO;
1486 }
1487
1488 PP(pp_andassign)
1489 {
1490     dSP;
1491     if (!SvTRUE(TOPs))
1492         RETURN;
1493     else
1494         RETURNOP(cLOGOP->op_other);
1495 }
1496
1497 PP(pp_orassign)
1498 {
1499     dSP;
1500     if (SvTRUE(TOPs))
1501         RETURN;
1502     else
1503         RETURNOP(cLOGOP->op_other);
1504 }
1505
1506 PP(pp_dorassign)
1507 {
1508     dSP;
1509     register SV* sv;
1510
1511     sv = TOPs;
1512     if (!sv || !SvANY(sv)) {
1513         RETURNOP(cLOGOP->op_other);
1514     }
1515
1516     switch (SvTYPE(sv)) {
1517     case SVt_PVAV:
1518         if (AvMAX(sv) >= 0 || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied)))
1519             RETURN;
1520         break;
1521     case SVt_PVHV:
1522         if (HvARRAY(sv) || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied)))
1523             RETURN;
1524         break;
1525     case SVt_PVCV:
1526         if (CvROOT(sv) || CvXSUB(sv))
1527             RETURN;
1528         break;
1529     default:
1530         if (SvGMAGICAL(sv))
1531             mg_get(sv);
1532         if (SvOK(sv))
1533             RETURN;
1534     }
1535
1536     RETURNOP(cLOGOP->op_other);
1537 }
1538
1539 PP(pp_caller)
1540 {
1541     dSP;
1542     register I32 cxix = dopoptosub(cxstack_ix);
1543     register PERL_CONTEXT *cx;
1544     register PERL_CONTEXT *ccstack = cxstack;
1545     PERL_SI *top_si = PL_curstackinfo;
1546     I32 dbcxix;
1547     I32 gimme;
1548     const char *stashname;
1549     SV *sv;
1550     I32 count = 0;
1551
1552     if (MAXARG)
1553         count = POPi;
1554
1555     for (;;) {
1556         /* we may be in a higher stacklevel, so dig down deeper */
1557         while (cxix < 0 && top_si->si_type != PERLSI_MAIN) {
1558             top_si = top_si->si_prev;
1559             ccstack = top_si->si_cxstack;
1560             cxix = dopoptosub_at(ccstack, top_si->si_cxix);
1561         }
1562         if (cxix < 0) {
1563             if (GIMME != G_ARRAY) {
1564                 EXTEND(SP, 1);
1565                 RETPUSHUNDEF;
1566             }
1567             RETURN;
1568         }
1569         /* caller() should not report the automatic calls to &DB::sub */
1570         if (PL_DBsub && GvCV(PL_DBsub) && cxix >= 0 &&
1571                 ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub))
1572             count++;
1573         if (!count--)
1574             break;
1575         cxix = dopoptosub_at(ccstack, cxix - 1);
1576     }
1577
1578     cx = &ccstack[cxix];
1579     if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1580         dbcxix = dopoptosub_at(ccstack, cxix - 1);
1581         /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the
1582            field below is defined for any cx. */
1583         /* caller() should not report the automatic calls to &DB::sub */
1584         if (PL_DBsub && GvCV(PL_DBsub) && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub))
1585             cx = &ccstack[dbcxix];
1586     }
1587
1588     stashname = CopSTASHPV(cx->blk_oldcop);
1589     if (GIMME != G_ARRAY) {
1590         EXTEND(SP, 1);
1591         if (!stashname)
1592             PUSHs(&PL_sv_undef);
1593         else {
1594             dTARGET;
1595             sv_setpv(TARG, stashname);
1596             PUSHs(TARG);
1597         }
1598         RETURN;
1599     }
1600
1601     EXTEND(SP, 10);
1602
1603     if (!stashname)
1604         PUSHs(&PL_sv_undef);
1605     else
1606         PUSHs(sv_2mortal(newSVpv(stashname, 0)));
1607     PUSHs(sv_2mortal(newSVpv(OutCopFILE(cx->blk_oldcop), 0)));
1608     PUSHs(sv_2mortal(newSViv((I32)CopLINE(cx->blk_oldcop))));
1609     if (!MAXARG)
1610         RETURN;
1611     if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1612         GV *cvgv = CvGV(ccstack[cxix].blk_sub.cv);
1613         /* So is ccstack[dbcxix]. */
1614         if (isGV(cvgv)) {
1615             sv = NEWSV(49, 0);
1616             gv_efullname3(sv, cvgv, Nullch);
1617             PUSHs(sv_2mortal(sv));
1618             PUSHs(sv_2mortal(newSViv((I32)cx->blk_sub.hasargs)));
1619         }
1620         else {
1621             PUSHs(sv_2mortal(newSVpvn("(unknown)",9)));
1622             PUSHs(sv_2mortal(newSViv((I32)cx->blk_sub.hasargs)));
1623         }
1624     }
1625     else {
1626         PUSHs(sv_2mortal(newSVpvn("(eval)",6)));
1627         PUSHs(sv_2mortal(newSViv(0)));
1628     }
1629     gimme = (I32)cx->blk_gimme;
1630     if (gimme == G_VOID)
1631         PUSHs(&PL_sv_undef);
1632     else
1633         PUSHs(sv_2mortal(newSViv(gimme & G_ARRAY)));
1634     if (CxTYPE(cx) == CXt_EVAL) {
1635         /* eval STRING */
1636         if (cx->blk_eval.old_op_type == OP_ENTEREVAL) {
1637             PUSHs(cx->blk_eval.cur_text);
1638             PUSHs(&PL_sv_no);
1639         }
1640         /* require */
1641         else if (cx->blk_eval.old_namesv) {
1642             PUSHs(sv_2mortal(newSVsv(cx->blk_eval.old_namesv)));
1643             PUSHs(&PL_sv_yes);
1644         }
1645         /* eval BLOCK (try blocks have old_namesv == 0) */
1646         else {
1647             PUSHs(&PL_sv_undef);
1648             PUSHs(&PL_sv_undef);
1649         }
1650     }
1651     else {
1652         PUSHs(&PL_sv_undef);
1653         PUSHs(&PL_sv_undef);
1654     }
1655     if (CxTYPE(cx) == CXt_SUB && cx->blk_sub.hasargs
1656         && CopSTASH_eq(PL_curcop, PL_debstash))
1657     {
1658         AV *ary = cx->blk_sub.argarray;
1659         const int off = AvARRAY(ary) - AvALLOC(ary);
1660
1661         if (!PL_dbargs) {
1662             GV* tmpgv;
1663             PL_dbargs = GvAV(gv_AVadd(tmpgv = gv_fetchpv("DB::args", TRUE,
1664                                 SVt_PVAV)));
1665             GvMULTI_on(tmpgv);
1666             AvREAL_off(PL_dbargs);      /* XXX should be REIFY (see av.h) */
1667         }
1668
1669         if (AvMAX(PL_dbargs) < AvFILLp(ary) + off)
1670             av_extend(PL_dbargs, AvFILLp(ary) + off);
1671         Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*);
1672         AvFILLp(PL_dbargs) = AvFILLp(ary) + off;
1673     }
1674     /* XXX only hints propagated via op_private are currently
1675      * visible (others are not easily accessible, since they
1676      * use the global PL_hints) */
1677     PUSHs(sv_2mortal(newSViv((I32)cx->blk_oldcop->op_private &
1678                              HINT_PRIVATE_MASK)));
1679     {
1680         SV * mask ;
1681         SV * old_warnings = cx->blk_oldcop->cop_warnings ;
1682
1683         if  (old_warnings == pWARN_NONE ||
1684                 (old_warnings == pWARN_STD && (PL_dowarn & G_WARN_ON) == 0))
1685             mask = newSVpvn(WARN_NONEstring, WARNsize) ;
1686         else if (old_warnings == pWARN_ALL ||
1687                   (old_warnings == pWARN_STD && PL_dowarn & G_WARN_ON)) {
1688             /* Get the bit mask for $warnings::Bits{all}, because
1689              * it could have been extended by warnings::register */
1690             SV **bits_all;
1691             HV *bits = get_hv("warnings::Bits", FALSE);
1692             if (bits && (bits_all=hv_fetch(bits, "all", 3, FALSE))) {
1693                 mask = newSVsv(*bits_all);
1694             }
1695             else {
1696                 mask = newSVpvn(WARN_ALLstring, WARNsize) ;
1697             }
1698         }
1699         else
1700             mask = newSVsv(old_warnings);
1701         PUSHs(sv_2mortal(mask));
1702     }
1703     RETURN;
1704 }
1705
1706 PP(pp_reset)
1707 {
1708     dSP;
1709     const char *tmps;
1710     STRLEN n_a;
1711
1712     if (MAXARG < 1)
1713         tmps = "";
1714     else
1715         tmps = POPpx;
1716     sv_reset(tmps, CopSTASH(PL_curcop));
1717     PUSHs(&PL_sv_yes);
1718     RETURN;
1719 }
1720
1721 PP(pp_lineseq)
1722 {
1723     return NORMAL;
1724 }
1725
1726 /* like pp_nextstate, but used instead when the debugger is active */
1727
1728 PP(pp_dbstate)
1729 {
1730     dVAR;
1731     PL_curcop = (COP*)PL_op;
1732     TAINT_NOT;          /* Each statement is presumed innocent */
1733     PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
1734     FREETMPS;
1735
1736     if (PL_op->op_flags & OPf_SPECIAL /* breakpoint */
1737             || SvIV(PL_DBsingle) || SvIV(PL_DBsignal) || SvIV(PL_DBtrace))
1738     {
1739         dSP;
1740         register CV *cv;
1741         register PERL_CONTEXT *cx;
1742         I32 gimme = G_ARRAY;
1743         U8 hasargs;
1744         GV *gv;
1745
1746         gv = PL_DBgv;
1747         cv = GvCV(gv);
1748         if (!cv)
1749             DIE(aTHX_ "No DB::DB routine defined");
1750
1751         if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG))
1752             /* don't do recursive DB::DB call */
1753             return NORMAL;
1754
1755         ENTER;
1756         SAVETMPS;
1757
1758         SAVEI32(PL_debug);
1759         SAVESTACK_POS();
1760         PL_debug = 0;
1761         hasargs = 0;
1762         SPAGAIN;
1763
1764         PUSHBLOCK(cx, CXt_SUB, SP);
1765         PUSHSUB_DB(cx);
1766         cx->blk_sub.retop = PL_op->op_next;
1767         CvDEPTH(cv)++;
1768         PAD_SET_CUR(CvPADLIST(cv),1);
1769         RETURNOP(CvSTART(cv));
1770     }
1771     else
1772         return NORMAL;
1773 }
1774
1775 PP(pp_scope)
1776 {
1777     return NORMAL;
1778 }
1779
1780 PP(pp_enteriter)
1781 {
1782     dVAR; dSP; dMARK;
1783     register PERL_CONTEXT *cx;
1784     I32 gimme = GIMME_V;
1785     SV **svp;
1786     U32 cxtype = CXt_LOOP;
1787 #ifdef USE_ITHREADS
1788     void *iterdata;
1789 #endif
1790
1791     ENTER;
1792     SAVETMPS;
1793
1794     if (PL_op->op_targ) {
1795         if (PL_op->op_private & OPpLVAL_INTRO) { /* for my $x (...) */
1796             SvPADSTALE_off(PAD_SVl(PL_op->op_targ));
1797             SAVESETSVFLAGS(PAD_SVl(PL_op->op_targ),
1798                     SVs_PADSTALE, SVs_PADSTALE);
1799         }
1800 #ifndef USE_ITHREADS
1801         svp = &PAD_SVl(PL_op->op_targ);         /* "my" variable */
1802         SAVESPTR(*svp);
1803 #else
1804         SAVEPADSV(PL_op->op_targ);
1805         iterdata = INT2PTR(void*, PL_op->op_targ);
1806         cxtype |= CXp_PADVAR;
1807 #endif
1808     }
1809     else {
1810         GV *gv = (GV*)POPs;
1811         svp = &GvSV(gv);                        /* symbol table variable */
1812         SAVEGENERICSV(*svp);
1813         *svp = NEWSV(0,0);
1814 #ifdef USE_ITHREADS
1815         iterdata = (void*)gv;
1816 #endif
1817     }
1818
1819     ENTER;
1820
1821     PUSHBLOCK(cx, cxtype, SP);
1822 #ifdef USE_ITHREADS
1823     PUSHLOOP(cx, iterdata, MARK);
1824 #else
1825     PUSHLOOP(cx, svp, MARK);
1826 #endif
1827     if (PL_op->op_flags & OPf_STACKED) {
1828         cx->blk_loop.iterary = (AV*)SvREFCNT_inc(POPs);
1829         if (SvTYPE(cx->blk_loop.iterary) != SVt_PVAV) {
1830             dPOPss;
1831             SV *right = (SV*)cx->blk_loop.iterary;
1832             if (RANGE_IS_NUMERIC(sv,right)) {
1833                 if ((SvOK(sv) && SvNV(sv) < IV_MIN) ||
1834                     (SvOK(right) && SvNV(right) >= IV_MAX))
1835                     DIE(aTHX_ "Range iterator outside integer range");
1836                 cx->blk_loop.iterix = SvIV(sv);
1837                 cx->blk_loop.itermax = SvIV(right);
1838             }
1839             else {
1840                 STRLEN n_a;
1841                 cx->blk_loop.iterlval = newSVsv(sv);
1842                 (void) SvPV_force(cx->blk_loop.iterlval,n_a);
1843                 (void) SvPV(right,n_a);
1844             }
1845         }
1846         else if (PL_op->op_private & OPpITER_REVERSED) {
1847             cx->blk_loop.itermax = -1;
1848             cx->blk_loop.iterix = AvFILL(cx->blk_loop.iterary);
1849
1850         }
1851     }
1852     else {
1853         cx->blk_loop.iterary = PL_curstack;
1854         AvFILLp(PL_curstack) = SP - PL_stack_base;
1855         if (PL_op->op_private & OPpITER_REVERSED) {
1856             cx->blk_loop.itermax = MARK - PL_stack_base;
1857             cx->blk_loop.iterix = cx->blk_oldsp;
1858         }
1859         else {
1860             cx->blk_loop.iterix = MARK - PL_stack_base;
1861         }
1862     }
1863
1864     RETURN;
1865 }
1866
1867 PP(pp_enterloop)
1868 {
1869     dVAR; dSP;
1870     register PERL_CONTEXT *cx;
1871     I32 gimme = GIMME_V;
1872
1873     ENTER;
1874     SAVETMPS;
1875     ENTER;
1876
1877     PUSHBLOCK(cx, CXt_LOOP, SP);
1878     PUSHLOOP(cx, 0, SP);
1879
1880     RETURN;
1881 }
1882
1883 PP(pp_leaveloop)
1884 {
1885     dVAR; dSP;
1886     register PERL_CONTEXT *cx;
1887     I32 gimme;
1888     SV **newsp;
1889     PMOP *newpm;
1890     SV **mark;
1891
1892     POPBLOCK(cx,newpm);
1893     assert(CxTYPE(cx) == CXt_LOOP);
1894     mark = newsp;
1895     newsp = PL_stack_base + cx->blk_loop.resetsp;
1896
1897     TAINT_NOT;
1898     if (gimme == G_VOID)
1899         ; /* do nothing */
1900     else if (gimme == G_SCALAR) {
1901         if (mark < SP)
1902             *++newsp = sv_mortalcopy(*SP);
1903         else
1904             *++newsp = &PL_sv_undef;
1905     }
1906     else {
1907         while (mark < SP) {
1908             *++newsp = sv_mortalcopy(*++mark);
1909             TAINT_NOT;          /* Each item is independent */
1910         }
1911     }
1912     SP = newsp;
1913     PUTBACK;
1914
1915     POPLOOP(cx);        /* Stack values are safe: release loop vars ... */
1916     PL_curpm = newpm;   /* ... and pop $1 et al */
1917
1918     LEAVE;
1919     LEAVE;
1920
1921     return NORMAL;
1922 }
1923
1924 PP(pp_return)
1925 {
1926     dVAR; dSP; dMARK;
1927     I32 cxix;
1928     register PERL_CONTEXT *cx;
1929     bool popsub2 = FALSE;
1930     bool clear_errsv = FALSE;
1931     I32 gimme;
1932     SV **newsp;
1933     PMOP *newpm;
1934     I32 optype = 0;
1935     SV *sv;
1936     OP *retop;
1937
1938     if (PL_curstackinfo->si_type == PERLSI_SORT) {
1939         if (cxstack_ix == PL_sortcxix
1940             || dopoptosub(cxstack_ix) <= PL_sortcxix)
1941         {
1942             if (cxstack_ix > PL_sortcxix)
1943                 dounwind(PL_sortcxix);
1944             AvARRAY(PL_curstack)[1] = *SP;
1945             PL_stack_sp = PL_stack_base + 1;
1946             return 0;
1947         }
1948     }
1949
1950     cxix = dopoptosub(cxstack_ix);
1951     if (cxix < 0)
1952         DIE(aTHX_ "Can't return outside a subroutine");
1953     if (cxix < cxstack_ix)
1954         dounwind(cxix);
1955
1956     POPBLOCK(cx,newpm);
1957     switch (CxTYPE(cx)) {
1958     case CXt_SUB:
1959         popsub2 = TRUE;
1960         retop = cx->blk_sub.retop;
1961         cxstack_ix++; /* preserve cx entry on stack for use by POPSUB */
1962         break;
1963     case CXt_EVAL:
1964         if (!(PL_in_eval & EVAL_KEEPERR))
1965             clear_errsv = TRUE;
1966         POPEVAL(cx);
1967         retop = cx->blk_eval.retop;
1968         if (CxTRYBLOCK(cx))
1969             break;
1970         lex_end();
1971         if (optype == OP_REQUIRE &&
1972             (MARK == SP || (gimme == G_SCALAR && !SvTRUE(*SP))) )
1973         {
1974             /* Unassume the success we assumed earlier. */
1975             SV *nsv = cx->blk_eval.old_namesv;
1976             (void)hv_delete(GvHVn(PL_incgv), SvPVX(nsv), SvCUR(nsv), G_DISCARD);
1977             DIE(aTHX_ "%"SVf" did not return a true value", nsv);
1978         }
1979         break;
1980     case CXt_FORMAT:
1981         POPFORMAT(cx);
1982         retop = cx->blk_sub.retop;
1983         break;
1984     default:
1985         DIE(aTHX_ "panic: return");
1986     }
1987
1988     TAINT_NOT;
1989     if (gimme == G_SCALAR) {
1990         if (MARK < SP) {
1991             if (popsub2) {
1992                 if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) {
1993                     if (SvTEMP(TOPs)) {
1994                         *++newsp = SvREFCNT_inc(*SP);
1995                         FREETMPS;
1996                         sv_2mortal(*newsp);
1997                     }
1998                     else {
1999                         sv = SvREFCNT_inc(*SP); /* FREETMPS could clobber it */
2000                         FREETMPS;
2001                         *++newsp = sv_mortalcopy(sv);
2002                         SvREFCNT_dec(sv);
2003                     }
2004                 }
2005                 else
2006                     *++newsp = (SvTEMP(*SP)) ? *SP : sv_mortalcopy(*SP);
2007             }
2008             else
2009                 *++newsp = sv_mortalcopy(*SP);
2010         }
2011         else
2012             *++newsp = &PL_sv_undef;
2013     }
2014     else if (gimme == G_ARRAY) {
2015         while (++MARK <= SP) {
2016             *++newsp = (popsub2 && SvTEMP(*MARK))
2017                         ? *MARK : sv_mortalcopy(*MARK);
2018             TAINT_NOT;          /* Each item is independent */
2019         }
2020     }
2021     PL_stack_sp = newsp;
2022
2023     LEAVE;
2024     /* Stack values are safe: */
2025     if (popsub2) {
2026         cxstack_ix--;
2027         POPSUB(cx,sv);  /* release CV and @_ ... */
2028     }
2029     else
2030         sv = Nullsv;
2031     PL_curpm = newpm;   /* ... and pop $1 et al */
2032
2033     LEAVESUB(sv);
2034     if (clear_errsv)
2035         sv_setpv(ERRSV,"");
2036     return retop;
2037 }
2038
2039 PP(pp_last)
2040 {
2041     dVAR; dSP;
2042     I32 cxix;
2043     register PERL_CONTEXT *cx;
2044     I32 pop2 = 0;
2045     I32 gimme;
2046     I32 optype;
2047     OP *nextop;
2048     SV **newsp;
2049     PMOP *newpm;
2050     SV **mark;
2051     SV *sv = Nullsv;
2052
2053     if (PL_op->op_flags & OPf_SPECIAL) {
2054         cxix = dopoptoloop(cxstack_ix);
2055         if (cxix < 0)
2056             DIE(aTHX_ "Can't \"last\" outside a loop block");
2057     }
2058     else {
2059         cxix = dopoptolabel(cPVOP->op_pv);
2060         if (cxix < 0)
2061             DIE(aTHX_ "Label not found for \"last %s\"", cPVOP->op_pv);
2062     }
2063     if (cxix < cxstack_ix)
2064         dounwind(cxix);
2065
2066     POPBLOCK(cx,newpm);
2067     cxstack_ix++; /* temporarily protect top context */
2068     mark = newsp;
2069     switch (CxTYPE(cx)) {
2070     case CXt_LOOP:
2071         pop2 = CXt_LOOP;
2072         newsp = PL_stack_base + cx->blk_loop.resetsp;
2073         nextop = cx->blk_loop.last_op->op_next;
2074         break;
2075     case CXt_SUB:
2076         pop2 = CXt_SUB;
2077         nextop = cx->blk_sub.retop;
2078         break;
2079     case CXt_EVAL:
2080         POPEVAL(cx);
2081         nextop = cx->blk_eval.retop;
2082         break;
2083     case CXt_FORMAT:
2084         POPFORMAT(cx);
2085         nextop = cx->blk_sub.retop;
2086         break;
2087     default:
2088         DIE(aTHX_ "panic: last");
2089     }
2090
2091     TAINT_NOT;
2092     if (gimme == G_SCALAR) {
2093         if (MARK < SP)
2094             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*SP))
2095                         ? *SP : sv_mortalcopy(*SP);
2096         else
2097             *++newsp = &PL_sv_undef;
2098     }
2099     else if (gimme == G_ARRAY) {
2100         while (++MARK <= SP) {
2101             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*MARK))
2102                         ? *MARK : sv_mortalcopy(*MARK);
2103             TAINT_NOT;          /* Each item is independent */
2104         }
2105     }
2106     SP = newsp;
2107     PUTBACK;
2108
2109     LEAVE;
2110     cxstack_ix--;
2111     /* Stack values are safe: */
2112     switch (pop2) {
2113     case CXt_LOOP:
2114         POPLOOP(cx);    /* release loop vars ... */
2115         LEAVE;
2116         break;
2117     case CXt_SUB:
2118         POPSUB(cx,sv);  /* release CV and @_ ... */
2119         break;
2120     }
2121     PL_curpm = newpm;   /* ... and pop $1 et al */
2122
2123     LEAVESUB(sv);
2124     return nextop;
2125 }
2126
2127 PP(pp_next)
2128 {
2129     dVAR;
2130     I32 cxix;
2131     register PERL_CONTEXT *cx;
2132     I32 inner;
2133
2134     if (PL_op->op_flags & OPf_SPECIAL) {
2135         cxix = dopoptoloop(cxstack_ix);
2136         if (cxix < 0)
2137             DIE(aTHX_ "Can't \"next\" outside a loop block");
2138     }
2139     else {
2140         cxix = dopoptolabel(cPVOP->op_pv);
2141         if (cxix < 0)
2142             DIE(aTHX_ "Label not found for \"next %s\"", cPVOP->op_pv);
2143     }
2144     if (cxix < cxstack_ix)
2145         dounwind(cxix);
2146
2147     /* clear off anything above the scope we're re-entering, but
2148      * save the rest until after a possible continue block */
2149     inner = PL_scopestack_ix;
2150     TOPBLOCK(cx);
2151     if (PL_scopestack_ix < inner)
2152         leave_scope(PL_scopestack[PL_scopestack_ix]);
2153     PL_curcop = cx->blk_oldcop;
2154     return cx->blk_loop.next_op;
2155 }
2156
2157 PP(pp_redo)
2158 {
2159     dVAR;
2160     I32 cxix;
2161     register PERL_CONTEXT *cx;
2162     I32 oldsave;
2163
2164     if (PL_op->op_flags & OPf_SPECIAL) {
2165         cxix = dopoptoloop(cxstack_ix);
2166         if (cxix < 0)
2167             DIE(aTHX_ "Can't \"redo\" outside a loop block");
2168     }
2169     else {
2170         cxix = dopoptolabel(cPVOP->op_pv);
2171         if (cxix < 0)
2172             DIE(aTHX_ "Label not found for \"redo %s\"", cPVOP->op_pv);
2173     }
2174     if (cxix < cxstack_ix)
2175         dounwind(cxix);
2176
2177     TOPBLOCK(cx);
2178     oldsave = PL_scopestack[PL_scopestack_ix - 1];
2179     LEAVE_SCOPE(oldsave);
2180     FREETMPS;
2181     PL_curcop = cx->blk_oldcop;
2182     return cx->blk_loop.redo_op;
2183 }
2184
2185 STATIC OP *
2186 S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit)
2187 {
2188     OP *kid = Nullop;
2189     OP **ops = opstack;
2190     static const char too_deep[] = "Target of goto is too deeply nested";
2191
2192     if (ops >= oplimit)
2193         Perl_croak(aTHX_ too_deep);
2194     if (o->op_type == OP_LEAVE ||
2195         o->op_type == OP_SCOPE ||
2196         o->op_type == OP_LEAVELOOP ||
2197         o->op_type == OP_LEAVESUB ||
2198         o->op_type == OP_LEAVETRY)
2199     {
2200         *ops++ = cUNOPo->op_first;
2201         if (ops >= oplimit)
2202             Perl_croak(aTHX_ too_deep);
2203     }
2204     *ops = 0;
2205     if (o->op_flags & OPf_KIDS) {
2206         /* First try all the kids at this level, since that's likeliest. */
2207         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
2208             if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
2209                     kCOP->cop_label && strEQ(kCOP->cop_label, label))
2210                 return kid;
2211         }
2212         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
2213             if (kid == PL_lastgotoprobe)
2214                 continue;
2215             if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2216                 if (ops == opstack)
2217                     *ops++ = kid;
2218                 else if (ops[-1]->op_type == OP_NEXTSTATE ||
2219                          ops[-1]->op_type == OP_DBSTATE)
2220                     ops[-1] = kid;
2221                 else
2222                     *ops++ = kid;
2223             }
2224             if ((o = dofindlabel(kid, label, ops, oplimit)))
2225                 return o;
2226         }
2227     }
2228     *ops = 0;
2229     return 0;
2230 }
2231
2232 PP(pp_dump)
2233 {
2234     return pp_goto();
2235     /*NOTREACHED*/
2236 }
2237
2238 PP(pp_goto)
2239 {
2240     dVAR; dSP;
2241     OP *retop = 0;
2242     I32 ix;
2243     register PERL_CONTEXT *cx;
2244 #define GOTO_DEPTH 64
2245     OP *enterops[GOTO_DEPTH];
2246     const char *label = 0;
2247     const bool do_dump = (PL_op->op_type == OP_DUMP);
2248     static const char must_have_label[] = "goto must have label";
2249
2250     if (PL_op->op_flags & OPf_STACKED) {
2251         SV *sv = POPs;
2252         STRLEN n_a;
2253
2254         /* This egregious kludge implements goto &subroutine */
2255         if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
2256             I32 cxix;
2257             register PERL_CONTEXT *cx;
2258             CV* cv = (CV*)SvRV(sv);
2259             SV** mark;
2260             I32 items = 0;
2261             I32 oldsave;
2262             bool reified = 0;
2263
2264         retry:
2265             if (!CvROOT(cv) && !CvXSUB(cv)) {
2266                 const GV * const gv = CvGV(cv);
2267                 if (gv) {
2268                     GV *autogv;
2269                     SV *tmpstr;
2270                     /* autoloaded stub? */
2271                     if (cv != GvCV(gv) && (cv = GvCV(gv)))
2272                         goto retry;
2273                     autogv = gv_autoload4(GvSTASH(gv), GvNAME(gv),
2274                                           GvNAMELEN(gv), FALSE);
2275                     if (autogv && (cv = GvCV(autogv)))
2276                         goto retry;
2277                     tmpstr = sv_newmortal();
2278                     gv_efullname3(tmpstr, gv, Nullch);
2279                     DIE(aTHX_ "Goto undefined subroutine &%"SVf"",tmpstr);
2280                 }
2281                 DIE(aTHX_ "Goto undefined subroutine");
2282             }
2283
2284             /* First do some returnish stuff. */
2285             (void)SvREFCNT_inc(cv); /* avoid premature free during unwind */
2286             FREETMPS;
2287             cxix = dopoptosub(cxstack_ix);
2288             if (cxix < 0)
2289                 DIE(aTHX_ "Can't goto subroutine outside a subroutine");
2290             if (cxix < cxstack_ix)
2291                 dounwind(cxix);
2292             TOPBLOCK(cx);
2293             if (CxREALEVAL(cx))
2294                 DIE(aTHX_ "Can't goto subroutine from an eval-string");
2295             if (CxTYPE(cx) == CXt_SUB && cx->blk_sub.hasargs) {
2296                 /* put @_ back onto stack */
2297                 AV* av = cx->blk_sub.argarray;
2298
2299                 items = AvFILLp(av) + 1;
2300                 EXTEND(SP, items+1); /* @_ could have been extended. */
2301                 Copy(AvARRAY(av), SP + 1, items, SV*);
2302                 SvREFCNT_dec(GvAV(PL_defgv));
2303                 GvAV(PL_defgv) = cx->blk_sub.savearray;
2304                 CLEAR_ARGARRAY(av);
2305                 /* abandon @_ if it got reified */
2306                 if (AvREAL(av)) {
2307                     reified = 1;
2308                     SvREFCNT_dec(av);
2309                     av = newAV();
2310                     av_extend(av, items-1);
2311                     AvFLAGS(av) = AVf_REIFY;
2312                     PAD_SVl(0) = (SV*)(cx->blk_sub.argarray = av);
2313                 }
2314             }
2315             else if (CvXSUB(cv)) {      /* put GvAV(defgv) back onto stack */
2316                 AV* av;
2317                 av = GvAV(PL_defgv);
2318                 items = AvFILLp(av) + 1;
2319                 EXTEND(SP, items+1); /* @_ could have been extended. */
2320                 Copy(AvARRAY(av), SP + 1, items, SV*);
2321             }
2322             mark = SP;
2323             SP += items;
2324             if (CxTYPE(cx) == CXt_SUB &&
2325                 !(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
2326                 SvREFCNT_dec(cx->blk_sub.cv);
2327             oldsave = PL_scopestack[PL_scopestack_ix - 1];
2328             LEAVE_SCOPE(oldsave);
2329
2330             /* Now do some callish stuff. */
2331             SAVETMPS;
2332             SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
2333             if (CvXSUB(cv)) {
2334                 if (reified) {
2335                     I32 index;
2336                     for (index=0; index<items; index++)
2337                         sv_2mortal(SP[-index]);
2338                 }
2339 #ifdef PERL_XSUB_OLDSTYLE
2340                 if (CvOLDSTYLE(cv)) {
2341                     I32 (*fp3)(int,int,int);
2342                     while (SP > mark) {
2343                         SP[1] = SP[0];
2344                         SP--;
2345                     }
2346                     fp3 = (I32(*)(int,int,int))CvXSUB(cv);
2347                     items = (*fp3)(CvXSUBANY(cv).any_i32,
2348                                    mark - PL_stack_base + 1,
2349                                    items);
2350                     SP = PL_stack_base + items;
2351                 }
2352                 else
2353 #endif /* PERL_XSUB_OLDSTYLE */
2354                 {
2355                     SV **newsp;
2356                     I32 gimme;
2357
2358                     /* Push a mark for the start of arglist */
2359                     PUSHMARK(mark);
2360                     PUTBACK;
2361                     (void)(*CvXSUB(cv))(aTHX_ cv);
2362                     /* Pop the current context like a decent sub should */
2363                     POPBLOCK(cx, PL_curpm);
2364                     /* Do _not_ use PUTBACK, keep the XSUB's return stack! */
2365                 }
2366                 LEAVE;
2367                 assert(CxTYPE(cx) == CXt_SUB);
2368                 return cx->blk_sub.retop;
2369             }
2370             else {
2371                 AV* padlist = CvPADLIST(cv);
2372                 if (CxTYPE(cx) == CXt_EVAL) {
2373                     PL_in_eval = cx->blk_eval.old_in_eval;
2374                     PL_eval_root = cx->blk_eval.old_eval_root;
2375                     cx->cx_type = CXt_SUB;
2376                     cx->blk_sub.hasargs = 0;
2377                 }
2378                 cx->blk_sub.cv = cv;
2379                 cx->blk_sub.olddepth = (U16)CvDEPTH(cv);
2380
2381                 CvDEPTH(cv)++;
2382                 if (CvDEPTH(cv) < 2)
2383                     (void)SvREFCNT_inc(cv);
2384                 else {
2385                     if (CvDEPTH(cv) == 100 && ckWARN(WARN_RECURSION))
2386                         sub_crush_depth(cv);
2387                     pad_push(padlist, CvDEPTH(cv));
2388                 }
2389                 PAD_SET_CUR(padlist, CvDEPTH(cv));
2390                 if (cx->blk_sub.hasargs)
2391                 {
2392                     AV* av = (AV*)PAD_SVl(0);
2393                     SV** ary;
2394
2395                     cx->blk_sub.savearray = GvAV(PL_defgv);
2396                     GvAV(PL_defgv) = (AV*)SvREFCNT_inc(av);
2397                     CX_CURPAD_SAVE(cx->blk_sub);
2398                     cx->blk_sub.argarray = av;
2399
2400                     if (items >= AvMAX(av) + 1) {
2401                         ary = AvALLOC(av);
2402                         if (AvARRAY(av) != ary) {
2403                             AvMAX(av) += AvARRAY(av) - AvALLOC(av);
2404                             SvPV_set(av, (char*)ary);
2405                         }
2406                         if (items >= AvMAX(av) + 1) {
2407                             AvMAX(av) = items - 1;
2408                             Renew(ary,items+1,SV*);
2409                             AvALLOC(av) = ary;
2410                             SvPV_set(av, (char*)ary);
2411                         }
2412                     }
2413                     ++mark;
2414                     Copy(mark,AvARRAY(av),items,SV*);
2415                     AvFILLp(av) = items - 1;
2416                     assert(!AvREAL(av));
2417                     if (reified) {
2418                         /* transfer 'ownership' of refcnts to new @_ */
2419                         AvREAL_on(av);
2420                         AvREIFY_off(av);
2421                     }
2422                     while (items--) {
2423                         if (*mark)
2424                             SvTEMP_off(*mark);
2425                         mark++;
2426                     }
2427                 }
2428                 if (PERLDB_SUB) {       /* Checking curstash breaks DProf. */
2429                     /*
2430                      * We do not care about using sv to call CV;
2431                      * it's for informational purposes only.
2432                      */
2433                     SV *sv = GvSV(PL_DBsub);
2434                     CV *gotocv;
2435
2436                     save_item(sv);
2437                     if (PERLDB_SUB_NN) {
2438                         int type = SvTYPE(sv);
2439                         if (type < SVt_PVIV && type != SVt_IV)
2440                             sv_upgrade(sv, SVt_PVIV);
2441                         (void)SvIOK_on(sv);
2442                         SvIV_set(sv, PTR2IV(cv)); /* Do it the quickest way */
2443                     } else {
2444                         gv_efullname3(sv, CvGV(cv), Nullch);
2445                     }
2446                     if (  PERLDB_GOTO
2447                           && (gotocv = get_cv("DB::goto", FALSE)) ) {
2448                         PUSHMARK( PL_stack_sp );
2449                         call_sv((SV*)gotocv, G_SCALAR | G_NODEBUG);
2450                         PL_stack_sp--;
2451                     }
2452                 }
2453                 RETURNOP(CvSTART(cv));
2454             }
2455         }
2456         else {
2457             label = SvPV(sv,n_a);
2458             if (!(do_dump || *label))
2459                 DIE(aTHX_ must_have_label);
2460         }
2461     }
2462     else if (PL_op->op_flags & OPf_SPECIAL) {
2463         if (! do_dump)
2464             DIE(aTHX_ must_have_label);
2465     }
2466     else
2467         label = cPVOP->op_pv;
2468
2469     if (label && *label) {
2470         OP *gotoprobe = 0;
2471         bool leaving_eval = FALSE;
2472         bool in_block = FALSE;
2473         PERL_CONTEXT *last_eval_cx = 0;
2474
2475         /* find label */
2476
2477         PL_lastgotoprobe = 0;
2478         *enterops = 0;
2479         for (ix = cxstack_ix; ix >= 0; ix--) {
2480             cx = &cxstack[ix];
2481             switch (CxTYPE(cx)) {
2482             case CXt_EVAL:
2483                 leaving_eval = TRUE;
2484                 if (!CxTRYBLOCK(cx)) {
2485                     gotoprobe = (last_eval_cx ?
2486                                 last_eval_cx->blk_eval.old_eval_root :
2487                                 PL_eval_root);
2488                     last_eval_cx = cx;
2489                     break;
2490                 }
2491                 /* else fall through */
2492             case CXt_LOOP:
2493                 gotoprobe = cx->blk_oldcop->op_sibling;
2494                 break;
2495             case CXt_SUBST:
2496                 continue;
2497             case CXt_BLOCK:
2498                 if (ix) {
2499                     gotoprobe = cx->blk_oldcop->op_sibling;
2500                     in_block = TRUE;
2501                 } else
2502                     gotoprobe = PL_main_root;
2503                 break;
2504             case CXt_SUB:
2505                 if (CvDEPTH(cx->blk_sub.cv)) {
2506                     gotoprobe = CvROOT(cx->blk_sub.cv);
2507                     break;
2508                 }
2509                 /* FALL THROUGH */
2510             case CXt_FORMAT:
2511             case CXt_NULL:
2512                 DIE(aTHX_ "Can't \"goto\" out of a pseudo block");
2513             default:
2514                 if (ix)
2515                     DIE(aTHX_ "panic: goto");
2516                 gotoprobe = PL_main_root;
2517                 break;
2518             }
2519             if (gotoprobe) {
2520                 retop = dofindlabel(gotoprobe, label,
2521                                     enterops, enterops + GOTO_DEPTH);
2522                 if (retop)
2523                     break;
2524             }
2525             PL_lastgotoprobe = gotoprobe;
2526         }
2527         if (!retop)
2528             DIE(aTHX_ "Can't find label %s", label);
2529
2530         /* if we're leaving an eval, check before we pop any frames
2531            that we're not going to punt, otherwise the error
2532            won't be caught */
2533
2534         if (leaving_eval && *enterops && enterops[1]) {
2535             I32 i;
2536             for (i = 1; enterops[i]; i++)
2537                 if (enterops[i]->op_type == OP_ENTERITER)
2538                     DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
2539         }
2540
2541         /* pop unwanted frames */
2542
2543         if (ix < cxstack_ix) {
2544             I32 oldsave;
2545
2546             if (ix < 0)
2547                 ix = 0;
2548             dounwind(ix);
2549             TOPBLOCK(cx);
2550             oldsave = PL_scopestack[PL_scopestack_ix];
2551             LEAVE_SCOPE(oldsave);
2552         }
2553
2554         /* push wanted frames */
2555
2556         if (*enterops && enterops[1]) {
2557             OP *oldop = PL_op;
2558             ix = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
2559             for (; enterops[ix]; ix++) {
2560                 PL_op = enterops[ix];
2561                 /* Eventually we may want to stack the needed arguments
2562                  * for each op.  For now, we punt on the hard ones. */
2563                 if (PL_op->op_type == OP_ENTERITER)
2564                     DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
2565                 CALL_FPTR(PL_op->op_ppaddr)(aTHX);
2566             }
2567             PL_op = oldop;
2568         }
2569     }
2570
2571     if (do_dump) {
2572 #ifdef VMS
2573         if (!retop) retop = PL_main_start;
2574 #endif
2575         PL_restartop = retop;
2576         PL_do_undump = TRUE;
2577
2578         my_unexec();
2579
2580         PL_restartop = 0;               /* hmm, must be GNU unexec().. */
2581         PL_do_undump = FALSE;
2582     }
2583
2584     RETURNOP(retop);
2585 }
2586
2587 PP(pp_exit)
2588 {
2589     dSP;
2590     I32 anum;
2591
2592     if (MAXARG < 1)
2593         anum = 0;
2594     else {
2595         anum = SvIVx(POPs);
2596 #ifdef VMS
2597         if (anum == 1 && (PL_op->op_private & OPpEXIT_VMSISH))
2598             anum = 0;
2599         VMSISH_HUSHED  = VMSISH_HUSHED || (PL_op->op_private & OPpHUSH_VMSISH);
2600 #endif
2601     }
2602     PL_exit_flags |= PERL_EXIT_EXPECTED;
2603     my_exit(anum);
2604     PUSHs(&PL_sv_undef);
2605     RETURN;
2606 }
2607
2608 #ifdef NOTYET
2609 PP(pp_nswitch)
2610 {
2611     dSP;
2612     NV value = SvNVx(GvSV(cCOP->cop_gv));
2613     register I32 match = I_32(value);
2614
2615     if (value < 0.0) {
2616         if (((NV)match) > value)
2617             --match;            /* was fractional--truncate other way */
2618     }
2619     match -= cCOP->uop.scop.scop_offset;
2620     if (match < 0)
2621         match = 0;
2622     else if (match > cCOP->uop.scop.scop_max)
2623         match = cCOP->uop.scop.scop_max;
2624     PL_op = cCOP->uop.scop.scop_next[match];
2625     RETURNOP(PL_op);
2626 }
2627
2628 PP(pp_cswitch)
2629 {
2630     dSP;
2631     register I32 match;
2632
2633     if (PL_multiline)
2634         PL_op = PL_op->op_next;                 /* can't assume anything */
2635     else {
2636         STRLEN n_a;
2637         match = *(SvPVx(GvSV(cCOP->cop_gv), n_a)) & 255;
2638         match -= cCOP->uop.scop.scop_offset;
2639         if (match < 0)
2640             match = 0;
2641         else if (match > cCOP->uop.scop.scop_max)
2642             match = cCOP->uop.scop.scop_max;
2643         PL_op = cCOP->uop.scop.scop_next[match];
2644     }
2645     RETURNOP(PL_op);
2646 }
2647 #endif
2648
2649 /* Eval. */
2650
2651 STATIC void
2652 S_save_lines(pTHX_ AV *array, SV *sv)
2653 {
2654     register const char *s = SvPVX(sv);
2655     register const char *send = SvPVX(sv) + SvCUR(sv);
2656     register const char *t;
2657     register I32 line = 1;
2658
2659     while (s && s < send) {
2660         SV *tmpstr = NEWSV(85,0);
2661
2662         sv_upgrade(tmpstr, SVt_PVMG);
2663         t = strchr(s, '\n');
2664         if (t)
2665             t++;
2666         else
2667             t = send;
2668
2669         sv_setpvn(tmpstr, s, t - s);
2670         av_store(array, line++, tmpstr);
2671         s = t;
2672     }
2673 }
2674
2675 STATIC void *
2676 S_docatch_body(pTHX)
2677 {
2678     CALLRUNOPS(aTHX);
2679     return NULL;
2680 }
2681
2682 STATIC OP *
2683 S_docatch(pTHX_ OP *o)
2684 {
2685     int ret;
2686     OP * const oldop = PL_op;
2687     dJMPENV;
2688
2689 #ifdef DEBUGGING
2690     assert(CATCH_GET == TRUE);
2691 #endif
2692     PL_op = o;
2693
2694     JMPENV_PUSH(ret);
2695     switch (ret) {
2696     case 0:
2697         assert(cxstack_ix >= 0);
2698         assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
2699         cxstack[cxstack_ix].blk_eval.cur_top_env = PL_top_env;
2700  redo_body:
2701         docatch_body();
2702         break;
2703     case 3:
2704         /* die caught by an inner eval - continue inner loop */
2705
2706         /* NB XXX we rely on the old popped CxEVAL still being at the top
2707          * of the stack; the way die_where() currently works, this
2708          * assumption is valid. In theory The cur_top_env value should be
2709          * returned in another global, the way retop (aka PL_restartop)
2710          * is. */
2711         assert(CxTYPE(&cxstack[cxstack_ix+1]) == CXt_EVAL);
2712
2713         if (PL_restartop
2714             && cxstack[cxstack_ix+1].blk_eval.cur_top_env == PL_top_env)
2715         {
2716             PL_op = PL_restartop;
2717             PL_restartop = 0;
2718             goto redo_body;
2719         }
2720         /* FALL THROUGH */
2721     default:
2722         JMPENV_POP;
2723         PL_op = oldop;
2724         JMPENV_JUMP(ret);
2725         /* NOTREACHED */
2726     }
2727     JMPENV_POP;
2728     PL_op = oldop;
2729     return Nullop;
2730 }
2731
2732 OP *
2733 Perl_sv_compile_2op(pTHX_ SV *sv, OP** startop, const char *code, PAD** padp)
2734 /* sv Text to convert to OP tree. */
2735 /* startop op_free() this to undo. */
2736 /* code Short string id of the caller. */
2737 {
2738     dVAR; dSP;                          /* Make POPBLOCK work. */
2739     PERL_CONTEXT *cx;
2740     SV **newsp;
2741     I32 gimme = 0;   /* SUSPECT - INITIALZE TO WHAT?  NI-S */
2742     I32 optype;
2743     OP dummy;
2744     OP *rop;
2745     char tbuf[TYPE_DIGITS(long) + 12 + 10];
2746     char *tmpbuf = tbuf;
2747     char *safestr;
2748     int runtime;
2749     CV* runcv = Nullcv; /* initialise to avoid compiler warnings */
2750
2751     ENTER;
2752     lex_start(sv);
2753     SAVETMPS;
2754     /* switch to eval mode */
2755
2756     if (IN_PERL_COMPILETIME) {
2757         SAVECOPSTASH_FREE(&PL_compiling);
2758         CopSTASH_set(&PL_compiling, PL_curstash);
2759     }
2760     if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
2761         SV *sv = sv_newmortal();
2762         Perl_sv_setpvf(aTHX_ sv, "_<(%.10seval %lu)[%s:%"IVdf"]",
2763                        code, (unsigned long)++PL_evalseq,
2764                        CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
2765         tmpbuf = SvPVX(sv);
2766     }
2767     else
2768         sprintf(tmpbuf, "_<(%.10s_eval %lu)", code, (unsigned long)++PL_evalseq);
2769     SAVECOPFILE_FREE(&PL_compiling);
2770     CopFILE_set(&PL_compiling, tmpbuf+2);
2771     SAVECOPLINE(&PL_compiling);
2772     CopLINE_set(&PL_compiling, 1);
2773     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2774        deleting the eval's FILEGV from the stash before gv_check() runs
2775        (i.e. before run-time proper). To work around the coredump that
2776        ensues, we always turn GvMULTI_on for any globals that were
2777        introduced within evals. See force_ident(). GSAR 96-10-12 */
2778     safestr = savepv(tmpbuf);
2779     SAVEDELETE(PL_defstash, safestr, strlen(safestr));
2780     SAVEHINTS();
2781 #ifdef OP_IN_REGISTER
2782     PL_opsave = op;
2783 #else
2784     SAVEVPTR(PL_op);
2785 #endif
2786
2787     /* we get here either during compilation, or via pp_regcomp at runtime */
2788     runtime = IN_PERL_RUNTIME;
2789     if (runtime)
2790         runcv = find_runcv(NULL);
2791
2792     PL_op = &dummy;
2793     PL_op->op_type = OP_ENTEREVAL;
2794     PL_op->op_flags = 0;                        /* Avoid uninit warning. */
2795     PUSHBLOCK(cx, CXt_EVAL|(IN_PERL_COMPILETIME ? 0 : CXp_REAL), SP);
2796     PUSHEVAL(cx, 0, Nullgv);
2797
2798     if (runtime)
2799         rop = doeval(G_SCALAR, startop, runcv, PL_curcop->cop_seq);
2800     else
2801         rop = doeval(G_SCALAR, startop, PL_compcv, PL_cop_seqmax);
2802     POPBLOCK(cx,PL_curpm);
2803     POPEVAL(cx);
2804
2805     (*startop)->op_type = OP_NULL;
2806     (*startop)->op_ppaddr = PL_ppaddr[OP_NULL];
2807     lex_end();
2808     /* XXX DAPM do this properly one year */
2809     *padp = (AV*)SvREFCNT_inc(PL_comppad);
2810     LEAVE;
2811     if (IN_PERL_COMPILETIME)
2812         PL_compiling.op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
2813 #ifdef OP_IN_REGISTER
2814     op = PL_opsave;
2815 #endif
2816     return rop;
2817 }
2818
2819
2820 /*
2821 =for apidoc find_runcv
2822
2823 Locate the CV corresponding to the currently executing sub or eval.
2824 If db_seqp is non_null, skip CVs that are in the DB package and populate
2825 *db_seqp with the cop sequence number at the point that the DB:: code was
2826 entered. (allows debuggers to eval in the scope of the breakpoint rather
2827 than in in the scope of the debugger itself).
2828
2829 =cut
2830 */
2831
2832 CV*
2833 Perl_find_runcv(pTHX_ U32 *db_seqp)
2834 {
2835     PERL_SI      *si;
2836
2837     if (db_seqp)
2838         *db_seqp = PL_curcop->cop_seq;
2839     for (si = PL_curstackinfo; si; si = si->si_prev) {
2840         I32 ix;
2841         for (ix = si->si_cxix; ix >= 0; ix--) {
2842             const PERL_CONTEXT *cx = &(si->si_cxstack[ix]);
2843             if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
2844                 CV *cv = cx->blk_sub.cv;
2845                 /* skip DB:: code */
2846                 if (db_seqp && PL_debstash && CvSTASH(cv) == PL_debstash) {
2847                     *db_seqp = cx->blk_oldcop->cop_seq;
2848                     continue;
2849                 }
2850                 return cv;
2851             }
2852             else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx))
2853                 return PL_compcv;
2854         }
2855     }
2856     return PL_main_cv;
2857 }
2858
2859
2860 /* Compile a require/do, an eval '', or a /(?{...})/.
2861  * In the last case, startop is non-null, and contains the address of
2862  * a pointer that should be set to the just-compiled code.
2863  * outside is the lexically enclosing CV (if any) that invoked us.
2864  */
2865
2866 /* With USE_5005THREADS, eval_owner must be held on entry to doeval */
2867 STATIC OP *
2868 S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq)
2869 {
2870     dVAR; dSP;
2871     OP *saveop = PL_op;
2872
2873     PL_in_eval = ((saveop && saveop->op_type == OP_REQUIRE)
2874                   ? (EVAL_INREQUIRE | (PL_in_eval & EVAL_INEVAL))
2875                   : EVAL_INEVAL);
2876
2877     PUSHMARK(SP);
2878
2879     SAVESPTR(PL_compcv);
2880     PL_compcv = (CV*)NEWSV(1104,0);
2881     sv_upgrade((SV *)PL_compcv, SVt_PVCV);
2882     CvEVAL_on(PL_compcv);
2883     assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
2884     cxstack[cxstack_ix].blk_eval.cv = PL_compcv;
2885
2886     CvOUTSIDE_SEQ(PL_compcv) = seq;
2887     CvOUTSIDE(PL_compcv) = (CV*)SvREFCNT_inc(outside);
2888
2889     /* set up a scratch pad */
2890
2891     CvPADLIST(PL_compcv) = pad_new(padnew_SAVE);
2892
2893
2894     SAVEMORTALIZESV(PL_compcv); /* must remain until end of current statement */
2895
2896     /* make sure we compile in the right package */
2897
2898     if (CopSTASH_ne(PL_curcop, PL_curstash)) {
2899         SAVESPTR(PL_curstash);
2900         PL_curstash = CopSTASH(PL_curcop);
2901     }
2902     SAVESPTR(PL_beginav);
2903     PL_beginav = newAV();
2904     SAVEFREESV(PL_beginav);
2905     SAVEI32(PL_error_count);
2906
2907     /* try to compile it */
2908
2909     PL_eval_root = Nullop;
2910     PL_error_count = 0;
2911     PL_curcop = &PL_compiling;
2912     PL_curcop->cop_arybase = 0;
2913     if (saveop && saveop->op_flags & OPf_SPECIAL)
2914         PL_in_eval |= EVAL_KEEPERR;
2915     else
2916         sv_setpv(ERRSV,"");
2917     if (yyparse() || PL_error_count || !PL_eval_root) {
2918         SV **newsp;                     /* Used by POPBLOCK. */
2919        PERL_CONTEXT *cx = &cxstack[cxstack_ix];
2920         I32 optype = 0;                 /* Might be reset by POPEVAL. */
2921         STRLEN n_a;
2922
2923         PL_op = saveop;
2924         if (PL_eval_root) {
2925             op_free(PL_eval_root);
2926             PL_eval_root = Nullop;
2927         }
2928         SP = PL_stack_base + POPMARK;           /* pop original mark */
2929         if (!startop) {
2930             POPBLOCK(cx,PL_curpm);
2931             POPEVAL(cx);
2932         }
2933         lex_end();
2934         LEAVE;
2935         if (optype == OP_REQUIRE) {
2936             const char* msg = SvPVx(ERRSV, n_a);
2937            SV *nsv = cx->blk_eval.old_namesv;
2938            (void)hv_store(GvHVn(PL_incgv), SvPVX(nsv), SvCUR(nsv),
2939                           &PL_sv_undef, 0);
2940             DIE(aTHX_ "%sCompilation failed in require",
2941                 *msg ? msg : "Unknown error\n");
2942         }
2943         else if (startop) {
2944             const char* msg = SvPVx(ERRSV, n_a);
2945
2946             POPBLOCK(cx,PL_curpm);
2947             POPEVAL(cx);
2948             Perl_croak(aTHX_ "%sCompilation failed in regexp",
2949                        (*msg ? msg : "Unknown error\n"));
2950         }
2951         else {
2952             const char* msg = SvPVx(ERRSV, n_a);
2953             if (!*msg) {
2954                 sv_setpv(ERRSV, "Compilation error");
2955             }
2956         }
2957         RETPUSHUNDEF;
2958     }
2959     CopLINE_set(&PL_compiling, 0);
2960     if (startop) {
2961         *startop = PL_eval_root;
2962     } else
2963         SAVEFREEOP(PL_eval_root);
2964
2965     /* Set the context for this new optree.
2966      * If the last op is an OP_REQUIRE, force scalar context.
2967      * Otherwise, propagate the context from the eval(). */
2968     if (PL_eval_root->op_type == OP_LEAVEEVAL
2969             && cUNOPx(PL_eval_root)->op_first->op_type == OP_LINESEQ
2970             && cLISTOPx(cUNOPx(PL_eval_root)->op_first)->op_last->op_type
2971             == OP_REQUIRE)
2972         scalar(PL_eval_root);
2973     else if (gimme & G_VOID)
2974         scalarvoid(PL_eval_root);
2975     else if (gimme & G_ARRAY)
2976         list(PL_eval_root);
2977     else
2978         scalar(PL_eval_root);
2979
2980     DEBUG_x(dump_eval());
2981
2982     /* Register with debugger: */
2983     if (PERLDB_INTER && saveop->op_type == OP_REQUIRE) {
2984         CV *cv = get_cv("DB::postponed", FALSE);
2985         if (cv) {
2986             dSP;
2987             PUSHMARK(SP);
2988             XPUSHs((SV*)CopFILEGV(&PL_compiling));
2989             PUTBACK;
2990             call_sv((SV*)cv, G_DISCARD);
2991         }
2992     }
2993
2994     /* compiled okay, so do it */
2995
2996     CvDEPTH(PL_compcv) = 1;
2997     SP = PL_stack_base + POPMARK;               /* pop original mark */
2998     PL_op = saveop;                     /* The caller may need it. */
2999     PL_lex_state = LEX_NOTPARSING;      /* $^S needs this. */
3000
3001     RETURNOP(PL_eval_start);
3002 }
3003
3004 STATIC PerlIO *
3005 S_doopen_pm(pTHX_ const char *name, const char *mode)
3006 {
3007 #ifndef PERL_DISABLE_PMC
3008     STRLEN namelen = strlen(name);
3009     PerlIO *fp;
3010
3011     if (namelen > 3 && strEQ(name + namelen - 3, ".pm")) {
3012         SV *pmcsv = Perl_newSVpvf(aTHX_ "%s%c", name, 'c');
3013         const char * const pmc = SvPV_nolen(pmcsv);
3014         Stat_t pmstat;
3015         Stat_t pmcstat;
3016         if (PerlLIO_stat(pmc, &pmcstat) < 0) {
3017             fp = PerlIO_open(name, mode);
3018         }
3019         else {
3020             if (PerlLIO_stat(name, &pmstat) < 0 ||
3021                 pmstat.st_mtime < pmcstat.st_mtime)
3022             {
3023                 fp = PerlIO_open(pmc, mode);
3024             }
3025             else {
3026                 fp = PerlIO_open(name, mode);
3027             }
3028         }
3029         SvREFCNT_dec(pmcsv);
3030     }
3031     else {
3032         fp = PerlIO_open(name, mode);
3033     }
3034     return fp;
3035 #else
3036     return PerlIO_open(name, mode);
3037 #endif /* !PERL_DISABLE_PMC */
3038 }
3039
3040 PP(pp_require)
3041 {
3042     dVAR; dSP;
3043     register PERL_CONTEXT *cx;
3044     SV *sv;
3045     char *name;
3046     STRLEN len;
3047     char *tryname = Nullch;
3048     SV *namesv = Nullsv;
3049     SV** svp;
3050     I32 gimme = GIMME_V;
3051     PerlIO *tryrsfp = 0;
3052     STRLEN n_a;
3053     int filter_has_file = 0;
3054     GV *filter_child_proc = 0;
3055     SV *filter_state = 0;
3056     SV *filter_sub = 0;
3057     SV *hook_sv = 0;
3058     SV *encoding;
3059     OP *op;
3060
3061     sv = POPs;
3062     if ( (SvNIOKp(sv) || SvVOK(sv)) && PL_op->op_type != OP_DOFILE) {
3063         if ( SvVOK(sv) && ckWARN(WARN_PORTABLE) )       /* require v5.6.1 */
3064                 Perl_warner(aTHX_ packWARN(WARN_PORTABLE),
3065                         "v-string in use/require non-portable");
3066
3067         sv = new_version(sv);
3068         if (!sv_derived_from(PL_patchlevel, "version"))
3069             (void *)upg_version(PL_patchlevel);
3070         if ( vcmp(sv,PL_patchlevel) > 0 )
3071             DIE(aTHX_ "Perl v%"SVf" required--this is only v%"SVf", stopped",
3072                 vstringify(sv), vstringify(PL_patchlevel));
3073
3074             RETPUSHYES;
3075     }
3076     name = SvPV(sv, len);
3077     if (!(name && len > 0 && *name))
3078         DIE(aTHX_ "Null filename used");
3079     TAINT_PROPER("require");
3080     if (PL_op->op_type == OP_REQUIRE &&
3081        (svp = hv_fetch(GvHVn(PL_incgv), name, len, 0))) {
3082        if (*svp != &PL_sv_undef)
3083            RETPUSHYES;
3084        else
3085            DIE(aTHX_ "Compilation failed in require");
3086     }
3087
3088     /* prepare to compile file */
3089
3090     if (path_is_absolute(name)) {
3091         tryname = name;
3092         tryrsfp = doopen_pm(name,PERL_SCRIPT_MODE);
3093     }
3094 #ifdef MACOS_TRADITIONAL
3095     if (!tryrsfp) {
3096         char newname[256];
3097
3098         MacPerl_CanonDir(name, newname, 1);
3099         if (path_is_absolute(newname)) {
3100             tryname = newname;
3101             tryrsfp = doopen_pm(newname,PERL_SCRIPT_MODE);
3102         }
3103     }
3104 #endif
3105     if (!tryrsfp) {
3106         AV *ar = GvAVn(PL_incgv);
3107         I32 i;
3108 #ifdef VMS
3109         char *unixname;
3110         if ((unixname = tounixspec(name, Nullch)) != Nullch)
3111 #endif
3112         {
3113             namesv = NEWSV(806, 0);
3114             for (i = 0; i <= AvFILL(ar); i++) {
3115                 SV *dirsv = *av_fetch(ar, i, TRUE);
3116
3117                 if (SvROK(dirsv)) {
3118                     int count;
3119                     SV *loader = dirsv;
3120
3121                     if (SvTYPE(SvRV(loader)) == SVt_PVAV
3122                         && !sv_isobject(loader))
3123                     {
3124                         loader = *av_fetch((AV *)SvRV(loader), 0, TRUE);
3125                     }
3126
3127                     Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%"UVxf"/%s",
3128                                    PTR2UV(SvRV(dirsv)), name);
3129                     tryname = SvPVX(namesv);
3130                     tryrsfp = 0;
3131
3132                     ENTER;
3133                     SAVETMPS;
3134                     EXTEND(SP, 2);
3135
3136                     PUSHMARK(SP);
3137                     PUSHs(dirsv);
3138                     PUSHs(sv);
3139                     PUTBACK;
3140                     if (sv_isobject(loader))
3141                         count = call_method("INC", G_ARRAY);
3142                     else
3143                         count = call_sv(loader, G_ARRAY);
3144                     SPAGAIN;
3145
3146                     if (count > 0) {
3147                         int i = 0;
3148                         SV *arg;
3149
3150                         SP -= count - 1;
3151                         arg = SP[i++];
3152
3153                         if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVGV) {
3154                             arg = SvRV(arg);
3155                         }
3156
3157                         if (SvTYPE(arg) == SVt_PVGV) {
3158                             IO *io = GvIO((GV *)arg);
3159
3160                             ++filter_has_file;
3161
3162                             if (io) {
3163                                 tryrsfp = IoIFP(io);
3164                                 if (IoTYPE(io) == IoTYPE_PIPE) {
3165                                     /* reading from a child process doesn't
3166                                        nest -- when returning from reading
3167                                        the inner module, the outer one is
3168                                        unreadable (closed?)  I've tried to
3169                                        save the gv to manage the lifespan of
3170                                        the pipe, but this didn't help. XXX */
3171                                     filter_child_proc = (GV *)arg;
3172                                     (void)SvREFCNT_inc(filter_child_proc);
3173                                 }
3174                                 else {
3175                                     if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
3176                                         PerlIO_close(IoOFP(io));
3177                                     }
3178                                     IoIFP(io) = Nullfp;
3179                                     IoOFP(io) = Nullfp;
3180                                 }
3181                             }
3182
3183                             if (i < count) {
3184                                 arg = SP[i++];
3185                             }
3186                         }
3187
3188                         if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) {
3189                             filter_sub = arg;
3190                             (void)SvREFCNT_inc(filter_sub);
3191
3192                             if (i < count) {
3193                                 filter_state = SP[i];
3194                                 (void)SvREFCNT_inc(filter_state);
3195                             }
3196
3197                             if (tryrsfp == 0) {
3198                                 tryrsfp = PerlIO_open("/dev/null",
3199                                                       PERL_SCRIPT_MODE);
3200                             }
3201                         }
3202                         SP--;
3203                     }
3204
3205                     PUTBACK;
3206                     FREETMPS;
3207                     LEAVE;
3208
3209                     if (tryrsfp) {
3210                         hook_sv = dirsv;
3211                         break;
3212                     }
3213
3214                     filter_has_file = 0;
3215                     if (filter_child_proc) {
3216                         SvREFCNT_dec(filter_child_proc);
3217                         filter_child_proc = 0;
3218                     }
3219                     if (filter_state) {
3220                         SvREFCNT_dec(filter_state);
3221                         filter_state = 0;
3222                     }
3223                     if (filter_sub) {
3224                         SvREFCNT_dec(filter_sub);
3225                         filter_sub = 0;
3226                     }
3227                 }
3228                 else {
3229                   if (!path_is_absolute(name)
3230 #ifdef MACOS_TRADITIONAL
3231                         /* We consider paths of the form :a:b ambiguous and interpret them first
3232                            as global then as local
3233                         */
3234                         || (*name == ':' && name[1] != ':' && strchr(name+2, ':'))
3235 #endif
3236                   ) {
3237                     char *dir = SvPVx(dirsv, n_a);
3238 #ifdef MACOS_TRADITIONAL
3239                     char buf1[256];
3240                     char buf2[256];
3241
3242                     MacPerl_CanonDir(name, buf2, 1);
3243                     Perl_sv_setpvf(aTHX_ namesv, "%s%s", MacPerl_CanonDir(dir, buf1, 0), buf2+(buf2[0] == ':'));
3244 #else
3245 #  ifdef VMS
3246                     char *unixdir;
3247                     if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
3248                         continue;
3249                     sv_setpv(namesv, unixdir);
3250                     sv_catpv(namesv, unixname);
3251 #  else
3252 #    ifdef SYMBIAN
3253                     if (PL_origfilename[0] &&
3254                         PL_origfilename[1] == ':' &&
3255                         !(dir[0] && dir[1] == ':'))
3256                         Perl_sv_setpvf(aTHX_ namesv,
3257                                        "%c:%s\\%s",
3258                                        PL_origfilename[0],
3259                                        dir, name);
3260                     else
3261                         Perl_sv_setpvf(aTHX_ namesv,
3262                                        "%s\\%s",
3263                                        dir, name);
3264 #    else
3265                     Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir, name);
3266 #    endif
3267 #  endif
3268 #endif
3269                     TAINT_PROPER("require");
3270                     tryname = SvPVX(namesv);
3271                     tryrsfp = doopen_pm(tryname, PERL_SCRIPT_MODE);
3272                     if (tryrsfp) {
3273                         if (tryname[0] == '.' && tryname[1] == '/')
3274                             tryname += 2;
3275                         break;
3276                     }
3277                   }
3278                 }
3279             }
3280         }
3281     }
3282     SAVECOPFILE_FREE(&PL_compiling);
3283     CopFILE_set(&PL_compiling, tryrsfp ? tryname : name);
3284     SvREFCNT_dec(namesv);
3285     if (!tryrsfp) {
3286         if (PL_op->op_type == OP_REQUIRE) {
3287             char *msgstr = name;
3288             if (namesv) {                       /* did we lookup @INC? */
3289                 SV *msg = sv_2mortal(newSVpv(msgstr,0));
3290                 SV *dirmsgsv = NEWSV(0, 0);
3291                 AV *ar = GvAVn(PL_incgv);
3292                 I32 i;
3293                 sv_catpvn(msg, " in @INC", 8);
3294                 if (instr(SvPVX(msg), ".h "))
3295                     sv_catpv(msg, " (change .h to .ph maybe?)");
3296                 if (instr(SvPVX(msg), ".ph "))
3297                     sv_catpv(msg, " (did you run h2ph?)");
3298                 sv_catpv(msg, " (@INC contains:");
3299                 for (i = 0; i <= AvFILL(ar); i++) {
3300                     char *dir = SvPVx(*av_fetch(ar, i, TRUE), n_a);
3301                     Perl_sv_setpvf(aTHX_ dirmsgsv, " %s", dir);
3302                     sv_catsv(msg, dirmsgsv);
3303                 }
3304                 sv_catpvn(msg, ")", 1);
3305                 SvREFCNT_dec(dirmsgsv);
3306                 msgstr = SvPV_nolen(msg);
3307             }
3308             DIE(aTHX_ "Can't locate %s", msgstr);
3309         }
3310
3311         RETPUSHUNDEF;
3312     }
3313     else
3314         SETERRNO(0, SS_NORMAL);
3315
3316     /* Assume success here to prevent recursive requirement. */
3317     len = strlen(name);
3318     /* Check whether a hook in @INC has already filled %INC */
3319     if (!hook_sv || !(svp = hv_fetch(GvHVn(PL_incgv), name, len, 0))) {
3320         (void)hv_store(GvHVn(PL_incgv), name, len,
3321                        (hook_sv ? SvREFCNT_inc(hook_sv)
3322                                 : newSVpv(CopFILE(&PL_compiling), 0)),
3323                        0 );
3324     }
3325
3326     ENTER;
3327     SAVETMPS;
3328     lex_start(sv_2mortal(newSVpvn("",0)));
3329     SAVEGENERICSV(PL_rsfp_filters);
3330     PL_rsfp_filters = Nullav;
3331
3332     PL_rsfp = tryrsfp;
3333     SAVEHINTS();
3334     PL_hints = 0;
3335     SAVESPTR(PL_compiling.cop_warnings);
3336     if (PL_dowarn & G_WARN_ALL_ON)
3337         PL_compiling.cop_warnings = pWARN_ALL ;
3338     else if (PL_dowarn & G_WARN_ALL_OFF)
3339         PL_compiling.cop_warnings = pWARN_NONE ;
3340     else if (PL_taint_warn)
3341         PL_compiling.cop_warnings = newSVpvn(WARN_TAINTstring, WARNsize);
3342     else
3343         PL_compiling.cop_warnings = pWARN_STD ;
3344     SAVESPTR(PL_compiling.cop_io);
3345     PL_compiling.cop_io = Nullsv;
3346
3347     if (filter_sub || filter_child_proc) {
3348         SV *datasv = filter_add(run_user_filter, Nullsv);
3349         IoLINES(datasv) = filter_has_file;
3350         IoFMT_GV(datasv) = (GV *)filter_child_proc;
3351         IoTOP_GV(datasv) = (GV *)filter_state;
3352         IoBOTTOM_GV(datasv) = (GV *)filter_sub;
3353     }
3354
3355     /* switch to eval mode */
3356     PUSHBLOCK(cx, CXt_EVAL, SP);
3357     PUSHEVAL(cx, name, Nullgv);
3358     cx->blk_eval.retop = PL_op->op_next;
3359
3360     SAVECOPLINE(&PL_compiling);
3361     CopLINE_set(&PL_compiling, 0);
3362
3363     PUTBACK;
3364
3365     /* Store and reset encoding. */
3366     encoding = PL_encoding;
3367     PL_encoding = Nullsv;
3368
3369     op = DOCATCH(doeval(gimme, NULL, Nullcv, PL_curcop->cop_seq));
3370
3371     /* Restore encoding. */
3372     PL_encoding = encoding;
3373
3374     return op;
3375 }
3376
3377 PP(pp_dofile)
3378 {
3379     return pp_require();
3380 }
3381
3382 PP(pp_entereval)
3383 {
3384     dVAR; dSP;
3385     register PERL_CONTEXT *cx;
3386     dPOPss;
3387     I32 gimme = GIMME_V, was = PL_sub_generation;
3388     char tbuf[TYPE_DIGITS(long) + 12];
3389     char *tmpbuf = tbuf;
3390     char *safestr;
3391     STRLEN len;
3392     OP *ret;
3393     CV* runcv;
3394     U32 seq;
3395
3396     if (!SvPV(sv,len))
3397         RETPUSHUNDEF;
3398     TAINT_PROPER("eval");
3399
3400     ENTER;
3401     lex_start(sv);
3402     SAVETMPS;
3403
3404     /* switch to eval mode */
3405
3406     if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
3407         SV *sv = sv_newmortal();
3408         Perl_sv_setpvf(aTHX_ sv, "_<(eval %lu)[%s:%"IVdf"]",
3409                        (unsigned long)++PL_evalseq,
3410                        CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
3411         tmpbuf = SvPVX(sv);
3412     }
3413     else
3414         sprintf(tmpbuf, "_<(eval %lu)", (unsigned long)++PL_evalseq);
3415     SAVECOPFILE_FREE(&PL_compiling);
3416     CopFILE_set(&PL_compiling, tmpbuf+2);
3417     SAVECOPLINE(&PL_compiling);
3418     CopLINE_set(&PL_compiling, 1);
3419     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
3420        deleting the eval's FILEGV from the stash before gv_check() runs
3421        (i.e. before run-time proper). To work around the coredump that
3422        ensues, we always turn GvMULTI_on for any globals that were
3423        introduced within evals. See force_ident(). GSAR 96-10-12 */
3424     safestr = savepv(tmpbuf);
3425     SAVEDELETE(PL_defstash, safestr, strlen(safestr));
3426     SAVEHINTS();
3427     PL_hints = PL_op->op_targ;
3428     SAVESPTR(PL_compiling.cop_warnings);
3429     if (specialWARN(PL_curcop->cop_warnings))
3430         PL_compiling.cop_warnings = PL_curcop->cop_warnings;
3431     else {
3432         PL_compiling.cop_warnings = newSVsv(PL_curcop->cop_warnings);
3433         SAVEFREESV(PL_compiling.cop_warnings);
3434     }
3435     SAVESPTR(PL_compiling.cop_io);
3436     if (specialCopIO(PL_curcop->cop_io))
3437         PL_compiling.cop_io = PL_curcop->cop_io;
3438     else {
3439         PL_compiling.cop_io = newSVsv(PL_curcop->cop_io);
3440         SAVEFREESV(PL_compiling.cop_io);
3441     }
3442     /* special case: an eval '' executed within the DB package gets lexically
3443      * placed in the first non-DB CV rather than the current CV - this
3444      * allows the debugger to execute code, find lexicals etc, in the
3445      * scope of the code being debugged. Passing &seq gets find_runcv
3446      * to do the dirty work for us */
3447     runcv = find_runcv(&seq);
3448
3449     PUSHBLOCK(cx, (CXt_EVAL|CXp_REAL), SP);
3450     PUSHEVAL(cx, 0, Nullgv);
3451     cx->blk_eval.retop = PL_op->op_next;
3452
3453     /* prepare to compile string */
3454
3455     if (PERLDB_LINE && PL_curstash != PL_debstash)
3456         save_lines(CopFILEAV(&PL_compiling), PL_linestr);
3457     PUTBACK;
3458     ret = doeval(gimme, NULL, runcv, seq);
3459     if (PERLDB_INTER && was != (I32)PL_sub_generation /* Some subs defined here. */
3460         && ret != PL_op->op_next) {     /* Successive compilation. */
3461         strcpy(safestr, "_<(eval )");   /* Anything fake and short. */
3462     }
3463     return DOCATCH(ret);
3464 }
3465
3466 PP(pp_leaveeval)
3467 {
3468     dVAR; dSP;
3469     register SV **mark;
3470     SV **newsp;
3471     PMOP *newpm;
3472     I32 gimme;
3473     register PERL_CONTEXT *cx;
3474     OP *retop;
3475     const U8 save_flags = PL_op -> op_flags;
3476     I32 optype;
3477
3478     POPBLOCK(cx,newpm);
3479     POPEVAL(cx);
3480     retop = cx->blk_eval.retop;
3481
3482     TAINT_NOT;
3483     if (gimme == G_VOID)
3484         MARK = newsp;
3485     else if (gimme == G_SCALAR) {
3486         MARK = newsp + 1;
3487         if (MARK <= SP) {
3488             if (SvFLAGS(TOPs) & SVs_TEMP)
3489                 *MARK = TOPs;
3490             else
3491                 *MARK = sv_mortalcopy(TOPs);
3492         }
3493         else {
3494             MEXTEND(mark,0);
3495             *MARK = &PL_sv_undef;
3496         }
3497         SP = MARK;
3498     }
3499     else {
3500         /* in case LEAVE wipes old return values */
3501         for (mark = newsp + 1; mark <= SP; mark++) {
3502             if (!(SvFLAGS(*mark) & SVs_TEMP)) {
3503                 *mark = sv_mortalcopy(*mark);
3504                 TAINT_NOT;      /* Each item is independent */
3505             }
3506         }
3507     }
3508     PL_curpm = newpm;   /* Don't pop $1 et al till now */
3509
3510 #ifdef DEBUGGING
3511     assert(CvDEPTH(PL_compcv) == 1);
3512 #endif
3513     CvDEPTH(PL_compcv) = 0;
3514     lex_end();
3515
3516     if (optype == OP_REQUIRE &&
3517         !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
3518     {
3519         /* Unassume the success we assumed earlier. */
3520         SV *nsv = cx->blk_eval.old_namesv;
3521         (void)hv_delete(GvHVn(PL_incgv), SvPVX(nsv), SvCUR(nsv), G_DISCARD);
3522         retop = Perl_die(aTHX_ "%"SVf" did not return a true value", nsv);
3523         /* die_where() did LEAVE, or we won't be here */
3524     }
3525     else {
3526         LEAVE;
3527         if (!(save_flags & OPf_SPECIAL))
3528             sv_setpv(ERRSV,"");
3529     }
3530
3531     RETURNOP(retop);
3532 }
3533
3534 PP(pp_entertry)
3535 {
3536     dVAR; dSP;
3537     register PERL_CONTEXT *cx;
3538     I32 gimme = GIMME_V;
3539
3540     ENTER;
3541     SAVETMPS;
3542
3543     PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), SP);
3544     PUSHEVAL(cx, 0, 0);
3545     cx->blk_eval.retop = cLOGOP->op_other->op_next;
3546
3547     PL_in_eval = EVAL_INEVAL;
3548     sv_setpv(ERRSV,"");
3549     PUTBACK;
3550     return DOCATCH(PL_op->op_next);
3551 }
3552
3553 PP(pp_leavetry)
3554 {
3555     dVAR; dSP;
3556     register SV **mark;
3557     SV **newsp;
3558     PMOP *newpm;
3559     I32 gimme;
3560     register PERL_CONTEXT *cx;
3561     I32 optype;
3562
3563     POPBLOCK(cx,newpm);
3564     POPEVAL(cx);
3565
3566     TAINT_NOT;
3567     if (gimme == G_VOID)
3568         SP = newsp;
3569     else if (gimme == G_SCALAR) {
3570         MARK = newsp + 1;
3571         if (MARK <= SP) {
3572             if (SvFLAGS(TOPs) & (SVs_PADTMP|SVs_TEMP))
3573                 *MARK = TOPs;
3574             else
3575                 *MARK = sv_mortalcopy(TOPs);
3576         }
3577         else {
3578             MEXTEND(mark,0);
3579             *MARK = &PL_sv_undef;
3580         }
3581         SP = MARK;
3582     }
3583     else {
3584         /* in case LEAVE wipes old return values */
3585         for (mark = newsp + 1; mark <= SP; mark++) {
3586             if (!(SvFLAGS(*mark) & (SVs_PADTMP|SVs_TEMP))) {
3587                 *mark = sv_mortalcopy(*mark);
3588                 TAINT_NOT;      /* Each item is independent */
3589             }
3590         }
3591     }
3592     PL_curpm = newpm;   /* Don't pop $1 et al till now */
3593
3594     LEAVE;
3595     sv_setpv(ERRSV,"");
3596     RETURN;
3597 }
3598
3599 STATIC OP *
3600 S_doparseform(pTHX_ SV *sv)
3601 {
3602     STRLEN len;
3603     register char *s = SvPV_force(sv, len);
3604     register char *send = s + len;
3605     register char *base = Nullch;
3606     register I32 skipspaces = 0;
3607     bool noblank   = FALSE;
3608     bool repeat    = FALSE;
3609     bool postspace = FALSE;
3610     U32 *fops;
3611     register U32 *fpc;
3612     U32 *linepc = 0;
3613     register I32 arg;
3614     bool ischop;
3615     bool unchopnum = FALSE;
3616     int maxops = 12; /* FF_LINEMARK + FF_END + 10 (\0 without preceding \n) */
3617
3618     if (len == 0)
3619         Perl_croak(aTHX_ "Null picture in formline");
3620
3621     /* estimate the buffer size needed */
3622     for (base = s; s <= send; s++) {
3623         if (*s == '\n' || *s == '@' || *s == '^')
3624             maxops += 10;
3625     }
3626     s = base;
3627     base = Nullch;
3628
3629     New(804, fops, maxops, U32);
3630     fpc = fops;
3631
3632     if (s < send) {
3633         linepc = fpc;
3634         *fpc++ = FF_LINEMARK;
3635         noblank = repeat = FALSE;
3636         base = s;
3637     }
3638
3639     while (s <= send) {
3640         switch (*s++) {
3641         default:
3642             skipspaces = 0;
3643             continue;
3644
3645         case '~':
3646             if (*s == '~') {
3647                 repeat = TRUE;
3648                 *s = ' ';
3649             }
3650             noblank = TRUE;
3651             s[-1] = ' ';
3652             /* FALL THROUGH */
3653         case ' ': case '\t':
3654             skipspaces++;
3655             continue;
3656         case 0:
3657             if (s < send) {
3658                 skipspaces = 0;
3659                 continue;
3660             } /* else FALL THROUGH */
3661         case '\n':
3662             arg = s - base;
3663             skipspaces++;
3664             arg -= skipspaces;
3665             if (arg) {
3666                 if (postspace)
3667                     *fpc++ = FF_SPACE;
3668                 *fpc++ = FF_LITERAL;
3669                 *fpc++ = (U16)arg;
3670             }
3671             postspace = FALSE;
3672             if (s <= send)
3673                 skipspaces--;
3674             if (skipspaces) {
3675                 *fpc++ = FF_SKIP;
3676                 *fpc++ = (U16)skipspaces;
3677             }
3678             skipspaces = 0;
3679             if (s <= send)
3680                 *fpc++ = FF_NEWLINE;
3681             if (noblank) {
3682                 *fpc++ = FF_BLANK;
3683                 if (repeat)
3684                     arg = fpc - linepc + 1;
3685                 else
3686                     arg = 0;
3687                 *fpc++ = (U16)arg;
3688             }
3689             if (s < send) {
3690                 linepc = fpc;
3691                 *fpc++ = FF_LINEMARK;
3692                 noblank = repeat = FALSE;
3693                 base = s;
3694             }
3695             else
3696                 s++;
3697             continue;
3698
3699         case '@':
3700         case '^':
3701             ischop = s[-1] == '^';
3702
3703             if (postspace) {
3704                 *fpc++ = FF_SPACE;
3705                 postspace = FALSE;
3706             }
3707             arg = (s - base) - 1;
3708             if (arg) {
3709                 *fpc++ = FF_LITERAL;
3710                 *fpc++ = (U16)arg;
3711             }
3712
3713             base = s - 1;
3714             *fpc++ = FF_FETCH;
3715             if (*s == '*') {
3716                 s++;
3717                 *fpc++ = 2;  /* skip the @* or ^* */
3718                 if (ischop) {
3719                     *fpc++ = FF_LINESNGL;
3720                     *fpc++ = FF_CHOP;
3721                 } else
3722                     *fpc++ = FF_LINEGLOB;
3723             }
3724             else if (*s == '#' || (*s == '.' && s[1] == '#')) {
3725                 arg = ischop ? 512 : 0;
3726                 base = s - 1;
3727                 while (*s == '#')
3728                     s++;
3729                 if (*s == '.') {
3730                     const char * const f = ++s;
3731                     while (*s == '#')
3732                         s++;
3733                     arg |= 256 + (s - f);
3734                 }
3735                 *fpc++ = s - base;              /* fieldsize for FETCH */
3736                 *fpc++ = FF_DECIMAL;
3737                 *fpc++ = (U16)arg;
3738                 unchopnum |= ! ischop;
3739             }
3740             else if (*s == '0' && s[1] == '#') {  /* Zero padded decimals */
3741                 arg = ischop ? 512 : 0;
3742                 base = s - 1;
3743                 s++;                                /* skip the '0' first */
3744                 while (*s == '#')
3745                     s++;
3746                 if (*s == '.') {
3747                     const char * const f = ++s;
3748                     while (*s == '#')
3749                         s++;
3750                     arg |= 256 + (s - f);
3751                 }
3752                 *fpc++ = s - base;                /* fieldsize for FETCH */
3753                 *fpc++ = FF_0DECIMAL;
3754                 *fpc++ = (U16)arg;
3755                 unchopnum |= ! ischop;
3756             }
3757             else {
3758                 I32 prespace = 0;
3759                 bool ismore = FALSE;
3760
3761                 if (*s == '>') {
3762                     while (*++s == '>') ;
3763                     prespace = FF_SPACE;
3764                 }
3765                 else if (*s == '|') {
3766                     while (*++s == '|') ;
3767                     prespace = FF_HALFSPACE;
3768                     postspace = TRUE;
3769                 }
3770                 else {
3771                     if (*s == '<')
3772                         while (*++s == '<') ;
3773                     postspace = TRUE;
3774                 }
3775                 if (*s == '.' && s[1] == '.' && s[2] == '.') {
3776                     s += 3;
3777                     ismore = TRUE;
3778                 }
3779                 *fpc++ = s - base;              /* fieldsize for FETCH */
3780
3781                 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
3782
3783                 if (prespace)
3784                     *fpc++ = (U16)prespace;
3785                 *fpc++ = FF_ITEM;
3786                 if (ismore)
3787                     *fpc++ = FF_MORE;
3788                 if (ischop)
3789                     *fpc++ = FF_CHOP;
3790             }
3791             base = s;
3792             skipspaces = 0;
3793             continue;
3794         }
3795     }
3796     *fpc++ = FF_END;
3797
3798     assert (fpc <= fops + maxops); /* ensure our buffer estimate was valid */
3799     arg = fpc - fops;
3800     { /* need to jump to the next word */
3801         int z;
3802         z = WORD_ALIGN - SvCUR(sv) % WORD_ALIGN;
3803         SvGROW(sv, SvCUR(sv) + z + arg * sizeof(U32) + 4);
3804         s = SvPVX(sv) + SvCUR(sv) + z;
3805     }
3806     Copy(fops, s, arg, U32);
3807     Safefree(fops);
3808     sv_magic(sv, Nullsv, PERL_MAGIC_fm, Nullch, 0);
3809     SvCOMPILED_on(sv);
3810
3811     if (unchopnum && repeat)
3812         DIE(aTHX_ "Repeated format line will never terminate (~~ and @#)");
3813     return 0;
3814 }
3815
3816
3817 STATIC bool
3818 S_num_overflow(NV value, I32 fldsize, I32 frcsize)
3819 {
3820     /* Can value be printed in fldsize chars, using %*.*f ? */
3821     NV pwr = 1;
3822     NV eps = 0.5;
3823     bool res = FALSE;
3824     int intsize = fldsize - (value < 0 ? 1 : 0);
3825
3826     if (frcsize & 256)
3827         intsize--;
3828     frcsize &= 255;
3829     intsize -= frcsize;
3830
3831     while (intsize--) pwr *= 10.0;
3832     while (frcsize--) eps /= 10.0;
3833
3834     if( value >= 0 ){
3835         if (value + eps >= pwr)
3836             res = TRUE;
3837     } else {
3838         if (value - eps <= -pwr)
3839             res = TRUE;
3840     }
3841     return res;
3842 }
3843
3844 static I32
3845 run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen)
3846 {
3847     dVAR;
3848     SV *datasv = FILTER_DATA(idx);
3849     int filter_has_file = IoLINES(datasv);
3850     GV *filter_child_proc = (GV *)IoFMT_GV(datasv);
3851     SV *filter_state = (SV *)IoTOP_GV(datasv);
3852     SV *filter_sub = (SV *)IoBOTTOM_GV(datasv);
3853     int len = 0;
3854
3855     /* I was having segfault trouble under Linux 2.2.5 after a
3856        parse error occured.  (Had to hack around it with a test
3857        for PL_error_count == 0.)  Solaris doesn't segfault --
3858        not sure where the trouble is yet.  XXX */
3859
3860     if (filter_has_file) {
3861         len = FILTER_READ(idx+1, buf_sv, maxlen);
3862     }
3863
3864     if (filter_sub && len >= 0) {
3865         dSP;
3866         int count;
3867
3868         ENTER;
3869         SAVE_DEFSV;
3870         SAVETMPS;
3871         EXTEND(SP, 2);
3872
3873         DEFSV = buf_sv;
3874         PUSHMARK(SP);
3875         PUSHs(sv_2mortal(newSViv(maxlen)));
3876         if (filter_state) {
3877             PUSHs(filter_state);
3878         }
3879         PUTBACK;
3880         count = call_sv(filter_sub, G_SCALAR);
3881         SPAGAIN;
3882
3883         if (count > 0) {
3884             SV *out = POPs;
3885             if (SvOK(out)) {
3886                 len = SvIV(out);
3887             }
3888         }
3889
3890         PUTBACK;
3891         FREETMPS;
3892         LEAVE;
3893     }
3894
3895     if (len <= 0) {
3896         IoLINES(datasv) = 0;
3897         if (filter_child_proc) {
3898             SvREFCNT_dec(filter_child_proc);
3899             IoFMT_GV(datasv) = Nullgv;
3900         }
3901         if (filter_state) {
3902             SvREFCNT_dec(filter_state);
3903             IoTOP_GV(datasv) = Nullgv;
3904         }
3905         if (filter_sub) {
3906             SvREFCNT_dec(filter_sub);
3907             IoBOTTOM_GV(datasv) = Nullgv;
3908         }
3909         filter_del(run_user_filter);
3910     }
3911
3912     return len;
3913 }
3914
3915 /* perhaps someone can come up with a better name for
3916    this?  it is not really "absolute", per se ... */
3917 static bool
3918 S_path_is_absolute(pTHX_ const char *name)
3919 {
3920     if (PERL_FILE_IS_ABSOLUTE(name)
3921 #ifdef MACOS_TRADITIONAL
3922         || (*name == ':'))
3923 #else
3924         || (*name == '.' && (name[1] == '/' ||
3925                              (name[1] == '.' && name[2] == '/'))))
3926 #endif
3927     {
3928         return TRUE;
3929     }
3930     else
3931         return FALSE;
3932 }
3933
3934 /*
3935  * Local variables:
3936  * c-indentation-style: bsd
3937  * c-basic-offset: 4
3938  * indent-tabs-mode: t
3939  * End:
3940  *
3941  * vim: shiftwidth=4:
3942 */