cd9a2105d2df4fd1d8d82ae54c661c989dbd28fd
[p5sagit/p5-mst-13.2.git] / pp_ctl.c
1 /*    pp_ctl.c
2  *
3  *    Copyright (c) 1991-1997, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * Now far ahead the Road has gone,
12  * And I must follow, if I can,
13  * Pursuing it with eager feet,
14  * Until it joins some larger way
15  * Where many paths and errands meet.
16  * And whither then?  I cannot say.
17  */
18
19 #include "EXTERN.h"
20 #include "perl.h"
21
22 #ifndef WORD_ALIGN
23 #define WORD_ALIGN sizeof(U16)
24 #endif
25
26 #define DOCATCH(o) ((CATCH_GET == TRUE) ? docatch(o) : (o))
27
28 static OP *docatch _((OP *o));
29 static OP *doeval _((int gimme));
30 static OP *dofindlabel _((OP *o, char *label, OP **opstack, OP **oplimit));
31 static void doparseform _((SV *sv));
32 static I32 dopoptoeval _((I32 startingblock));
33 static I32 dopoptolabel _((char *label));
34 static I32 dopoptoloop _((I32 startingblock));
35 static I32 dopoptosub _((I32 startingblock));
36 static void save_lines _((AV *array, SV *sv));
37 static int sortcv _((const void *, const void *));
38 static int sortcmp _((const void *, const void *));
39 static int sortcmp_locale _((const void *, const void *));
40
41 static I32 sortcxix;
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_regcomp) {
69     dSP;
70     register PMOP *pm = (PMOP*)cLOGOP->op_other;
71     register char *t;
72     SV *tmpstr;
73     STRLEN len;
74
75     tmpstr = POPs;
76     t = SvPV(tmpstr, len);
77
78     /* JMR: Check against the last compiled regexp */
79     if ( ! pm->op_pmregexp  || ! pm->op_pmregexp->precomp
80         || strnNE(pm->op_pmregexp->precomp, t, len) 
81         || pm->op_pmregexp->precomp[len]) {
82         if (pm->op_pmregexp) {
83             pregfree(pm->op_pmregexp);
84             pm->op_pmregexp = Null(REGEXP*);    /* crucial if regcomp aborts */
85         }
86
87         pm->op_pmflags = pm->op_pmpermflags;    /* reset case sensitivity */
88         pm->op_pmregexp = pregcomp(t, t + len, pm);
89     }
90
91     if (!pm->op_pmregexp->prelen && curpm)
92         pm = curpm;
93     else if (strEQ("\\s+", pm->op_pmregexp->precomp))
94         pm->op_pmflags |= PMf_WHITE;
95
96     if (pm->op_pmflags & PMf_KEEP) {
97         pm->op_private &= ~OPpRUNTIME;  /* no point compiling again */
98         hoistmust(pm);
99         cLOGOP->op_first->op_next = op->op_next;
100     }
101     RETURN;
102 }
103
104 PP(pp_substcont)
105 {
106     dSP;
107     register PMOP *pm = (PMOP*) cLOGOP->op_other;
108     register CONTEXT *cx = &cxstack[cxstack_ix];
109     register SV *dstr = cx->sb_dstr;
110     register char *s = cx->sb_s;
111     register char *m = cx->sb_m;
112     char *orig = cx->sb_orig;
113     register REGEXP *rx = cx->sb_rx;
114
115     rxres_restore(&cx->sb_rxres, rx);
116
117     if (cx->sb_iters++) {
118         if (cx->sb_iters > cx->sb_maxiters)
119             DIE("Substitution loop");
120
121         if (!cx->sb_rxtainted)
122             cx->sb_rxtainted = SvTAINTED(TOPs);
123         sv_catsv(dstr, POPs);
124
125         /* Are we done */
126         if (cx->sb_once || !pregexec(rx, s, cx->sb_strend, orig,
127                                 s == m, Nullsv, cx->sb_safebase))
128         {
129             SV *targ = cx->sb_targ;
130             sv_catpvn(dstr, s, cx->sb_strend - s);
131
132             TAINT_IF(cx->sb_rxtainted || rx->exec_tainted);
133
134             (void)SvOOK_off(targ);
135             Safefree(SvPVX(targ));
136             SvPVX(targ) = SvPVX(dstr);
137             SvCUR_set(targ, SvCUR(dstr));
138             SvLEN_set(targ, SvLEN(dstr));
139             SvPVX(dstr) = 0;
140             sv_free(dstr);
141             (void)SvPOK_only(targ);
142             SvSETMAGIC(targ);
143             SvTAINT(targ);
144
145             PUSHs(sv_2mortal(newSViv((I32)cx->sb_iters - 1)));
146             LEAVE_SCOPE(cx->sb_oldsave);
147             POPSUBST(cx);
148             RETURNOP(pm->op_next);
149         }
150     }
151     if (rx->subbase && rx->subbase != orig) {
152         m = s;
153         s = orig;
154         cx->sb_orig = orig = rx->subbase;
155         s = orig + (m - s);
156         cx->sb_strend = s + (cx->sb_strend - m);
157     }
158     cx->sb_m = m = rx->startp[0];
159     sv_catpvn(dstr, s, m-s);
160     cx->sb_s = rx->endp[0];
161     cx->sb_rxtainted |= rx->exec_tainted;
162     rxres_save(&cx->sb_rxres, rx);
163     RETURNOP(pm->op_pmreplstart);
164 }
165
166 void
167 rxres_save(rsp, rx)
168 void **rsp;
169 REGEXP *rx;
170 {
171     UV *p = (UV*)*rsp;
172     U32 i;
173
174     if (!p || p[1] < rx->nparens) {
175         i = 6 + rx->nparens * 2;
176         if (!p)
177             New(501, p, i, UV);
178         else
179             Renew(p, i, UV);
180         *rsp = (void*)p;
181     }
182
183     *p++ = (UV)rx->subbase;
184     rx->subbase = Nullch;
185
186     *p++ = rx->nparens;
187
188     *p++ = (UV)rx->subbeg;
189     *p++ = (UV)rx->subend;
190     for (i = 0; i <= rx->nparens; ++i) {
191         *p++ = (UV)rx->startp[i];
192         *p++ = (UV)rx->endp[i];
193     }
194 }
195
196 void
197 rxres_restore(rsp, rx)
198 void **rsp;
199 REGEXP *rx;
200 {
201     UV *p = (UV*)*rsp;
202     U32 i;
203
204     Safefree(rx->subbase);
205     rx->subbase = (char*)(*p);
206     *p++ = 0;
207
208     rx->nparens = *p++;
209
210     rx->subbeg = (char*)(*p++);
211     rx->subend = (char*)(*p++);
212     for (i = 0; i <= rx->nparens; ++i) {
213         rx->startp[i] = (char*)(*p++);
214         rx->endp[i] = (char*)(*p++);
215     }
216 }
217
218 void
219 rxres_free(rsp)
220 void **rsp;
221 {
222     UV *p = (UV*)*rsp;
223
224     if (p) {
225         Safefree((char*)(*p));
226         Safefree(p);
227         *rsp = Null(void*);
228     }
229 }
230
231 PP(pp_formline)
232 {
233     dSP; dMARK; dORIGMARK;
234     register SV *form = *++MARK;
235     register U16 *fpc;
236     register char *t;
237     register char *f;
238     register char *s;
239     register char *send;
240     register I32 arg;
241     register SV *sv;
242     char *item;
243     I32 itemsize;
244     I32 fieldsize;
245     I32 lines = 0;
246     bool chopspace = (strchr(chopset, ' ') != Nullch);
247     char *chophere;
248     char *linemark;
249     double value;
250     bool gotsome;
251     STRLEN len;
252
253     if (!SvMAGICAL(form) || !SvCOMPILED(form)) {
254         SvREADONLY_off(form);
255         doparseform(form);
256     }
257
258     SvPV_force(formtarget, len);
259     t = SvGROW(formtarget, len + SvCUR(form) + 1);  /* XXX SvCUR bad */
260     t += len;
261     f = SvPV(form, len);
262     /* need to jump to the next word */
263     s = f + len + WORD_ALIGN - SvCUR(form) % WORD_ALIGN;
264
265     fpc = (U16*)s;
266
267     for (;;) {
268         DEBUG_f( {
269             char *name = "???";
270             arg = -1;
271             switch (*fpc) {
272             case FF_LITERAL:    arg = fpc[1]; name = "LITERAL"; break;
273             case FF_BLANK:      arg = fpc[1]; name = "BLANK";   break;
274             case FF_SKIP:       arg = fpc[1]; name = "SKIP";    break;
275             case FF_FETCH:      arg = fpc[1]; name = "FETCH";   break;
276             case FF_DECIMAL:    arg = fpc[1]; name = "DECIMAL"; break;
277
278             case FF_CHECKNL:    name = "CHECKNL";       break;
279             case FF_CHECKCHOP:  name = "CHECKCHOP";     break;
280             case FF_SPACE:      name = "SPACE";         break;
281             case FF_HALFSPACE:  name = "HALFSPACE";     break;
282             case FF_ITEM:       name = "ITEM";          break;
283             case FF_CHOP:       name = "CHOP";          break;
284             case FF_LINEGLOB:   name = "LINEGLOB";      break;
285             case FF_NEWLINE:    name = "NEWLINE";       break;
286             case FF_MORE:       name = "MORE";          break;
287             case FF_LINEMARK:   name = "LINEMARK";      break;
288             case FF_END:        name = "END";           break;
289             }
290             if (arg >= 0)
291                 PerlIO_printf(PerlIO_stderr(), "%-16s%ld\n", name, (long) arg);
292             else
293                 PerlIO_printf(PerlIO_stderr(), "%-16s\n", name);
294         } )
295         switch (*fpc++) {
296         case FF_LINEMARK:
297             linemark = t;
298             lines++;
299             gotsome = FALSE;
300             break;
301
302         case FF_LITERAL:
303             arg = *fpc++;
304             while (arg--)
305                 *t++ = *f++;
306             break;
307
308         case FF_SKIP:
309             f += *fpc++;
310             break;
311
312         case FF_FETCH:
313             arg = *fpc++;
314             f += arg;
315             fieldsize = arg;
316
317             if (MARK < SP)
318                 sv = *++MARK;
319             else {
320                 sv = &sv_no;
321                 if (dowarn)
322                     warn("Not enough format arguments");
323             }
324             break;
325
326         case FF_CHECKNL:
327             item = s = SvPV(sv, len);
328             itemsize = len;
329             if (itemsize > fieldsize)
330                 itemsize = fieldsize;
331             send = chophere = s + itemsize;
332             while (s < send) {
333                 if (*s & ~31)
334                     gotsome = TRUE;
335                 else if (*s == '\n')
336                     break;
337                 s++;
338             }
339             itemsize = s - item;
340             break;
341
342         case FF_CHECKCHOP:
343             item = s = SvPV(sv, len);
344             itemsize = len;
345             if (itemsize <= fieldsize) {
346                 send = chophere = s + itemsize;
347                 while (s < send) {
348                     if (*s == '\r') {
349                         itemsize = s - item;
350                         break;
351                     }
352                     if (*s++ & ~31)
353                         gotsome = TRUE;
354                 }
355             }
356             else {
357                 itemsize = fieldsize;
358                 send = chophere = s + itemsize;
359                 while (s < send || (s == send && isSPACE(*s))) {
360                     if (isSPACE(*s)) {
361                         if (chopspace)
362                             chophere = s;
363                         if (*s == '\r')
364                             break;
365                     }
366                     else {
367                         if (*s & ~31)
368                             gotsome = TRUE;
369                         if (strchr(chopset, *s))
370                             chophere = s + 1;
371                     }
372                     s++;
373                 }
374                 itemsize = chophere - item;
375             }
376             break;
377
378         case FF_SPACE:
379             arg = fieldsize - itemsize;
380             if (arg) {
381                 fieldsize -= arg;
382                 while (arg-- > 0)
383                     *t++ = ' ';
384             }
385             break;
386
387         case FF_HALFSPACE:
388             arg = fieldsize - itemsize;
389             if (arg) {
390                 arg /= 2;
391                 fieldsize -= arg;
392                 while (arg-- > 0)
393                     *t++ = ' ';
394             }
395             break;
396
397         case FF_ITEM:
398             arg = itemsize;
399             s = item;
400             while (arg--) {
401 #if 'z' - 'a' != 25
402                 int ch = *t++ = *s++;
403                 if (!iscntrl(ch))
404                     t[-1] = ' ';
405 #else
406                 if ( !((*t++ = *s++) & ~31) )
407                     t[-1] = ' ';
408 #endif
409
410             }
411             break;
412
413         case FF_CHOP:
414             s = chophere;
415             if (chopspace) {
416                 while (*s && isSPACE(*s))
417                     s++;
418             }
419             sv_chop(sv,s);
420             break;
421
422         case FF_LINEGLOB:
423             item = s = SvPV(sv, len);
424             itemsize = len;
425             if (itemsize) {
426                 gotsome = TRUE;
427                 send = s + itemsize;
428                 while (s < send) {
429                     if (*s++ == '\n') {
430                         if (s == send)
431                             itemsize--;
432                         else
433                             lines++;
434                     }
435                 }
436                 SvCUR_set(formtarget, t - SvPVX(formtarget));
437                 sv_catpvn(formtarget, item, itemsize);
438                 SvGROW(formtarget, SvCUR(formtarget) + SvCUR(form) + 1);
439                 t = SvPVX(formtarget) + SvCUR(formtarget);
440             }
441             break;
442
443         case FF_DECIMAL:
444             /* If the field is marked with ^ and the value is undefined,
445                blank it out. */
446             arg = *fpc++;
447             if ((arg & 512) && !SvOK(sv)) {
448                 arg = fieldsize;
449                 while (arg--)
450                     *t++ = ' ';
451                 break;
452             }
453             gotsome = TRUE;
454             value = SvNV(sv);
455             /* Formats aren't yet marked for locales, so assume "yes". */
456             SET_NUMERIC_LOCAL();
457             if (arg & 256) {
458                 sprintf(t, "%#*.*f", (int) fieldsize, (int) arg & 255, value);
459             } else {
460                 sprintf(t, "%*.0f", (int) fieldsize, value);
461             }
462             t += fieldsize;
463             break;
464
465         case FF_NEWLINE:
466             f++;
467             while (t-- > linemark && *t == ' ') ;
468             t++;
469             *t++ = '\n';
470             break;
471
472         case FF_BLANK:
473             arg = *fpc++;
474             if (gotsome) {
475                 if (arg) {              /* repeat until fields exhausted? */
476                     *t = '\0';
477                     SvCUR_set(formtarget, t - SvPVX(formtarget));
478                     lines += FmLINES(formtarget);
479                     if (lines == 200) {
480                         arg = t - linemark;
481                         if (strnEQ(linemark, linemark - arg, arg))
482                             DIE("Runaway format");
483                     }
484                     FmLINES(formtarget) = lines;
485                     SP = ORIGMARK;
486                     RETURNOP(cLISTOP->op_first);
487                 }
488             }
489             else {
490                 t = linemark;
491                 lines--;
492             }
493             break;
494
495         case FF_MORE:
496             if (itemsize) {
497                 arg = fieldsize - itemsize;
498                 if (arg) {
499                     fieldsize -= arg;
500                     while (arg-- > 0)
501                         *t++ = ' ';
502                 }
503                 s = t - 3;
504                 if (strnEQ(s,"   ",3)) {
505                     while (s > SvPVX(formtarget) && isSPACE(s[-1]))
506                         s--;
507                 }
508                 *s++ = '.';
509                 *s++ = '.';
510                 *s++ = '.';
511             }
512             break;
513
514         case FF_END:
515             *t = '\0';
516             SvCUR_set(formtarget, t - SvPVX(formtarget));
517             FmLINES(formtarget) += lines;
518             SP = ORIGMARK;
519             RETPUSHYES;
520         }
521     }
522 }
523
524 PP(pp_grepstart)
525 {
526     dSP;
527     SV *src;
528
529     if (stack_base + *markstack_ptr == sp) {
530         (void)POPMARK;
531         if (GIMME_V == G_SCALAR)
532             XPUSHs(&sv_no);
533         RETURNOP(op->op_next->op_next);
534     }
535     stack_sp = stack_base + *markstack_ptr + 1;
536     pp_pushmark(ARGS);                          /* push dst */
537     pp_pushmark(ARGS);                          /* push src */
538     ENTER;                                      /* enter outer scope */
539
540     SAVETMPS;
541     SAVESPTR(GvSV(defgv));
542
543     ENTER;                                      /* enter inner scope */
544     SAVESPTR(curpm);
545
546     src = stack_base[*markstack_ptr];
547     SvTEMP_off(src);
548     GvSV(defgv) = src;
549
550     PUTBACK;
551     if (op->op_type == OP_MAPSTART)
552         pp_pushmark(ARGS);                      /* push top */
553     return ((LOGOP*)op->op_next)->op_other;
554 }
555
556 PP(pp_mapstart)
557 {
558     DIE("panic: mapstart");     /* uses grepstart */
559 }
560
561 PP(pp_mapwhile)
562 {
563     dSP;
564     I32 diff = (sp - stack_base) - *markstack_ptr;
565     I32 count;
566     I32 shift;
567     SV** src;
568     SV** dst; 
569
570     ++markstack_ptr[-1];
571     if (diff) {
572         if (diff > markstack_ptr[-1] - markstack_ptr[-2]) {
573             shift = diff - (markstack_ptr[-1] - markstack_ptr[-2]);
574             count = (sp - stack_base) - markstack_ptr[-1] + 2;
575             
576             EXTEND(sp,shift);
577             src = sp;
578             dst = (sp += shift);
579             markstack_ptr[-1] += shift;
580             *markstack_ptr += shift;
581             while (--count)
582                 *dst-- = *src--;
583         }
584         dst = stack_base + (markstack_ptr[-2] += diff) - 1; 
585         ++diff;
586         while (--diff)
587             *dst-- = SvTEMP(TOPs) ? POPs : sv_mortalcopy(POPs); 
588     }
589     LEAVE;                                      /* exit inner scope */
590
591     /* All done yet? */
592     if (markstack_ptr[-1] > *markstack_ptr) {
593         I32 items;
594         I32 gimme = GIMME_V;
595
596         (void)POPMARK;                          /* pop top */
597         LEAVE;                                  /* exit outer scope */
598         (void)POPMARK;                          /* pop src */
599         items = --*markstack_ptr - markstack_ptr[-1];
600         (void)POPMARK;                          /* pop dst */
601         SP = stack_base + POPMARK;              /* pop original mark */
602         if (gimme == G_SCALAR) {
603             dTARGET;
604             XPUSHi(items);
605         }
606         else if (gimme == G_ARRAY)
607             SP += items;
608         RETURN;
609     }
610     else {
611         SV *src;
612
613         ENTER;                                  /* enter inner scope */
614         SAVESPTR(curpm);
615
616         src = stack_base[markstack_ptr[-1]];
617         SvTEMP_off(src);
618         GvSV(defgv) = src;
619
620         RETURNOP(cLOGOP->op_other);
621     }
622 }
623
624
625 PP(pp_sort)
626 {
627     dSP; dMARK; dORIGMARK;
628     register SV **up;
629     SV **myorigmark = ORIGMARK;
630     register I32 max;
631     HV *stash;
632     GV *gv;
633     CV *cv;
634     I32 gimme = GIMME;
635     OP* nextop = op->op_next;
636
637     if (gimme != G_ARRAY) {
638         SP = MARK;
639         RETPUSHUNDEF;
640     }
641
642     if (op->op_flags & OPf_STACKED) {
643         ENTER;
644         if (op->op_flags & OPf_SPECIAL) {
645             OP *kid = cLISTOP->op_first->op_sibling;    /* pass pushmark */
646             kid = kUNOP->op_first;                      /* pass rv2gv */
647             kid = kUNOP->op_first;                      /* pass leave */
648             sortcop = kid->op_next;
649             stash = curcop->cop_stash;
650         }
651         else {
652             cv = sv_2cv(*++MARK, &stash, &gv, 0);
653             if (!(cv && CvROOT(cv))) {
654                 if (gv) {
655                     SV *tmpstr = sv_newmortal();
656                     gv_efullname3(tmpstr, gv, Nullch);
657                     if (cv && CvXSUB(cv))
658                         DIE("Xsub \"%s\" called in sort", SvPVX(tmpstr));
659                     DIE("Undefined sort subroutine \"%s\" called",
660                         SvPVX(tmpstr));
661                 }
662                 if (cv) {
663                     if (CvXSUB(cv))
664                         DIE("Xsub called in sort");
665                     DIE("Undefined subroutine in sort");
666                 }
667                 DIE("Not a CODE reference in sort");
668             }
669             sortcop = CvSTART(cv);
670             SAVESPTR(CvROOT(cv)->op_ppaddr);
671             CvROOT(cv)->op_ppaddr = ppaddr[OP_NULL];
672
673             SAVESPTR(curpad);
674             curpad = AvARRAY((AV*)AvARRAY(CvPADLIST(cv))[1]);
675         }
676     }
677     else {
678         sortcop = Nullop;
679         stash = curcop->cop_stash;
680     }
681
682     up = myorigmark + 1;
683     while (MARK < SP) { /* This may or may not shift down one here. */
684         /*SUPPRESS 560*/
685         if (*up = *++MARK) {                    /* Weed out nulls. */
686             SvTEMP_off(*up);
687             if (!sortcop && !SvPOK(*up))
688                 (void)sv_2pv(*up, &na);
689             up++;
690         }
691     }
692     max = --up - myorigmark;
693     if (sortcop) {
694         if (max > 1) {
695             AV *oldstack;
696             CONTEXT *cx;
697             SV** newsp;
698             bool oldcatch = CATCH_GET;
699
700             SAVETMPS;
701             SAVEOP();
702
703             oldstack = curstack;
704             if (!sortstack) {
705                 sortstack = newAV();
706                 AvREAL_off(sortstack);
707                 av_extend(sortstack, 32);
708             }
709             CATCH_SET(TRUE);
710             SWITCHSTACK(curstack, sortstack);
711             if (sortstash != stash) {
712                 firstgv = gv_fetchpv("a", TRUE, SVt_PV);
713                 secondgv = gv_fetchpv("b", TRUE, SVt_PV);
714                 sortstash = stash;
715             }
716
717             SAVESPTR(GvSV(firstgv));
718             SAVESPTR(GvSV(secondgv));
719
720             PUSHBLOCK(cx, CXt_NULL, stack_base);
721             if (!(op->op_flags & OPf_SPECIAL)) {
722                 bool hasargs = FALSE;
723                 cx->cx_type = CXt_SUB;
724                 cx->blk_gimme = G_SCALAR;
725                 PUSHSUB(cx);
726                 if (!CvDEPTH(cv))
727                     SvREFCNT_inc(cv);   /* in preparation for POPSUB */
728             }
729             sortcxix = cxstack_ix;
730
731             qsort((char*)(myorigmark+1), max, sizeof(SV*), sortcv);
732
733             POPBLOCK(cx,curpm);
734             SWITCHSTACK(sortstack, oldstack);
735             CATCH_SET(oldcatch);
736         }
737         LEAVE;
738     }
739     else {
740         if (max > 1) {
741             MEXTEND(SP, 20);    /* Can't afford stack realloc on signal. */
742             qsort((char*)(ORIGMARK+1), max, sizeof(SV*),
743                   (op->op_private & OPpLOCALE) ? sortcmp_locale : sortcmp);
744         }
745     }
746     stack_sp = ORIGMARK + max;
747     return nextop;
748 }
749
750 /* Range stuff. */
751
752 PP(pp_range)
753 {
754     if (GIMME == G_ARRAY)
755         return cCONDOP->op_true;
756     return SvTRUEx(PAD_SV(op->op_targ)) ? cCONDOP->op_false : cCONDOP->op_true;
757 }
758
759 PP(pp_flip)
760 {
761     dSP;
762
763     if (GIMME == G_ARRAY) {
764         RETURNOP(((CONDOP*)cUNOP->op_first)->op_false);
765     }
766     else {
767         dTOPss;
768         SV *targ = PAD_SV(op->op_targ);
769
770         if ((op->op_private & OPpFLIP_LINENUM)
771           ? last_in_gv && SvIV(sv) == IoLINES(GvIOp(last_in_gv))
772           : SvTRUE(sv) ) {
773             sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
774             if (op->op_flags & OPf_SPECIAL) {
775                 sv_setiv(targ, 1);
776                 RETURN;
777             }
778             else {
779                 sv_setiv(targ, 0);
780                 sp--;
781                 RETURNOP(((CONDOP*)cUNOP->op_first)->op_false);
782             }
783         }
784         sv_setpv(TARG, "");
785         SETs(targ);
786         RETURN;
787     }
788 }
789
790 PP(pp_flop)
791 {
792     dSP;
793
794     if (GIMME == G_ARRAY) {
795         dPOPPOPssrl;
796         register I32 i;
797         register SV *sv;
798         I32 max;
799
800         if (SvNIOKp(left) || !SvPOKp(left) ||
801           (looks_like_number(left) && *SvPVX(left) != '0') )
802         {
803             i = SvIV(left);
804             max = SvIV(right);
805             if (max >= i) {
806                 EXTEND_MORTAL(max - i + 1);
807                 EXTEND(SP, max - i + 1);
808             }
809             while (i <= max) {
810                 sv = sv_2mortal(newSViv(i++));
811                 PUSHs(sv);
812             }
813         }
814         else {
815             SV *final = sv_mortalcopy(right);
816             STRLEN len;
817             char *tmps = SvPV(final, len);
818
819             sv = sv_mortalcopy(left);
820             while (!SvNIOKp(sv) && SvCUR(sv) <= len &&
821                 strNE(SvPVX(sv),tmps) ) {
822                 XPUSHs(sv);
823                 sv = sv_2mortal(newSVsv(sv));
824                 sv_inc(sv);
825             }
826             if (strEQ(SvPVX(sv),tmps))
827                 XPUSHs(sv);
828         }
829     }
830     else {
831         dTOPss;
832         SV *targ = PAD_SV(cUNOP->op_first->op_targ);
833         sv_inc(targ);
834         if ((op->op_private & OPpFLIP_LINENUM)
835           ? last_in_gv && SvIV(sv) == IoLINES(GvIOp(last_in_gv))
836           : SvTRUE(sv) ) {
837             sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
838             sv_catpv(targ, "E0");
839         }
840         SETs(targ);
841     }
842
843     RETURN;
844 }
845
846 /* Control. */
847
848 static I32
849 dopoptolabel(label)
850 char *label;
851 {
852     dTHR;
853     register I32 i;
854     register CONTEXT *cx;
855
856     for (i = cxstack_ix; i >= 0; i--) {
857         cx = &cxstack[i];
858         switch (cx->cx_type) {
859         case CXt_SUBST:
860             if (dowarn)
861                 warn("Exiting substitution via %s", op_name[op->op_type]);
862             break;
863         case CXt_SUB:
864             if (dowarn)
865                 warn("Exiting subroutine via %s", op_name[op->op_type]);
866             break;
867         case CXt_EVAL:
868             if (dowarn)
869                 warn("Exiting eval via %s", op_name[op->op_type]);
870             break;
871         case CXt_NULL:
872             if (dowarn)
873                 warn("Exiting pseudo-block via %s", op_name[op->op_type]);
874             return -1;
875         case CXt_LOOP:
876             if (!cx->blk_loop.label ||
877               strNE(label, cx->blk_loop.label) ) {
878                 DEBUG_l(deb("(Skipping label #%ld %s)\n",
879                         (long)i, cx->blk_loop.label));
880                 continue;
881             }
882             DEBUG_l( deb("(Found label #%ld %s)\n", (long)i, label));
883             return i;
884         }
885     }
886     return i;
887 }
888
889 I32
890 dowantarray()
891 {
892     I32 gimme = block_gimme();
893     return (gimme == G_VOID) ? G_SCALAR : gimme;
894 }
895
896 I32
897 block_gimme()
898 {
899     dTHR;
900     I32 cxix;
901
902     cxix = dopoptosub(cxstack_ix);
903     if (cxix < 0)
904         return G_VOID;
905
906     switch (cxstack[cxix].blk_gimme) {
907     case G_VOID:
908         return G_VOID;
909     case G_SCALAR:
910         return G_SCALAR;
911     case G_ARRAY:
912         return G_ARRAY;
913     default:
914         croak("panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
915     }
916 }
917
918 static I32
919 dopoptosub(startingblock)
920 I32 startingblock;
921 {
922     dTHR;
923     I32 i;
924     register CONTEXT *cx;
925     for (i = startingblock; i >= 0; i--) {
926         cx = &cxstack[i];
927         switch (cx->cx_type) {
928         default:
929             continue;
930         case CXt_EVAL:
931         case CXt_SUB:
932             DEBUG_l( deb("(Found sub #%ld)\n", (long)i));
933             return i;
934         }
935     }
936     return i;
937 }
938
939 static I32
940 dopoptoeval(startingblock)
941 I32 startingblock;
942 {
943     dTHR;
944     I32 i;
945     register CONTEXT *cx;
946     for (i = startingblock; i >= 0; i--) {
947         cx = &cxstack[i];
948         switch (cx->cx_type) {
949         default:
950             continue;
951         case CXt_EVAL:
952             DEBUG_l( deb("(Found eval #%ld)\n", (long)i));
953             return i;
954         }
955     }
956     return i;
957 }
958
959 static I32
960 dopoptoloop(startingblock)
961 I32 startingblock;
962 {
963     dTHR;
964     I32 i;
965     register CONTEXT *cx;
966     for (i = startingblock; i >= 0; i--) {
967         cx = &cxstack[i];
968         switch (cx->cx_type) {
969         case CXt_SUBST:
970             if (dowarn)
971                 warn("Exiting substitution via %s", op_name[op->op_type]);
972             break;
973         case CXt_SUB:
974             if (dowarn)
975                 warn("Exiting subroutine via %s", op_name[op->op_type]);
976             break;
977         case CXt_EVAL:
978             if (dowarn)
979                 warn("Exiting eval via %s", op_name[op->op_type]);
980             break;
981         case CXt_NULL:
982             if (dowarn)
983                 warn("Exiting pseudo-block via %s", op_name[op->op_type]);
984             return -1;
985         case CXt_LOOP:
986             DEBUG_l( deb("(Found loop #%ld)\n", (long)i));
987             return i;
988         }
989     }
990     return i;
991 }
992
993 void
994 dounwind(cxix)
995 I32 cxix;
996 {
997     dTHR;
998     register CONTEXT *cx;
999     SV **newsp;
1000     I32 optype;
1001
1002     while (cxstack_ix > cxix) {
1003         cx = &cxstack[cxstack_ix];
1004         DEBUG_l(PerlIO_printf(Perl_debug_log, "Unwinding block %ld, type %s\n",
1005                               (long) cxstack_ix+1, block_type[cx->cx_type]));
1006         /* Note: we don't need to restore the base context info till the end. */
1007         switch (cx->cx_type) {
1008         case CXt_SUBST:
1009             POPSUBST(cx);
1010             continue;  /* not break */
1011         case CXt_SUB:
1012             POPSUB(cx);
1013             break;
1014         case CXt_EVAL:
1015             POPEVAL(cx);
1016             break;
1017         case CXt_LOOP:
1018             POPLOOP(cx);
1019             break;
1020         case CXt_NULL:
1021             break;
1022         }
1023         cxstack_ix--;
1024     }
1025 }
1026
1027 OP *
1028 die_where(message)
1029 char *message;
1030 {
1031     dTHR;
1032     if (in_eval) {
1033         I32 cxix;
1034         register CONTEXT *cx;
1035         I32 gimme;
1036         SV **newsp;
1037
1038         if (in_eval & 4) {
1039             SV **svp;
1040             STRLEN klen = strlen(message);
1041             
1042             svp = hv_fetch(GvHV(errgv), message, klen, TRUE);
1043             if (svp) {
1044                 if (!SvIOK(*svp)) {
1045                     static char prefix[] = "\t(in cleanup) ";
1046                     sv_upgrade(*svp, SVt_IV);
1047                     (void)SvIOK_only(*svp);
1048                     SvGROW(GvSV(errgv), SvCUR(GvSV(errgv))+sizeof(prefix)+klen);
1049                     sv_catpvn(GvSV(errgv), prefix, sizeof(prefix)-1);
1050                     sv_catpvn(GvSV(errgv), message, klen);
1051                 }
1052                 sv_inc(*svp);
1053             }
1054         }
1055         else
1056             sv_setpv(GvSV(errgv), message);
1057         
1058         cxix = dopoptoeval(cxstack_ix);
1059         if (cxix >= 0) {
1060             I32 optype;
1061
1062             if (cxix < cxstack_ix)
1063                 dounwind(cxix);
1064
1065             POPBLOCK(cx,curpm);
1066             if (cx->cx_type != CXt_EVAL) {
1067                 PerlIO_printf(PerlIO_stderr(), "panic: die %s", message);
1068                 my_exit(1);
1069             }
1070             POPEVAL(cx);
1071
1072             if (gimme == G_SCALAR)
1073                 *++newsp = &sv_undef;
1074             stack_sp = newsp;
1075
1076             LEAVE;
1077
1078             if (optype == OP_REQUIRE) {
1079                 char* msg = SvPVx(GvSV(errgv), na);
1080                 DIE("%s", *msg ? msg : "Compilation failed in require");
1081             }
1082             return pop_return();
1083         }
1084     }
1085     PerlIO_printf(PerlIO_stderr(), "%s",message);
1086     PerlIO_flush(PerlIO_stderr());
1087     my_failure_exit();
1088     /* NOTREACHED */
1089     return 0;
1090 }
1091
1092 PP(pp_xor)
1093 {
1094     dSP; dPOPTOPssrl;
1095     if (SvTRUE(left) != SvTRUE(right))
1096         RETSETYES;
1097     else
1098         RETSETNO;
1099 }
1100
1101 PP(pp_andassign)
1102 {
1103     dSP;
1104     if (!SvTRUE(TOPs))
1105         RETURN;
1106     else
1107         RETURNOP(cLOGOP->op_other);
1108 }
1109
1110 PP(pp_orassign)
1111 {
1112     dSP;
1113     if (SvTRUE(TOPs))
1114         RETURN;
1115     else
1116         RETURNOP(cLOGOP->op_other);
1117 }
1118         
1119 #ifdef DEPRECATED
1120 PP(pp_entersubr)
1121 {
1122     dSP;
1123     SV** mark = (stack_base + *markstack_ptr + 1);
1124     SV* cv = *mark;
1125     while (mark < sp) { /* emulate old interface */
1126         *mark = mark[1];
1127         mark++;
1128     }
1129     *sp = cv;
1130     return pp_entersub(ARGS);
1131 }
1132 #endif
1133
1134 PP(pp_caller)
1135 {
1136     dSP;
1137     register I32 cxix = dopoptosub(cxstack_ix);
1138     register CONTEXT *cx;
1139     I32 dbcxix;
1140     I32 gimme;
1141     SV *sv;
1142     I32 count = 0;
1143
1144     if (MAXARG)
1145         count = POPi;
1146     EXTEND(SP, 6);
1147     for (;;) {
1148         if (cxix < 0) {
1149             if (GIMME != G_ARRAY)
1150                 RETPUSHUNDEF;
1151             RETURN;
1152         }
1153         if (DBsub && cxix >= 0 &&
1154                 cxstack[cxix].blk_sub.cv == GvCV(DBsub))
1155             count++;
1156         if (!count--)
1157             break;
1158         cxix = dopoptosub(cxix - 1);
1159     }
1160     cx = &cxstack[cxix];
1161     if (cxstack[cxix].cx_type == CXt_SUB) {
1162         dbcxix = dopoptosub(cxix - 1);
1163         /* We expect that cxstack[dbcxix] is CXt_SUB, anyway, the
1164            field below is defined for any cx. */
1165         if (DBsub && dbcxix >= 0 && cxstack[dbcxix].blk_sub.cv == GvCV(DBsub))
1166             cx = &cxstack[dbcxix];
1167     }
1168
1169     if (GIMME != G_ARRAY) {
1170         dTARGET;
1171
1172         sv_setpv(TARG, HvNAME(cx->blk_oldcop->cop_stash));
1173         PUSHs(TARG);
1174         RETURN;
1175     }
1176
1177     PUSHs(sv_2mortal(newSVpv(HvNAME(cx->blk_oldcop->cop_stash), 0)));
1178     PUSHs(sv_2mortal(newSVpv(SvPVX(GvSV(cx->blk_oldcop->cop_filegv)), 0)));
1179     PUSHs(sv_2mortal(newSViv((I32)cx->blk_oldcop->cop_line)));
1180     if (!MAXARG)
1181         RETURN;
1182     if (cx->cx_type == CXt_SUB) { /* So is cxstack[dbcxix]. */
1183         sv = NEWSV(49, 0);
1184         gv_efullname3(sv, CvGV(cxstack[cxix].blk_sub.cv), Nullch);
1185         PUSHs(sv_2mortal(sv));
1186         PUSHs(sv_2mortal(newSViv((I32)cx->blk_sub.hasargs)));
1187     }
1188     else {
1189         PUSHs(sv_2mortal(newSVpv("(eval)",0)));
1190         PUSHs(sv_2mortal(newSViv(0)));
1191     }
1192     gimme = (I32)cx->blk_gimme;
1193     if (gimme == G_VOID)
1194         PUSHs(&sv_undef);
1195     else
1196         PUSHs(sv_2mortal(newSViv(gimme & G_ARRAY)));
1197     if (cx->cx_type == CXt_EVAL) {
1198         if (cx->blk_eval.old_op_type == OP_ENTEREVAL) {
1199             PUSHs(cx->blk_eval.cur_text);
1200             PUSHs(&sv_no);
1201         } 
1202         else if (cx->blk_eval.old_name) { /* Try blocks have old_name == 0. */
1203             /* Require, put the name. */
1204             PUSHs(sv_2mortal(newSVpv(cx->blk_eval.old_name, 0)));
1205             PUSHs(&sv_yes);
1206         }
1207     }
1208     else if (cx->cx_type == CXt_SUB &&
1209             cx->blk_sub.hasargs &&
1210             curcop->cop_stash == debstash)
1211     {
1212         AV *ary = cx->blk_sub.argarray;
1213         int off = AvARRAY(ary) - AvALLOC(ary);
1214
1215         if (!dbargs) {
1216             GV* tmpgv;
1217             dbargs = GvAV(gv_AVadd(tmpgv = gv_fetchpv("DB::args", TRUE,
1218                                 SVt_PVAV)));
1219             GvMULTI_on(tmpgv);
1220             AvREAL_off(dbargs);         /* XXX Should be REIFY */
1221         }
1222
1223         if (AvMAX(dbargs) < AvFILL(ary) + off)
1224             av_extend(dbargs, AvFILL(ary) + off);
1225         Copy(AvALLOC(ary), AvARRAY(dbargs), AvFILL(ary) + 1 + off, SV*);
1226         AvFILL(dbargs) = AvFILL(ary) + off;
1227     }
1228     RETURN;
1229 }
1230
1231 static int
1232 sortcv(a, b)
1233 const void *a;
1234 const void *b;
1235 {
1236     dTHR;
1237     SV * const *str1 = (SV * const *)a;
1238     SV * const *str2 = (SV * const *)b;
1239     I32 oldsaveix = savestack_ix;
1240     I32 oldscopeix = scopestack_ix;
1241     I32 result;
1242     GvSV(firstgv) = *str1;
1243     GvSV(secondgv) = *str2;
1244     stack_sp = stack_base;
1245     op = sortcop;
1246     runops();
1247     if (stack_sp != stack_base + 1)
1248         croak("Sort subroutine didn't return single value");
1249     if (!SvNIOKp(*stack_sp))
1250         croak("Sort subroutine didn't return a numeric value");
1251     result = SvIV(*stack_sp);
1252     while (scopestack_ix > oldscopeix) {
1253         LEAVE;
1254     }
1255     leave_scope(oldsaveix);
1256     return result;
1257 }
1258
1259 static int
1260 sortcmp(a, b)
1261 const void *a;
1262 const void *b;
1263 {
1264     return sv_cmp(*(SV * const *)a, *(SV * const *)b);
1265 }
1266
1267 static int
1268 sortcmp_locale(a, b)
1269 const void *a;
1270 const void *b;
1271 {
1272     return sv_cmp_locale(*(SV * const *)a, *(SV * const *)b);
1273 }
1274
1275 PP(pp_reset)
1276 {
1277     dSP;
1278     char *tmps;
1279
1280     if (MAXARG < 1)
1281         tmps = "";
1282     else
1283         tmps = POPp;
1284     sv_reset(tmps, curcop->cop_stash);
1285     PUSHs(&sv_yes);
1286     RETURN;
1287 }
1288
1289 PP(pp_lineseq)
1290 {
1291     return NORMAL;
1292 }
1293
1294 PP(pp_dbstate)
1295 {
1296     curcop = (COP*)op;
1297     TAINT_NOT;          /* Each statement is presumed innocent */
1298     stack_sp = stack_base + cxstack[cxstack_ix].blk_oldsp;
1299     FREETMPS;
1300
1301     if (op->op_private || SvIV(DBsingle) || SvIV(DBsignal) || SvIV(DBtrace))
1302     {
1303         SV **sp;
1304         register CV *cv;
1305         register CONTEXT *cx;
1306         I32 gimme = G_ARRAY;
1307         I32 hasargs;
1308         GV *gv;
1309
1310         gv = DBgv;
1311         cv = GvCV(gv);
1312         if (!cv)
1313             DIE("No DB::DB routine defined");
1314
1315         if (CvDEPTH(cv) >= 1 && !(debug & (1<<30))) /* don't do recursive DB::DB call */
1316             return NORMAL;
1317
1318         ENTER;
1319         SAVETMPS;
1320
1321         SAVEI32(debug);
1322         SAVESTACK_POS();
1323         debug = 0;
1324         hasargs = 0;
1325         sp = stack_sp;
1326
1327         push_return(op->op_next);
1328         PUSHBLOCK(cx, CXt_SUB, sp);
1329         PUSHSUB(cx);
1330         CvDEPTH(cv)++;
1331         (void)SvREFCNT_inc(cv);
1332         SAVESPTR(curpad);
1333         curpad = AvARRAY((AV*)*av_fetch(CvPADLIST(cv),1,FALSE));
1334         RETURNOP(CvSTART(cv));
1335     }
1336     else
1337         return NORMAL;
1338 }
1339
1340 PP(pp_scope)
1341 {
1342     return NORMAL;
1343 }
1344
1345 PP(pp_enteriter)
1346 {
1347     dSP; dMARK;
1348     register CONTEXT *cx;
1349     I32 gimme = GIMME_V;
1350     SV **svp;
1351
1352     ENTER;
1353     SAVETMPS;
1354
1355     if (op->op_targ)
1356         svp = &curpad[op->op_targ];             /* "my" variable */
1357     else
1358         svp = &GvSV((GV*)POPs);                 /* symbol table variable */
1359
1360     SAVESPTR(*svp);
1361
1362     ENTER;
1363
1364     PUSHBLOCK(cx, CXt_LOOP, SP);
1365     PUSHLOOP(cx, svp, MARK);
1366     if (op->op_flags & OPf_STACKED)
1367         cx->blk_loop.iterary = (AV*)SvREFCNT_inc(POPs);
1368     else {
1369         cx->blk_loop.iterary = curstack;
1370         AvFILL(curstack) = sp - stack_base;
1371         cx->blk_loop.iterix = MARK - stack_base;
1372     }
1373
1374     RETURN;
1375 }
1376
1377 PP(pp_enterloop)
1378 {
1379     dSP;
1380     register CONTEXT *cx;
1381     I32 gimme = GIMME_V;
1382
1383     ENTER;
1384     SAVETMPS;
1385     ENTER;
1386
1387     PUSHBLOCK(cx, CXt_LOOP, SP);
1388     PUSHLOOP(cx, 0, SP);
1389
1390     RETURN;
1391 }
1392
1393 PP(pp_leaveloop)
1394 {
1395     dSP;
1396     register CONTEXT *cx;
1397     struct block_loop cxloop;
1398     I32 gimme;
1399     SV **newsp;
1400     PMOP *newpm;
1401     SV **mark;
1402
1403     POPBLOCK(cx,newpm);
1404     mark = newsp;
1405     POPLOOP1(cx);       /* Delay POPLOOP2 until stack values are safe */
1406
1407     TAINT_NOT;
1408     if (gimme == G_VOID)
1409         ; /* do nothing */
1410     else if (gimme == G_SCALAR) {
1411         if (mark < SP)
1412             *++newsp = sv_mortalcopy(*SP);
1413         else
1414             *++newsp = &sv_undef;
1415     }
1416     else {
1417         while (mark < SP) {
1418             *++newsp = sv_mortalcopy(*++mark);
1419             TAINT_NOT;          /* Each item is independent */
1420         }
1421     }
1422     SP = newsp;
1423     PUTBACK;
1424
1425     POPLOOP2();         /* Stack values are safe: release loop vars ... */
1426     curpm = newpm;      /* ... and pop $1 et al */
1427
1428     LEAVE;
1429     LEAVE;
1430
1431     return NORMAL;
1432 }
1433
1434 PP(pp_return)
1435 {
1436     dSP; dMARK;
1437     I32 cxix;
1438     register CONTEXT *cx;
1439     struct block_sub cxsub;
1440     bool popsub2 = FALSE;
1441     I32 gimme;
1442     SV **newsp;
1443     PMOP *newpm;
1444     I32 optype = 0;
1445
1446     if (curstack == sortstack) {
1447         if (cxstack_ix == sortcxix || dopoptosub(cxstack_ix) <= sortcxix) {
1448             if (cxstack_ix > sortcxix)
1449                 dounwind(sortcxix);
1450             AvARRAY(curstack)[1] = *SP;
1451             stack_sp = stack_base + 1;
1452             return 0;
1453         }
1454     }
1455
1456     cxix = dopoptosub(cxstack_ix);
1457     if (cxix < 0)
1458         DIE("Can't return outside a subroutine");
1459     if (cxix < cxstack_ix)
1460         dounwind(cxix);
1461
1462     POPBLOCK(cx,newpm);
1463     switch (cx->cx_type) {
1464     case CXt_SUB:
1465         POPSUB1(cx);    /* Delay POPSUB2 until stack values are safe */
1466         popsub2 = TRUE;
1467         break;
1468     case CXt_EVAL:
1469         POPEVAL(cx);
1470         if (optype == OP_REQUIRE &&
1471             (MARK == SP || (gimme == G_SCALAR && !SvTRUE(*SP))) )
1472         {
1473             /* Unassume the success we assumed earlier. */
1474             char *name = cx->blk_eval.old_name;
1475             (void)hv_delete(GvHVn(incgv), name, strlen(name), G_DISCARD);
1476             DIE("%s did not return a true value", name);
1477         }
1478         break;
1479     default:
1480         DIE("panic: return");
1481     }
1482
1483     TAINT_NOT;
1484     if (gimme == G_SCALAR) {
1485         if (MARK < SP)
1486             *++newsp = (popsub2 && SvTEMP(*SP))
1487                         ? *SP : sv_mortalcopy(*SP);
1488         else
1489             *++newsp = &sv_undef;
1490     }
1491     else if (gimme == G_ARRAY) {
1492         while (++MARK <= SP) {
1493             *++newsp = (popsub2 && SvTEMP(*MARK))
1494                         ? *MARK : sv_mortalcopy(*MARK);
1495             TAINT_NOT;          /* Each item is independent */
1496         }
1497     }
1498     stack_sp = newsp;
1499
1500     /* Stack values are safe: */
1501     if (popsub2) {
1502         POPSUB2();      /* release CV and @_ ... */
1503     }
1504     curpm = newpm;      /* ... and pop $1 et al */
1505
1506     LEAVE;
1507     return pop_return();
1508 }
1509
1510 PP(pp_last)
1511 {
1512     dSP;
1513     I32 cxix;
1514     register CONTEXT *cx;
1515     struct block_loop cxloop;
1516     struct block_sub cxsub;
1517     I32 pop2 = 0;
1518     I32 gimme;
1519     I32 optype;
1520     OP *nextop;
1521     SV **newsp;
1522     PMOP *newpm;
1523     SV **mark = stack_base + cxstack[cxstack_ix].blk_oldsp;
1524
1525     if (op->op_flags & OPf_SPECIAL) {
1526         cxix = dopoptoloop(cxstack_ix);
1527         if (cxix < 0)
1528             DIE("Can't \"last\" outside a block");
1529     }
1530     else {
1531         cxix = dopoptolabel(cPVOP->op_pv);
1532         if (cxix < 0)
1533             DIE("Label not found for \"last %s\"", cPVOP->op_pv);
1534     }
1535     if (cxix < cxstack_ix)
1536         dounwind(cxix);
1537
1538     POPBLOCK(cx,newpm);
1539     switch (cx->cx_type) {
1540     case CXt_LOOP:
1541         POPLOOP1(cx);   /* Delay POPLOOP2 until stack values are safe */
1542         pop2 = CXt_LOOP;
1543         nextop = cxloop.last_op->op_next;
1544         break;
1545     case CXt_SUB:
1546         POPSUB1(cx);    /* Delay POPSUB2 until stack values are safe */
1547         pop2 = CXt_SUB;
1548         nextop = pop_return();
1549         break;
1550     case CXt_EVAL:
1551         POPEVAL(cx);
1552         nextop = pop_return();
1553         break;
1554     default:
1555         DIE("panic: last");
1556     }
1557
1558     TAINT_NOT;
1559     if (gimme == G_SCALAR) {
1560         if (MARK < SP)
1561             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*SP))
1562                         ? *SP : sv_mortalcopy(*SP);
1563         else
1564             *++newsp = &sv_undef;
1565     }
1566     else if (gimme == G_ARRAY) {
1567         while (++MARK <= SP) {
1568             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*MARK))
1569                         ? *MARK : sv_mortalcopy(*MARK);
1570             TAINT_NOT;          /* Each item is independent */
1571         }
1572     }
1573     SP = newsp;
1574     PUTBACK;
1575
1576     /* Stack values are safe: */
1577     switch (pop2) {
1578     case CXt_LOOP:
1579         POPLOOP2();     /* release loop vars ... */
1580         LEAVE;
1581         break;
1582     case CXt_SUB:
1583         POPSUB2();      /* release CV and @_ ... */
1584         break;
1585     }
1586     curpm = newpm;      /* ... and pop $1 et al */
1587
1588     LEAVE;
1589     return nextop;
1590 }
1591
1592 PP(pp_next)
1593 {
1594     I32 cxix;
1595     register CONTEXT *cx;
1596     I32 oldsave;
1597
1598     if (op->op_flags & OPf_SPECIAL) {
1599         cxix = dopoptoloop(cxstack_ix);
1600         if (cxix < 0)
1601             DIE("Can't \"next\" outside a block");
1602     }
1603     else {
1604         cxix = dopoptolabel(cPVOP->op_pv);
1605         if (cxix < 0)
1606             DIE("Label not found for \"next %s\"", cPVOP->op_pv);
1607     }
1608     if (cxix < cxstack_ix)
1609         dounwind(cxix);
1610
1611     TOPBLOCK(cx);
1612     oldsave = scopestack[scopestack_ix - 1];
1613     LEAVE_SCOPE(oldsave);
1614     return cx->blk_loop.next_op;
1615 }
1616
1617 PP(pp_redo)
1618 {
1619     I32 cxix;
1620     register CONTEXT *cx;
1621     I32 oldsave;
1622
1623     if (op->op_flags & OPf_SPECIAL) {
1624         cxix = dopoptoloop(cxstack_ix);
1625         if (cxix < 0)
1626             DIE("Can't \"redo\" outside a block");
1627     }
1628     else {
1629         cxix = dopoptolabel(cPVOP->op_pv);
1630         if (cxix < 0)
1631             DIE("Label not found for \"redo %s\"", cPVOP->op_pv);
1632     }
1633     if (cxix < cxstack_ix)
1634         dounwind(cxix);
1635
1636     TOPBLOCK(cx);
1637     oldsave = scopestack[scopestack_ix - 1];
1638     LEAVE_SCOPE(oldsave);
1639     return cx->blk_loop.redo_op;
1640 }
1641
1642 static OP* lastgotoprobe;
1643
1644 static OP *
1645 dofindlabel(o,label,opstack,oplimit)
1646 OP *o;
1647 char *label;
1648 OP **opstack;
1649 OP **oplimit;
1650 {
1651     OP *kid;
1652     OP **ops = opstack;
1653     static char too_deep[] = "Target of goto is too deeply nested";
1654
1655     if (ops >= oplimit)
1656         croak(too_deep);
1657     if (o->op_type == OP_LEAVE ||
1658         o->op_type == OP_SCOPE ||
1659         o->op_type == OP_LEAVELOOP ||
1660         o->op_type == OP_LEAVETRY)
1661     {
1662         *ops++ = cUNOPo->op_first;
1663         if (ops >= oplimit)
1664             croak(too_deep);
1665     }
1666     *ops = 0;
1667     if (o->op_flags & OPf_KIDS) {
1668         /* First try all the kids at this level, since that's likeliest. */
1669         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1670             if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
1671                     kCOP->cop_label && strEQ(kCOP->cop_label, label))
1672                 return kid;
1673         }
1674         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1675             if (kid == lastgotoprobe)
1676                 continue;
1677             if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
1678                 (ops == opstack ||
1679                  (ops[-1]->op_type != OP_NEXTSTATE &&
1680                   ops[-1]->op_type != OP_DBSTATE)))
1681                 *ops++ = kid;
1682             if (o = dofindlabel(kid, label, ops, oplimit))
1683                 return o;
1684         }
1685     }
1686     *ops = 0;
1687     return 0;
1688 }
1689
1690 PP(pp_dump)
1691 {
1692     return pp_goto(ARGS);
1693     /*NOTREACHED*/
1694 }
1695
1696 PP(pp_goto)
1697 {
1698     dSP;
1699     OP *retop = 0;
1700     I32 ix;
1701     register CONTEXT *cx;
1702 #define GOTO_DEPTH 64
1703     OP *enterops[GOTO_DEPTH];
1704     char *label;
1705     int do_dump = (op->op_type == OP_DUMP);
1706
1707     label = 0;
1708     if (op->op_flags & OPf_STACKED) {
1709         SV *sv = POPs;
1710
1711         /* This egregious kludge implements goto &subroutine */
1712         if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
1713             I32 cxix;
1714             register CONTEXT *cx;
1715             CV* cv = (CV*)SvRV(sv);
1716             SV** mark;
1717             I32 items = 0;
1718             I32 oldsave;
1719
1720             if (!CvROOT(cv) && !CvXSUB(cv)) {
1721                 if (CvGV(cv)) {
1722                     SV *tmpstr = sv_newmortal();
1723                     gv_efullname3(tmpstr, CvGV(cv), Nullch);
1724                     DIE("Goto undefined subroutine &%s",SvPVX(tmpstr));
1725                 }
1726                 DIE("Goto undefined subroutine");
1727             }
1728
1729             /* First do some returnish stuff. */
1730             cxix = dopoptosub(cxstack_ix);
1731             if (cxix < 0)
1732                 DIE("Can't goto subroutine outside a subroutine");
1733             if (cxix < cxstack_ix)
1734                 dounwind(cxix);
1735             TOPBLOCK(cx);
1736             mark = stack_sp;
1737             if (cx->blk_sub.hasargs) {   /* put @_ back onto stack */
1738                 AV* av = cx->blk_sub.argarray;
1739                 
1740                 items = AvFILL(av) + 1;
1741                 stack_sp++;
1742                 EXTEND(stack_sp, items); /* @_ could have been extended. */
1743                 Copy(AvARRAY(av), stack_sp, items, SV*);
1744                 stack_sp += items;
1745                 SvREFCNT_dec(GvAV(defgv));
1746                 GvAV(defgv) = cx->blk_sub.savearray;
1747                 AvREAL_off(av);
1748                 av_clear(av);
1749             }
1750             if (!(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
1751                 SvREFCNT_dec(cx->blk_sub.cv);
1752             oldsave = scopestack[scopestack_ix - 1];
1753             LEAVE_SCOPE(oldsave);
1754
1755             /* Now do some callish stuff. */
1756             SAVETMPS;
1757             if (CvXSUB(cv)) {
1758                 if (CvOLDSTYLE(cv)) {
1759                     I32 (*fp3)_((int,int,int));
1760                     while (sp > mark) {
1761                         sp[1] = sp[0];
1762                         sp--;
1763                     }
1764                     fp3 = (I32(*)_((int,int,int)))CvXSUB(cv);
1765                     items = (*fp3)(CvXSUBANY(cv).any_i32,
1766                                    mark - stack_base + 1,
1767                                    items);
1768                     sp = stack_base + items;
1769                 }
1770                 else {
1771                     stack_sp--;         /* There is no cv arg. */
1772                     (void)(*CvXSUB(cv))(cv);
1773                 }
1774                 LEAVE;
1775                 return pop_return();
1776             }
1777             else {
1778                 AV* padlist = CvPADLIST(cv);
1779                 SV** svp = AvARRAY(padlist);
1780                 cx->blk_sub.cv = cv;
1781                 cx->blk_sub.olddepth = CvDEPTH(cv);
1782                 CvDEPTH(cv)++;
1783                 if (CvDEPTH(cv) < 2)
1784                     (void)SvREFCNT_inc(cv);
1785                 else {  /* save temporaries on recursion? */
1786                     if (CvDEPTH(cv) == 100 && dowarn)
1787                         sub_crush_depth(cv);
1788                     if (CvDEPTH(cv) > AvFILL(padlist)) {
1789                         AV *newpad = newAV();
1790                         SV **oldpad = AvARRAY(svp[CvDEPTH(cv)-1]);
1791                         I32 ix = AvFILL((AV*)svp[1]);
1792                         svp = AvARRAY(svp[0]);
1793                         for ( ;ix > 0; ix--) {
1794                             if (svp[ix] != &sv_undef) {
1795                                 char *name = SvPVX(svp[ix]);
1796                                 if ((SvFLAGS(svp[ix]) & SVf_FAKE)
1797                                     || *name == '&')
1798                                 {
1799                                     /* outer lexical or anon code */
1800                                     av_store(newpad, ix,
1801                                         SvREFCNT_inc(oldpad[ix]) );
1802                                 }
1803                                 else {          /* our own lexical */
1804                                     if (*name == '@')
1805                                         av_store(newpad, ix, sv = (SV*)newAV());
1806                                     else if (*name == '%')
1807                                         av_store(newpad, ix, sv = (SV*)newHV());
1808                                     else
1809                                         av_store(newpad, ix, sv = NEWSV(0,0));
1810                                     SvPADMY_on(sv);
1811                                 }
1812                             }
1813                             else {
1814                                 av_store(newpad, ix, sv = NEWSV(0,0));
1815                                 SvPADTMP_on(sv);
1816                             }
1817                         }
1818                         if (cx->blk_sub.hasargs) {
1819                             AV* av = newAV();
1820                             av_extend(av, 0);
1821                             av_store(newpad, 0, (SV*)av);
1822                             AvFLAGS(av) = AVf_REIFY;
1823                         }
1824                         av_store(padlist, CvDEPTH(cv), (SV*)newpad);
1825                         AvFILL(padlist) = CvDEPTH(cv);
1826                         svp = AvARRAY(padlist);
1827                     }
1828                 }
1829                 SAVESPTR(curpad);
1830                 curpad = AvARRAY((AV*)svp[CvDEPTH(cv)]);
1831                 if (cx->blk_sub.hasargs) {
1832                     AV* av = (AV*)curpad[0];
1833                     SV** ary;
1834
1835                     cx->blk_sub.savearray = GvAV(defgv);
1836                     cx->blk_sub.argarray = av;
1837                     GvAV(defgv) = (AV*)SvREFCNT_inc(av);
1838                     ++mark;
1839
1840                     if (items >= AvMAX(av) + 1) {
1841                         ary = AvALLOC(av);
1842                         if (AvARRAY(av) != ary) {
1843                             AvMAX(av) += AvARRAY(av) - AvALLOC(av);
1844                             SvPVX(av) = (char*)ary;
1845                         }
1846                         if (items >= AvMAX(av) + 1) {
1847                             AvMAX(av) = items - 1;
1848                             Renew(ary,items+1,SV*);
1849                             AvALLOC(av) = ary;
1850                             SvPVX(av) = (char*)ary;
1851                         }
1852                     }
1853                     Copy(mark,AvARRAY(av),items,SV*);
1854                     AvFILL(av) = items - 1;
1855                     
1856                     while (items--) {
1857                         if (*mark)
1858                             SvTEMP_off(*mark);
1859                         mark++;
1860                     }
1861                 }
1862                 if (perldb && curstash != debstash) {
1863                     /*
1864                      * We do not care about using sv to call CV;
1865                      * it's for informational purposes only.
1866                      */
1867                     SV *sv = GvSV(DBsub);
1868                     save_item(sv);
1869                     gv_efullname3(sv, CvGV(cv), Nullch);
1870                 }
1871                 RETURNOP(CvSTART(cv));
1872             }
1873         }
1874         else
1875             label = SvPV(sv,na);
1876     }
1877     else if (op->op_flags & OPf_SPECIAL) {
1878         if (! do_dump)
1879             DIE("goto must have label");
1880     }
1881     else
1882         label = cPVOP->op_pv;
1883
1884     if (label && *label) {
1885         OP *gotoprobe = 0;
1886
1887         /* find label */
1888
1889         lastgotoprobe = 0;
1890         *enterops = 0;
1891         for (ix = cxstack_ix; ix >= 0; ix--) {
1892             cx = &cxstack[ix];
1893             switch (cx->cx_type) {
1894             case CXt_EVAL:
1895                 gotoprobe = eval_root; /* XXX not good for nested eval */
1896                 break;
1897             case CXt_LOOP:
1898                 gotoprobe = cx->blk_oldcop->op_sibling;
1899                 break;
1900             case CXt_SUBST:
1901                 continue;
1902             case CXt_BLOCK:
1903                 if (ix)
1904                     gotoprobe = cx->blk_oldcop->op_sibling;
1905                 else
1906                     gotoprobe = main_root;
1907                 break;
1908             case CXt_SUB:
1909                 if (CvDEPTH(cx->blk_sub.cv)) {
1910                     gotoprobe = CvROOT(cx->blk_sub.cv);
1911                     break;
1912                 }
1913                 /* FALL THROUGH */
1914             case CXt_NULL:
1915                 DIE("Can't \"goto\" outside a block");
1916             default:
1917                 if (ix)
1918                     DIE("panic: goto");
1919                 gotoprobe = main_root;
1920                 break;
1921             }
1922             retop = dofindlabel(gotoprobe, label,
1923                                 enterops, enterops + GOTO_DEPTH);
1924             if (retop)
1925                 break;
1926             lastgotoprobe = gotoprobe;
1927         }
1928         if (!retop)
1929             DIE("Can't find label %s", label);
1930
1931         /* pop unwanted frames */
1932
1933         if (ix < cxstack_ix) {
1934             I32 oldsave;
1935
1936             if (ix < 0)
1937                 ix = 0;
1938             dounwind(ix);
1939             TOPBLOCK(cx);
1940             oldsave = scopestack[scopestack_ix];
1941             LEAVE_SCOPE(oldsave);
1942         }
1943
1944         /* push wanted frames */
1945
1946         if (*enterops && enterops[1]) {
1947             OP *oldop = op;
1948             for (ix = 1; enterops[ix]; ix++) {
1949                 op = enterops[ix];
1950                 (*op->op_ppaddr)(ARGS);
1951             }
1952             op = oldop;
1953         }
1954     }
1955
1956     if (do_dump) {
1957 #ifdef VMS
1958         if (!retop) retop = main_start;
1959 #endif
1960         restartop = retop;
1961         do_undump = TRUE;
1962
1963         my_unexec();
1964
1965         restartop = 0;          /* hmm, must be GNU unexec().. */
1966         do_undump = FALSE;
1967     }
1968
1969     if (curstack == signalstack) {
1970         restartop = retop;
1971         JMPENV_JUMP(3);
1972     }
1973
1974     RETURNOP(retop);
1975 }
1976
1977 PP(pp_exit)
1978 {
1979     dSP;
1980     I32 anum;
1981
1982     if (MAXARG < 1)
1983         anum = 0;
1984     else {
1985         anum = SvIVx(POPs);
1986 #ifdef VMSISH_EXIT
1987         if (anum == 1 && VMSISH_EXIT)
1988             anum = 0;
1989 #endif
1990     }
1991     my_exit(anum);
1992     PUSHs(&sv_undef);
1993     RETURN;
1994 }
1995
1996 #ifdef NOTYET
1997 PP(pp_nswitch)
1998 {
1999     dSP;
2000     double value = SvNVx(GvSV(cCOP->cop_gv));
2001     register I32 match = I_32(value);
2002
2003     if (value < 0.0) {
2004         if (((double)match) > value)
2005             --match;            /* was fractional--truncate other way */
2006     }
2007     match -= cCOP->uop.scop.scop_offset;
2008     if (match < 0)
2009         match = 0;
2010     else if (match > cCOP->uop.scop.scop_max)
2011         match = cCOP->uop.scop.scop_max;
2012     op = cCOP->uop.scop.scop_next[match];
2013     RETURNOP(op);
2014 }
2015
2016 PP(pp_cswitch)
2017 {
2018     dSP;
2019     register I32 match;
2020
2021     if (multiline)
2022         op = op->op_next;                       /* can't assume anything */
2023     else {
2024         match = *(SvPVx(GvSV(cCOP->cop_gv), na)) & 255;
2025         match -= cCOP->uop.scop.scop_offset;
2026         if (match < 0)
2027             match = 0;
2028         else if (match > cCOP->uop.scop.scop_max)
2029             match = cCOP->uop.scop.scop_max;
2030         op = cCOP->uop.scop.scop_next[match];
2031     }
2032     RETURNOP(op);
2033 }
2034 #endif
2035
2036 /* Eval. */
2037
2038 static void
2039 save_lines(array, sv)
2040 AV *array;
2041 SV *sv;
2042 {
2043     register char *s = SvPVX(sv);
2044     register char *send = SvPVX(sv) + SvCUR(sv);
2045     register char *t;
2046     register I32 line = 1;
2047
2048     while (s && s < send) {
2049         SV *tmpstr = NEWSV(85,0);
2050
2051         sv_upgrade(tmpstr, SVt_PVMG);
2052         t = strchr(s, '\n');
2053         if (t)
2054             t++;
2055         else
2056             t = send;
2057
2058         sv_setpvn(tmpstr, s, t - s);
2059         av_store(array, line++, tmpstr);
2060         s = t;
2061     }
2062 }
2063
2064 static OP *
2065 docatch(o)
2066 OP *o;
2067 {
2068     dTHR;
2069     int ret;
2070     I32 oldrunlevel = runlevel;
2071     OP *oldop = op;
2072     dJMPENV;
2073
2074     op = o;
2075 #ifdef DEBUGGING
2076     assert(CATCH_GET == TRUE);
2077     DEBUG_l(deb("(Setting up local jumplevel, runlevel = %ld)\n", (long)runlevel+1));
2078 #endif
2079     JMPENV_PUSH(ret);
2080     switch (ret) {
2081     default:                            /* topmost level handles it */
2082         JMPENV_POP;
2083         runlevel = oldrunlevel;
2084         op = oldop;
2085         JMPENV_JUMP(ret);
2086         /* NOTREACHED */
2087     case 3:
2088         if (!restartop) {
2089             PerlIO_printf(PerlIO_stderr(), "panic: restartop\n");
2090             break;
2091         }
2092         op = restartop;
2093         restartop = 0;
2094         /* FALL THROUGH */
2095     case 0:
2096         runops();
2097         break;
2098     }
2099     JMPENV_POP;
2100     runlevel = oldrunlevel;
2101     op = oldop;
2102     return Nullop;
2103 }
2104
2105 static OP *
2106 doeval(gimme)
2107 int gimme;
2108 {
2109     dTHR;
2110     dSP;
2111     OP *saveop = op;
2112     HV *newstash;
2113     CV *caller;
2114     AV* comppadlist;
2115
2116 #ifdef USE_THREADS
2117     MUTEX_LOCK(&eval_mutex);
2118     if (eval_owner && eval_owner != thr)
2119         while (eval_owner)
2120             COND_WAIT(&eval_cond, &eval_mutex);
2121     eval_owner = thr;
2122     MUTEX_UNLOCK(&eval_mutex);
2123 #endif /* USE_THREADS */
2124     in_eval = 1;
2125
2126     PUSHMARK(SP);
2127
2128     /* set up a scratch pad */
2129
2130     SAVEI32(padix);
2131     SAVESPTR(curpad);
2132     SAVESPTR(comppad);
2133     SAVESPTR(comppad_name);
2134     SAVEI32(comppad_name_fill);
2135     SAVEI32(min_intro_pending);
2136     SAVEI32(max_intro_pending);
2137
2138     caller = compcv;
2139     SAVESPTR(compcv);
2140     compcv = (CV*)NEWSV(1104,0);
2141     sv_upgrade((SV *)compcv, SVt_PVCV);
2142     CvUNIQUE_on(compcv);
2143 #ifdef USE_THREADS
2144     CvOWNER(compcv) = 0;
2145     New(666, CvMUTEXP(compcv), 1, pthread_mutex_t);
2146     MUTEX_INIT(CvMUTEXP(compcv));
2147     New(666, CvCONDP(compcv), 1, pthread_cond_t);
2148     COND_INIT(CvCONDP(compcv));
2149 #endif /* USE_THREADS */
2150
2151     comppad = newAV();
2152     comppad_name = newAV();
2153     comppad_name_fill = 0;
2154 #ifdef USE_THREADS
2155     av_store(comppad_name, 0, newSVpv("@_", 2));
2156 #endif /* USE_THREADS */
2157     min_intro_pending = 0;
2158     av_push(comppad, Nullsv);
2159     curpad = AvARRAY(comppad);
2160     padix = 0;
2161
2162     comppadlist = newAV();
2163     AvREAL_off(comppadlist);
2164     av_store(comppadlist, 0, (SV*)comppad_name);
2165     av_store(comppadlist, 1, (SV*)comppad);
2166     CvPADLIST(compcv) = comppadlist;
2167
2168     if (saveop->op_type != OP_REQUIRE)
2169         CvOUTSIDE(compcv) = (CV*)SvREFCNT_inc(caller);
2170
2171     SAVEFREESV(compcv);
2172
2173     /* make sure we compile in the right package */
2174
2175     newstash = curcop->cop_stash;
2176     if (curstash != newstash) {
2177         SAVESPTR(curstash);
2178         curstash = newstash;
2179     }
2180     SAVESPTR(beginav);
2181     beginav = newAV();
2182     SAVEFREESV(beginav);
2183
2184     /* try to compile it */
2185
2186     eval_root = Nullop;
2187     error_count = 0;
2188     curcop = &compiling;
2189     curcop->cop_arybase = 0;
2190     SvREFCNT_dec(rs);
2191     rs = newSVpv("\n", 1);
2192     if (saveop->op_flags & OPf_SPECIAL)
2193         in_eval |= 4;
2194     else
2195         sv_setpv(GvSV(errgv),"");
2196     if (yyparse() || error_count || !eval_root) {
2197         SV **newsp;
2198         I32 gimme;
2199         CONTEXT *cx;
2200         I32 optype;
2201
2202         op = saveop;
2203         if (eval_root) {
2204             op_free(eval_root);
2205             eval_root = Nullop;
2206         }
2207         SP = stack_base + POPMARK;              /* pop original mark */
2208         POPBLOCK(cx,curpm);
2209         POPEVAL(cx);
2210         pop_return();
2211         lex_end();
2212         LEAVE;
2213         if (optype == OP_REQUIRE) {
2214             char* msg = SvPVx(GvSV(errgv), na);
2215             DIE("%s", *msg ? msg : "Compilation failed in require");
2216         }
2217         SvREFCNT_dec(rs);
2218         rs = SvREFCNT_inc(nrs);
2219         RETPUSHUNDEF;
2220     }
2221     SvREFCNT_dec(rs);
2222     rs = SvREFCNT_inc(nrs);
2223     compiling.cop_line = 0;
2224     SAVEFREEOP(eval_root);
2225     if (gimme & G_VOID)
2226         scalarvoid(eval_root);
2227     else if (gimme & G_ARRAY)
2228         list(eval_root);
2229     else
2230         scalar(eval_root);
2231
2232     DEBUG_x(dump_eval());
2233
2234     /* Register with debugger: */
2235     if (perldb && saveop->op_type == OP_REQUIRE) {
2236         CV *cv = perl_get_cv("DB::postponed", FALSE);
2237         if (cv) {
2238             dSP;
2239             PUSHMARK(sp);
2240             XPUSHs((SV*)compiling.cop_filegv);
2241             PUTBACK;
2242             perl_call_sv((SV*)cv, G_DISCARD);
2243         }
2244     }
2245
2246     /* compiled okay, so do it */
2247
2248     CvDEPTH(compcv) = 1;
2249     SP = stack_base + POPMARK;          /* pop original mark */
2250 #ifdef USE_THREADS
2251     MUTEX_LOCK(&eval_mutex);
2252     eval_owner = 0;
2253     COND_SIGNAL(&eval_cond);
2254     MUTEX_UNLOCK(&eval_mutex);
2255 #endif /* USE_THREADS */
2256
2257     RETURNOP(eval_start);
2258 }
2259
2260 PP(pp_require)
2261 {
2262     dSP;
2263     register CONTEXT *cx;
2264     SV *sv;
2265     char *name;
2266     char *tryname;
2267     SV *namesv = Nullsv;
2268     SV** svp;
2269     I32 gimme = G_SCALAR;
2270     PerlIO *tryrsfp = 0;
2271
2272     sv = POPs;
2273     if (SvNIOKp(sv) && !SvPOKp(sv)) {
2274         SET_NUMERIC_STANDARD();
2275         if (atof(patchlevel) + 0.00000999 < SvNV(sv))
2276             DIE("Perl %s required--this is only version %s, stopped",
2277                 SvPV(sv,na),patchlevel);
2278         RETPUSHYES;
2279     }
2280     name = SvPV(sv, na);
2281     if (!*name)
2282         DIE("Null filename used");
2283     TAINT_PROPER("require");
2284     if (op->op_type == OP_REQUIRE &&
2285       (svp = hv_fetch(GvHVn(incgv), name, SvCUR(sv), 0)) &&
2286       *svp != &sv_undef)
2287         RETPUSHYES;
2288
2289     /* prepare to compile file */
2290
2291     if (*name == '/' ||
2292         (*name == '.' && 
2293             (name[1] == '/' ||
2294              (name[1] == '.' && name[2] == '/')))
2295 #ifdef DOSISH
2296       || (name[0] && name[1] == ':')
2297 #endif
2298 #ifdef VMS
2299         || (strchr(name,':')  || ((*name == '[' || *name == '<') &&
2300             (isALNUM(name[1]) || strchr("$-_]>",name[1]))))
2301 #endif
2302     )
2303     {
2304         tryname = name;
2305         tryrsfp = PerlIO_open(name,"r");
2306     }
2307     else {
2308         AV *ar = GvAVn(incgv);
2309         I32 i;
2310 #ifdef VMS
2311         char *unixname;
2312         if ((unixname = tounixspec(name, Nullch)) != Nullch)
2313 #endif
2314         {
2315             namesv = NEWSV(806, 0);
2316             for (i = 0; i <= AvFILL(ar); i++) {
2317                 char *dir = SvPVx(*av_fetch(ar, i, TRUE), na);
2318 #ifdef VMS
2319                 char *unixdir;
2320                 if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
2321                     continue;
2322                 sv_setpv(namesv, unixdir);
2323                 sv_catpv(namesv, unixname);
2324 #else
2325                 sv_setpvf(namesv, "%s/%s", dir, name);
2326 #endif
2327                 tryname = SvPVX(namesv);
2328                 tryrsfp = PerlIO_open(tryname, "r");
2329                 if (tryrsfp) {
2330                     if (tryname[0] == '.' && tryname[1] == '/')
2331                         tryname += 2;
2332                     break;
2333                 }
2334             }
2335         }
2336     }
2337     SAVESPTR(compiling.cop_filegv);
2338     compiling.cop_filegv = gv_fetchfile(tryrsfp ? tryname : name);
2339     SvREFCNT_dec(namesv);
2340     if (!tryrsfp) {
2341         if (op->op_type == OP_REQUIRE) {
2342             SV *msg = sv_2mortal(newSVpvf("Can't locate %s in @INC", name));
2343             if (instr(SvPVX(msg), ".h "))
2344                 sv_catpv(msg, " (change .h to .ph maybe?)");
2345             if (instr(SvPVX(msg), ".ph "))
2346                 sv_catpv(msg, " (did you run h2ph?)");
2347             DIE("%_", msg);
2348         }
2349
2350         RETPUSHUNDEF;
2351     }
2352
2353     /* Assume success here to prevent recursive requirement. */
2354     (void)hv_store(GvHVn(incgv), name, strlen(name),
2355         newSVsv(GvSV(compiling.cop_filegv)), 0 );
2356
2357     ENTER;
2358     SAVETMPS;
2359     lex_start(sv_2mortal(newSVpv("",0)));
2360     if (rsfp_filters){
2361         save_aptr(&rsfp_filters);
2362         rsfp_filters = NULL;
2363     }
2364
2365     rsfp = tryrsfp;
2366     name = savepv(name);
2367     SAVEFREEPV(name);
2368     SAVEI32(hints);
2369     hints = 0;
2370  
2371     /* switch to eval mode */
2372
2373     push_return(op->op_next);
2374     PUSHBLOCK(cx, CXt_EVAL, SP);
2375     PUSHEVAL(cx, name, compiling.cop_filegv);
2376
2377     compiling.cop_line = 0;
2378
2379     PUTBACK;
2380     return DOCATCH(doeval(G_SCALAR));
2381 }
2382
2383 PP(pp_dofile)
2384 {
2385     return pp_require(ARGS);
2386 }
2387
2388 PP(pp_entereval)
2389 {
2390     dSP;
2391     register CONTEXT *cx;
2392     dPOPss;
2393     I32 gimme = GIMME_V, was = sub_generation;
2394     char tmpbuf[TYPE_DIGITS(long) + 12];
2395     char *safestr;
2396     STRLEN len;
2397     OP *ret;
2398
2399     if (!SvPV(sv,len) || !len)
2400         RETPUSHUNDEF;
2401     TAINT_PROPER("eval");
2402
2403     ENTER;
2404     lex_start(sv);
2405     SAVETMPS;
2406  
2407     /* switch to eval mode */
2408
2409     SAVESPTR(compiling.cop_filegv);
2410     sprintf(tmpbuf, "_<(eval %lu)", (unsigned long)++evalseq);
2411     compiling.cop_filegv = gv_fetchfile(tmpbuf+2);
2412     compiling.cop_line = 1;
2413     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2414        deleting the eval's FILEGV from the stash before gv_check() runs
2415        (i.e. before run-time proper). To work around the coredump that
2416        ensues, we always turn GvMULTI_on for any globals that were
2417        introduced within evals. See force_ident(). GSAR 96-10-12 */
2418     safestr = savepv(tmpbuf);
2419     SAVEDELETE(defstash, safestr, strlen(safestr));
2420     SAVEI32(hints);
2421     hints = op->op_targ;
2422
2423     push_return(op->op_next);
2424     PUSHBLOCK(cx, CXt_EVAL, SP);
2425     PUSHEVAL(cx, 0, compiling.cop_filegv);
2426
2427     /* prepare to compile string */
2428
2429     if (perldb && curstash != debstash)
2430         save_lines(GvAV(compiling.cop_filegv), linestr);
2431     PUTBACK;
2432     ret = doeval(gimme);
2433     if (perldb && was != sub_generation) { /* Some subs defined here. */
2434         strcpy(safestr, "_<(eval )");   /* Anything fake and short. */
2435     }
2436     return DOCATCH(ret);
2437 }
2438
2439 PP(pp_leaveeval)
2440 {
2441     dSP;
2442     register SV **mark;
2443     SV **newsp;
2444     PMOP *newpm;
2445     I32 gimme;
2446     register CONTEXT *cx;
2447     OP *retop;
2448     U8 save_flags = op -> op_flags;
2449     I32 optype;
2450
2451     POPBLOCK(cx,newpm);
2452     POPEVAL(cx);
2453     retop = pop_return();
2454
2455     TAINT_NOT;
2456     if (gimme == G_VOID)
2457         MARK = newsp;
2458     else if (gimme == G_SCALAR) {
2459         MARK = newsp + 1;
2460         if (MARK <= SP) {
2461             if (SvFLAGS(TOPs) & SVs_TEMP)
2462                 *MARK = TOPs;
2463             else
2464                 *MARK = sv_mortalcopy(TOPs);
2465         }
2466         else {
2467             MEXTEND(mark,0);
2468             *MARK = &sv_undef;
2469         }
2470     }
2471     else {
2472         /* in case LEAVE wipes old return values */
2473         for (mark = newsp + 1; mark <= SP; mark++) {
2474             if (!(SvFLAGS(*mark) & SVs_TEMP)) {
2475                 *mark = sv_mortalcopy(*mark);
2476                 TAINT_NOT;      /* Each item is independent */
2477             }
2478         }
2479     }
2480     curpm = newpm;      /* Don't pop $1 et al till now */
2481
2482 #ifdef DEBUGGING
2483     assert(CvDEPTH(compcv) == 1);
2484 #endif
2485     CvDEPTH(compcv) = 0;
2486
2487     if (optype == OP_REQUIRE &&
2488         !(gimme == G_SCALAR ? SvTRUE(*sp) : sp > newsp))
2489     {
2490         /* Unassume the success we assumed earlier. */
2491         char *name = cx->blk_eval.old_name;
2492         (void)hv_delete(GvHVn(incgv), name, strlen(name), G_DISCARD);
2493         retop = die("%s did not return a true value", name);
2494     }
2495
2496     lex_end();
2497     LEAVE;
2498
2499     if (!(save_flags & OPf_SPECIAL))
2500         sv_setpv(GvSV(errgv),"");
2501
2502     RETURNOP(retop);
2503 }
2504
2505 PP(pp_entertry)
2506 {
2507     dSP;
2508     register CONTEXT *cx;
2509     I32 gimme = GIMME_V;
2510
2511     ENTER;
2512     SAVETMPS;
2513
2514     push_return(cLOGOP->op_other->op_next);
2515     PUSHBLOCK(cx, CXt_EVAL, SP);
2516     PUSHEVAL(cx, 0, 0);
2517     eval_root = op;             /* Only needed so that goto works right. */
2518
2519     in_eval = 1;
2520     sv_setpv(GvSV(errgv),"");
2521     PUTBACK;
2522     return DOCATCH(op->op_next);
2523 }
2524
2525 PP(pp_leavetry)
2526 {
2527     dSP;
2528     register SV **mark;
2529     SV **newsp;
2530     PMOP *newpm;
2531     I32 gimme;
2532     register CONTEXT *cx;
2533     I32 optype;
2534
2535     POPBLOCK(cx,newpm);
2536     POPEVAL(cx);
2537     pop_return();
2538
2539     TAINT_NOT;
2540     if (gimme == G_VOID)
2541         SP = newsp;
2542     else if (gimme == G_SCALAR) {
2543         MARK = newsp + 1;
2544         if (MARK <= SP) {
2545             if (SvFLAGS(TOPs) & (SVs_PADTMP|SVs_TEMP))
2546                 *MARK = TOPs;
2547             else
2548                 *MARK = sv_mortalcopy(TOPs);
2549         }
2550         else {
2551             MEXTEND(mark,0);
2552             *MARK = &sv_undef;
2553         }
2554         SP = MARK;
2555     }
2556     else {
2557         /* in case LEAVE wipes old return values */
2558         for (mark = newsp + 1; mark <= SP; mark++) {
2559             if (!(SvFLAGS(*mark) & (SVs_PADTMP|SVs_TEMP))) {
2560                 *mark = sv_mortalcopy(*mark);
2561                 TAINT_NOT;      /* Each item is independent */
2562             }
2563         }
2564     }
2565     curpm = newpm;      /* Don't pop $1 et al till now */
2566
2567     LEAVE;
2568     sv_setpv(GvSV(errgv),"");
2569     RETURN;
2570 }
2571
2572 static void
2573 doparseform(sv)
2574 SV *sv;
2575 {
2576     STRLEN len;
2577     register char *s = SvPV_force(sv, len);
2578     register char *send = s + len;
2579     register char *base;
2580     register I32 skipspaces = 0;
2581     bool noblank;
2582     bool repeat;
2583     bool postspace = FALSE;
2584     U16 *fops;
2585     register U16 *fpc;
2586     U16 *linepc;
2587     register I32 arg;
2588     bool ischop;
2589
2590     if (len == 0)
2591         croak("Null picture in formline");
2592     
2593     New(804, fops, (send - s)*3+10, U16);    /* Almost certainly too long... */
2594     fpc = fops;
2595
2596     if (s < send) {
2597         linepc = fpc;
2598         *fpc++ = FF_LINEMARK;
2599         noblank = repeat = FALSE;
2600         base = s;
2601     }
2602
2603     while (s <= send) {
2604         switch (*s++) {
2605         default:
2606             skipspaces = 0;
2607             continue;
2608
2609         case '~':
2610             if (*s == '~') {
2611                 repeat = TRUE;
2612                 *s = ' ';
2613             }
2614             noblank = TRUE;
2615             s[-1] = ' ';
2616             /* FALL THROUGH */
2617         case ' ': case '\t':
2618             skipspaces++;
2619             continue;
2620             
2621         case '\n': case 0:
2622             arg = s - base;
2623             skipspaces++;
2624             arg -= skipspaces;
2625             if (arg) {
2626                 if (postspace)
2627                     *fpc++ = FF_SPACE;
2628                 *fpc++ = FF_LITERAL;
2629                 *fpc++ = arg;
2630             }
2631             postspace = FALSE;
2632             if (s <= send)
2633                 skipspaces--;
2634             if (skipspaces) {
2635                 *fpc++ = FF_SKIP;
2636                 *fpc++ = skipspaces;
2637             }
2638             skipspaces = 0;
2639             if (s <= send)
2640                 *fpc++ = FF_NEWLINE;
2641             if (noblank) {
2642                 *fpc++ = FF_BLANK;
2643                 if (repeat)
2644                     arg = fpc - linepc + 1;
2645                 else
2646                     arg = 0;
2647                 *fpc++ = arg;
2648             }
2649             if (s < send) {
2650                 linepc = fpc;
2651                 *fpc++ = FF_LINEMARK;
2652                 noblank = repeat = FALSE;
2653                 base = s;
2654             }
2655             else
2656                 s++;
2657             continue;
2658
2659         case '@':
2660         case '^':
2661             ischop = s[-1] == '^';
2662
2663             if (postspace) {
2664                 *fpc++ = FF_SPACE;
2665                 postspace = FALSE;
2666             }
2667             arg = (s - base) - 1;
2668             if (arg) {
2669                 *fpc++ = FF_LITERAL;
2670                 *fpc++ = arg;
2671             }
2672
2673             base = s - 1;
2674             *fpc++ = FF_FETCH;
2675             if (*s == '*') {
2676                 s++;
2677                 *fpc++ = 0;
2678                 *fpc++ = FF_LINEGLOB;
2679             }
2680             else if (*s == '#' || (*s == '.' && s[1] == '#')) {
2681                 arg = ischop ? 512 : 0;
2682                 base = s - 1;
2683                 while (*s == '#')
2684                     s++;
2685                 if (*s == '.') {
2686                     char *f;
2687                     s++;
2688                     f = s;
2689                     while (*s == '#')
2690                         s++;
2691                     arg |= 256 + (s - f);
2692                 }
2693                 *fpc++ = s - base;              /* fieldsize for FETCH */
2694                 *fpc++ = FF_DECIMAL;
2695                 *fpc++ = arg;
2696             }
2697             else {
2698                 I32 prespace = 0;
2699                 bool ismore = FALSE;
2700
2701                 if (*s == '>') {
2702                     while (*++s == '>') ;
2703                     prespace = FF_SPACE;
2704                 }
2705                 else if (*s == '|') {
2706                     while (*++s == '|') ;
2707                     prespace = FF_HALFSPACE;
2708                     postspace = TRUE;
2709                 }
2710                 else {
2711                     if (*s == '<')
2712                         while (*++s == '<') ;
2713                     postspace = TRUE;
2714                 }
2715                 if (*s == '.' && s[1] == '.' && s[2] == '.') {
2716                     s += 3;
2717                     ismore = TRUE;
2718                 }
2719                 *fpc++ = s - base;              /* fieldsize for FETCH */
2720
2721                 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
2722
2723                 if (prespace)
2724                     *fpc++ = prespace;
2725                 *fpc++ = FF_ITEM;
2726                 if (ismore)
2727                     *fpc++ = FF_MORE;
2728                 if (ischop)
2729                     *fpc++ = FF_CHOP;
2730             }
2731             base = s;
2732             skipspaces = 0;
2733             continue;
2734         }
2735     }
2736     *fpc++ = FF_END;
2737
2738     arg = fpc - fops;
2739     { /* need to jump to the next word */
2740         int z;
2741         z = WORD_ALIGN - SvCUR(sv) % WORD_ALIGN;
2742         SvGROW(sv, SvCUR(sv) + z + arg * sizeof(U16) + 4);
2743         s = SvPVX(sv) + SvCUR(sv) + z;
2744     }
2745     Copy(fops, s, arg, U16);
2746     Safefree(fops);
2747     sv_magic(sv, Nullsv, 'f', Nullch, 0);
2748     SvCOMPILED_on(sv);
2749 }