Rewrite synchronisation of subs/methods and add attrs
[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 #ifndef USE_THREADS
1746                 SvREFCNT_dec(GvAV(defgv));
1747                 GvAV(defgv) = cx->blk_sub.savearray;
1748 #endif /* USE_THREADS */
1749                 AvREAL_off(av);
1750                 av_clear(av);
1751             }
1752             if (!(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
1753                 SvREFCNT_dec(cx->blk_sub.cv);
1754             oldsave = scopestack[scopestack_ix - 1];
1755             LEAVE_SCOPE(oldsave);
1756
1757             /* Now do some callish stuff. */
1758             SAVETMPS;
1759             if (CvXSUB(cv)) {
1760                 if (CvOLDSTYLE(cv)) {
1761                     I32 (*fp3)_((int,int,int));
1762                     while (sp > mark) {
1763                         sp[1] = sp[0];
1764                         sp--;
1765                     }
1766                     fp3 = (I32(*)_((int,int,int)))CvXSUB(cv);
1767                     items = (*fp3)(CvXSUBANY(cv).any_i32,
1768                                    mark - stack_base + 1,
1769                                    items);
1770                     sp = stack_base + items;
1771                 }
1772                 else {
1773                     stack_sp--;         /* There is no cv arg. */
1774                     (void)(*CvXSUB(cv))(cv);
1775                 }
1776                 LEAVE;
1777                 return pop_return();
1778             }
1779             else {
1780                 AV* padlist = CvPADLIST(cv);
1781                 SV** svp = AvARRAY(padlist);
1782                 cx->blk_sub.cv = cv;
1783                 cx->blk_sub.olddepth = CvDEPTH(cv);
1784                 CvDEPTH(cv)++;
1785                 if (CvDEPTH(cv) < 2)
1786                     (void)SvREFCNT_inc(cv);
1787                 else {  /* save temporaries on recursion? */
1788                     if (CvDEPTH(cv) == 100 && dowarn)
1789                         sub_crush_depth(cv);
1790                     if (CvDEPTH(cv) > AvFILL(padlist)) {
1791                         AV *newpad = newAV();
1792                         SV **oldpad = AvARRAY(svp[CvDEPTH(cv)-1]);
1793                         I32 ix = AvFILL((AV*)svp[1]);
1794                         svp = AvARRAY(svp[0]);
1795                         for ( ;ix > 0; ix--) {
1796                             if (svp[ix] != &sv_undef) {
1797                                 char *name = SvPVX(svp[ix]);
1798                                 if ((SvFLAGS(svp[ix]) & SVf_FAKE)
1799                                     || *name == '&')
1800                                 {
1801                                     /* outer lexical or anon code */
1802                                     av_store(newpad, ix,
1803                                         SvREFCNT_inc(oldpad[ix]) );
1804                                 }
1805                                 else {          /* our own lexical */
1806                                     if (*name == '@')
1807                                         av_store(newpad, ix, sv = (SV*)newAV());
1808                                     else if (*name == '%')
1809                                         av_store(newpad, ix, sv = (SV*)newHV());
1810                                     else
1811                                         av_store(newpad, ix, sv = NEWSV(0,0));
1812                                     SvPADMY_on(sv);
1813                                 }
1814                             }
1815                             else {
1816                                 av_store(newpad, ix, sv = NEWSV(0,0));
1817                                 SvPADTMP_on(sv);
1818                             }
1819                         }
1820                         if (cx->blk_sub.hasargs) {
1821                             AV* av = newAV();
1822                             av_extend(av, 0);
1823                             av_store(newpad, 0, (SV*)av);
1824                             AvFLAGS(av) = AVf_REIFY;
1825                         }
1826                         av_store(padlist, CvDEPTH(cv), (SV*)newpad);
1827                         AvFILL(padlist) = CvDEPTH(cv);
1828                         svp = AvARRAY(padlist);
1829                     }
1830                 }
1831 #ifdef USE_THREADS
1832                 if (!cx->blk_sub.hasargs) {
1833                     AV* av = (AV*)curpad[0];
1834                     
1835                     items = AvFILL(av) + 1;
1836                     if (items) {
1837                         /* Mark is at the end of the stack. */
1838                         EXTEND(sp, items);
1839                         Copy(AvARRAY(av), sp + 1, items, SV*);
1840                         sp += items;
1841                         PUTBACK ;                   
1842                     }
1843                 }
1844 #endif /* USE_THREADS */                
1845                 SAVESPTR(curpad);
1846                 curpad = AvARRAY((AV*)svp[CvDEPTH(cv)]);
1847 #ifndef USE_THREADS
1848                 if (cx->blk_sub.hasargs)
1849 #endif /* USE_THREADS */
1850                 {
1851                     AV* av = (AV*)curpad[0];
1852                     SV** ary;
1853
1854 #ifndef USE_THREADS
1855                     cx->blk_sub.savearray = GvAV(defgv);
1856                     GvAV(defgv) = (AV*)SvREFCNT_inc(av);
1857 #endif /* USE_THREADS */
1858                     cx->blk_sub.argarray = av;
1859                     ++mark;
1860
1861                     if (items >= AvMAX(av) + 1) {
1862                         ary = AvALLOC(av);
1863                         if (AvARRAY(av) != ary) {
1864                             AvMAX(av) += AvARRAY(av) - AvALLOC(av);
1865                             SvPVX(av) = (char*)ary;
1866                         }
1867                         if (items >= AvMAX(av) + 1) {
1868                             AvMAX(av) = items - 1;
1869                             Renew(ary,items+1,SV*);
1870                             AvALLOC(av) = ary;
1871                             SvPVX(av) = (char*)ary;
1872                         }
1873                     }
1874                     Copy(mark,AvARRAY(av),items,SV*);
1875                     AvFILL(av) = items - 1;
1876                     
1877                     while (items--) {
1878                         if (*mark)
1879                             SvTEMP_off(*mark);
1880                         mark++;
1881                     }
1882                 }
1883                 if (perldb && curstash != debstash) {
1884                     /*
1885                      * We do not care about using sv to call CV;
1886                      * it's for informational purposes only.
1887                      */
1888                     SV *sv = GvSV(DBsub);
1889                     save_item(sv);
1890                     gv_efullname3(sv, CvGV(cv), Nullch);
1891                 }
1892                 RETURNOP(CvSTART(cv));
1893             }
1894         }
1895         else
1896             label = SvPV(sv,na);
1897     }
1898     else if (op->op_flags & OPf_SPECIAL) {
1899         if (! do_dump)
1900             DIE("goto must have label");
1901     }
1902     else
1903         label = cPVOP->op_pv;
1904
1905     if (label && *label) {
1906         OP *gotoprobe = 0;
1907
1908         /* find label */
1909
1910         lastgotoprobe = 0;
1911         *enterops = 0;
1912         for (ix = cxstack_ix; ix >= 0; ix--) {
1913             cx = &cxstack[ix];
1914             switch (cx->cx_type) {
1915             case CXt_EVAL:
1916                 gotoprobe = eval_root; /* XXX not good for nested eval */
1917                 break;
1918             case CXt_LOOP:
1919                 gotoprobe = cx->blk_oldcop->op_sibling;
1920                 break;
1921             case CXt_SUBST:
1922                 continue;
1923             case CXt_BLOCK:
1924                 if (ix)
1925                     gotoprobe = cx->blk_oldcop->op_sibling;
1926                 else
1927                     gotoprobe = main_root;
1928                 break;
1929             case CXt_SUB:
1930                 if (CvDEPTH(cx->blk_sub.cv)) {
1931                     gotoprobe = CvROOT(cx->blk_sub.cv);
1932                     break;
1933                 }
1934                 /* FALL THROUGH */
1935             case CXt_NULL:
1936                 DIE("Can't \"goto\" outside a block");
1937             default:
1938                 if (ix)
1939                     DIE("panic: goto");
1940                 gotoprobe = main_root;
1941                 break;
1942             }
1943             retop = dofindlabel(gotoprobe, label,
1944                                 enterops, enterops + GOTO_DEPTH);
1945             if (retop)
1946                 break;
1947             lastgotoprobe = gotoprobe;
1948         }
1949         if (!retop)
1950             DIE("Can't find label %s", label);
1951
1952         /* pop unwanted frames */
1953
1954         if (ix < cxstack_ix) {
1955             I32 oldsave;
1956
1957             if (ix < 0)
1958                 ix = 0;
1959             dounwind(ix);
1960             TOPBLOCK(cx);
1961             oldsave = scopestack[scopestack_ix];
1962             LEAVE_SCOPE(oldsave);
1963         }
1964
1965         /* push wanted frames */
1966
1967         if (*enterops && enterops[1]) {
1968             OP *oldop = op;
1969             for (ix = 1; enterops[ix]; ix++) {
1970                 op = enterops[ix];
1971                 (*op->op_ppaddr)(ARGS);
1972             }
1973             op = oldop;
1974         }
1975     }
1976
1977     if (do_dump) {
1978 #ifdef VMS
1979         if (!retop) retop = main_start;
1980 #endif
1981         restartop = retop;
1982         do_undump = TRUE;
1983
1984         my_unexec();
1985
1986         restartop = 0;          /* hmm, must be GNU unexec().. */
1987         do_undump = FALSE;
1988     }
1989
1990     if (curstack == signalstack) {
1991         restartop = retop;
1992         JMPENV_JUMP(3);
1993     }
1994
1995     RETURNOP(retop);
1996 }
1997
1998 PP(pp_exit)
1999 {
2000     dSP;
2001     I32 anum;
2002
2003     if (MAXARG < 1)
2004         anum = 0;
2005     else {
2006         anum = SvIVx(POPs);
2007 #ifdef VMSISH_EXIT
2008         if (anum == 1 && VMSISH_EXIT)
2009             anum = 0;
2010 #endif
2011     }
2012     my_exit(anum);
2013     PUSHs(&sv_undef);
2014     RETURN;
2015 }
2016
2017 #ifdef NOTYET
2018 PP(pp_nswitch)
2019 {
2020     dSP;
2021     double value = SvNVx(GvSV(cCOP->cop_gv));
2022     register I32 match = I_32(value);
2023
2024     if (value < 0.0) {
2025         if (((double)match) > value)
2026             --match;            /* was fractional--truncate other way */
2027     }
2028     match -= cCOP->uop.scop.scop_offset;
2029     if (match < 0)
2030         match = 0;
2031     else if (match > cCOP->uop.scop.scop_max)
2032         match = cCOP->uop.scop.scop_max;
2033     op = cCOP->uop.scop.scop_next[match];
2034     RETURNOP(op);
2035 }
2036
2037 PP(pp_cswitch)
2038 {
2039     dSP;
2040     register I32 match;
2041
2042     if (multiline)
2043         op = op->op_next;                       /* can't assume anything */
2044     else {
2045         match = *(SvPVx(GvSV(cCOP->cop_gv), na)) & 255;
2046         match -= cCOP->uop.scop.scop_offset;
2047         if (match < 0)
2048             match = 0;
2049         else if (match > cCOP->uop.scop.scop_max)
2050             match = cCOP->uop.scop.scop_max;
2051         op = cCOP->uop.scop.scop_next[match];
2052     }
2053     RETURNOP(op);
2054 }
2055 #endif
2056
2057 /* Eval. */
2058
2059 static void
2060 save_lines(array, sv)
2061 AV *array;
2062 SV *sv;
2063 {
2064     register char *s = SvPVX(sv);
2065     register char *send = SvPVX(sv) + SvCUR(sv);
2066     register char *t;
2067     register I32 line = 1;
2068
2069     while (s && s < send) {
2070         SV *tmpstr = NEWSV(85,0);
2071
2072         sv_upgrade(tmpstr, SVt_PVMG);
2073         t = strchr(s, '\n');
2074         if (t)
2075             t++;
2076         else
2077             t = send;
2078
2079         sv_setpvn(tmpstr, s, t - s);
2080         av_store(array, line++, tmpstr);
2081         s = t;
2082     }
2083 }
2084
2085 static OP *
2086 docatch(o)
2087 OP *o;
2088 {
2089     dTHR;
2090     int ret;
2091     I32 oldrunlevel = runlevel;
2092     OP *oldop = op;
2093     dJMPENV;
2094
2095     op = o;
2096 #ifdef DEBUGGING
2097     assert(CATCH_GET == TRUE);
2098     DEBUG_l(deb("(Setting up local jumplevel, runlevel = %ld)\n", (long)runlevel+1));
2099 #endif
2100     JMPENV_PUSH(ret);
2101     switch (ret) {
2102     default:                            /* topmost level handles it */
2103         JMPENV_POP;
2104         runlevel = oldrunlevel;
2105         op = oldop;
2106         JMPENV_JUMP(ret);
2107         /* NOTREACHED */
2108     case 3:
2109         if (!restartop) {
2110             PerlIO_printf(PerlIO_stderr(), "panic: restartop\n");
2111             break;
2112         }
2113         op = restartop;
2114         restartop = 0;
2115         /* FALL THROUGH */
2116     case 0:
2117         runops();
2118         break;
2119     }
2120     JMPENV_POP;
2121     runlevel = oldrunlevel;
2122     op = oldop;
2123     return Nullop;
2124 }
2125
2126 /* With USE_THREADS, eval_owner must be held on entry to doeval */
2127 static OP *
2128 doeval(gimme)
2129 int gimme;
2130 {
2131     dTHR;
2132     dSP;
2133     OP *saveop = op;
2134     HV *newstash;
2135     CV *caller;
2136     AV* comppadlist;
2137
2138     in_eval = 1;
2139
2140     PUSHMARK(SP);
2141
2142     /* set up a scratch pad */
2143
2144     SAVEI32(padix);
2145     SAVESPTR(curpad);
2146     SAVESPTR(comppad);
2147     SAVESPTR(comppad_name);
2148     SAVEI32(comppad_name_fill);
2149     SAVEI32(min_intro_pending);
2150     SAVEI32(max_intro_pending);
2151
2152     caller = compcv;
2153     SAVESPTR(compcv);
2154     compcv = (CV*)NEWSV(1104,0);
2155     sv_upgrade((SV *)compcv, SVt_PVCV);
2156     CvUNIQUE_on(compcv);
2157 #ifdef USE_THREADS
2158     CvOWNER(compcv) = 0;
2159     New(666, CvMUTEXP(compcv), 1, perl_mutex);
2160     MUTEX_INIT(CvMUTEXP(compcv));
2161 #endif /* USE_THREADS */
2162
2163     comppad = newAV();
2164     av_push(comppad, Nullsv);
2165     curpad = AvARRAY(comppad);
2166     comppad_name = newAV();
2167     comppad_name_fill = 0;
2168     min_intro_pending = 0;
2169     padix = 0;
2170 #ifdef USE_THREADS
2171     av_store(comppad_name, 0, newSVpv("@_", 2));
2172     curpad[0] = (SV*)newAV();
2173     SvPADMY_on(curpad[0]);      /* XXX Needed? */
2174 #endif /* USE_THREADS */
2175
2176     comppadlist = newAV();
2177     AvREAL_off(comppadlist);
2178     av_store(comppadlist, 0, (SV*)comppad_name);
2179     av_store(comppadlist, 1, (SV*)comppad);
2180     CvPADLIST(compcv) = comppadlist;
2181
2182     if (saveop->op_type != OP_REQUIRE)
2183         CvOUTSIDE(compcv) = (CV*)SvREFCNT_inc(caller);
2184
2185     SAVEFREESV(compcv);
2186
2187     /* make sure we compile in the right package */
2188
2189     newstash = curcop->cop_stash;
2190     if (curstash != newstash) {
2191         SAVESPTR(curstash);
2192         curstash = newstash;
2193     }
2194     SAVESPTR(beginav);
2195     beginav = newAV();
2196     SAVEFREESV(beginav);
2197
2198     /* try to compile it */
2199
2200     eval_root = Nullop;
2201     error_count = 0;
2202     curcop = &compiling;
2203     curcop->cop_arybase = 0;
2204     SvREFCNT_dec(rs);
2205     rs = newSVpv("\n", 1);
2206     if (saveop->op_flags & OPf_SPECIAL)
2207         in_eval |= 4;
2208     else
2209         sv_setpv(GvSV(errgv),"");
2210     if (yyparse() || error_count || !eval_root) {
2211         SV **newsp;
2212         I32 gimme;
2213         CONTEXT *cx;
2214         I32 optype;
2215
2216         op = saveop;
2217         if (eval_root) {
2218             op_free(eval_root);
2219             eval_root = Nullop;
2220         }
2221         SP = stack_base + POPMARK;              /* pop original mark */
2222         POPBLOCK(cx,curpm);
2223         POPEVAL(cx);
2224         pop_return();
2225         lex_end();
2226         LEAVE;
2227         if (optype == OP_REQUIRE) {
2228             char* msg = SvPVx(GvSV(errgv), na);
2229             DIE("%s", *msg ? msg : "Compilation failed in require");
2230         }
2231         SvREFCNT_dec(rs);
2232         rs = SvREFCNT_inc(nrs);
2233 #ifdef USE_THREADS
2234         MUTEX_LOCK(&eval_mutex);
2235         eval_owner = 0;
2236         COND_SIGNAL(&eval_cond);
2237         MUTEX_UNLOCK(&eval_mutex);
2238 #endif /* USE_THREADS */
2239         RETPUSHUNDEF;
2240     }
2241     SvREFCNT_dec(rs);
2242     rs = SvREFCNT_inc(nrs);
2243     compiling.cop_line = 0;
2244     SAVEFREEOP(eval_root);
2245     if (gimme & G_VOID)
2246         scalarvoid(eval_root);
2247     else if (gimme & G_ARRAY)
2248         list(eval_root);
2249     else
2250         scalar(eval_root);
2251
2252     DEBUG_x(dump_eval());
2253
2254     /* Register with debugger: */
2255     if (perldb && saveop->op_type == OP_REQUIRE) {
2256         CV *cv = perl_get_cv("DB::postponed", FALSE);
2257         if (cv) {
2258             dSP;
2259             PUSHMARK(sp);
2260             XPUSHs((SV*)compiling.cop_filegv);
2261             PUTBACK;
2262             perl_call_sv((SV*)cv, G_DISCARD);
2263         }
2264     }
2265
2266     /* compiled okay, so do it */
2267
2268     CvDEPTH(compcv) = 1;
2269     SP = stack_base + POPMARK;          /* pop original mark */
2270 #ifdef USE_THREADS
2271     MUTEX_LOCK(&eval_mutex);
2272     eval_owner = 0;
2273     COND_SIGNAL(&eval_cond);
2274     MUTEX_UNLOCK(&eval_mutex);
2275 #endif /* USE_THREADS */
2276
2277     RETURNOP(eval_start);
2278 }
2279
2280 PP(pp_require)
2281 {
2282     dSP;
2283     register CONTEXT *cx;
2284     SV *sv;
2285     char *name;
2286     char *tryname;
2287     SV *namesv = Nullsv;
2288     SV** svp;
2289     I32 gimme = G_SCALAR;
2290     PerlIO *tryrsfp = 0;
2291
2292     sv = POPs;
2293     if (SvNIOKp(sv) && !SvPOKp(sv)) {
2294         SET_NUMERIC_STANDARD();
2295         if (atof(patchlevel) + 0.00000999 < SvNV(sv))
2296             DIE("Perl %s required--this is only version %s, stopped",
2297                 SvPV(sv,na),patchlevel);
2298         RETPUSHYES;
2299     }
2300     name = SvPV(sv, na);
2301     if (!*name)
2302         DIE("Null filename used");
2303     TAINT_PROPER("require");
2304     if (op->op_type == OP_REQUIRE &&
2305       (svp = hv_fetch(GvHVn(incgv), name, SvCUR(sv), 0)) &&
2306       *svp != &sv_undef)
2307         RETPUSHYES;
2308
2309     /* prepare to compile file */
2310
2311     if (*name == '/' ||
2312         (*name == '.' && 
2313             (name[1] == '/' ||
2314              (name[1] == '.' && name[2] == '/')))
2315 #ifdef DOSISH
2316       || (name[0] && name[1] == ':')
2317 #endif
2318 #ifdef VMS
2319         || (strchr(name,':')  || ((*name == '[' || *name == '<') &&
2320             (isALNUM(name[1]) || strchr("$-_]>",name[1]))))
2321 #endif
2322     )
2323     {
2324         tryname = name;
2325         tryrsfp = PerlIO_open(name,"r");
2326     }
2327     else {
2328         AV *ar = GvAVn(incgv);
2329         I32 i;
2330 #ifdef VMS
2331         char *unixname;
2332         if ((unixname = tounixspec(name, Nullch)) != Nullch)
2333 #endif
2334         {
2335             namesv = NEWSV(806, 0);
2336             for (i = 0; i <= AvFILL(ar); i++) {
2337                 char *dir = SvPVx(*av_fetch(ar, i, TRUE), na);
2338 #ifdef VMS
2339                 char *unixdir;
2340                 if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
2341                     continue;
2342                 sv_setpv(namesv, unixdir);
2343                 sv_catpv(namesv, unixname);
2344 #else
2345                 sv_setpvf(namesv, "%s/%s", dir, name);
2346 #endif
2347                 tryname = SvPVX(namesv);
2348                 tryrsfp = PerlIO_open(tryname, "r");
2349                 if (tryrsfp) {
2350                     if (tryname[0] == '.' && tryname[1] == '/')
2351                         tryname += 2;
2352                     break;
2353                 }
2354             }
2355         }
2356     }
2357     SAVESPTR(compiling.cop_filegv);
2358     compiling.cop_filegv = gv_fetchfile(tryrsfp ? tryname : name);
2359     SvREFCNT_dec(namesv);
2360     if (!tryrsfp) {
2361         if (op->op_type == OP_REQUIRE) {
2362             SV *msg = sv_2mortal(newSVpvf("Can't locate %s in @INC", name));
2363             if (instr(SvPVX(msg), ".h "))
2364                 sv_catpv(msg, " (change .h to .ph maybe?)");
2365             if (instr(SvPVX(msg), ".ph "))
2366                 sv_catpv(msg, " (did you run h2ph?)");
2367             DIE("%_", msg);
2368         }
2369
2370         RETPUSHUNDEF;
2371     }
2372
2373     /* Assume success here to prevent recursive requirement. */
2374     (void)hv_store(GvHVn(incgv), name, strlen(name),
2375         newSVsv(GvSV(compiling.cop_filegv)), 0 );
2376
2377     ENTER;
2378     SAVETMPS;
2379     lex_start(sv_2mortal(newSVpv("",0)));
2380     if (rsfp_filters){
2381         save_aptr(&rsfp_filters);
2382         rsfp_filters = NULL;
2383     }
2384
2385     rsfp = tryrsfp;
2386     name = savepv(name);
2387     SAVEFREEPV(name);
2388     SAVEI32(hints);
2389     hints = 0;
2390  
2391     /* switch to eval mode */
2392
2393     push_return(op->op_next);
2394     PUSHBLOCK(cx, CXt_EVAL, SP);
2395     PUSHEVAL(cx, name, compiling.cop_filegv);
2396
2397     compiling.cop_line = 0;
2398
2399     PUTBACK;
2400 #ifdef USE_THREADS
2401     MUTEX_LOCK(&eval_mutex);
2402     if (eval_owner && eval_owner != thr)
2403         while (eval_owner)
2404             COND_WAIT(&eval_cond, &eval_mutex);
2405     eval_owner = thr;
2406     MUTEX_UNLOCK(&eval_mutex);
2407 #endif /* USE_THREADS */
2408     return DOCATCH(doeval(G_SCALAR));
2409 }
2410
2411 PP(pp_dofile)
2412 {
2413     return pp_require(ARGS);
2414 }
2415
2416 PP(pp_entereval)
2417 {
2418     dSP;
2419     register CONTEXT *cx;
2420     dPOPss;
2421     I32 gimme = GIMME_V, was = sub_generation;
2422     char tmpbuf[TYPE_DIGITS(long) + 12];
2423     char *safestr;
2424     STRLEN len;
2425     OP *ret;
2426
2427     if (!SvPV(sv,len) || !len)
2428         RETPUSHUNDEF;
2429     TAINT_PROPER("eval");
2430
2431     ENTER;
2432     lex_start(sv);
2433     SAVETMPS;
2434  
2435     /* switch to eval mode */
2436
2437     SAVESPTR(compiling.cop_filegv);
2438     sprintf(tmpbuf, "_<(eval %lu)", (unsigned long)++evalseq);
2439     compiling.cop_filegv = gv_fetchfile(tmpbuf+2);
2440     compiling.cop_line = 1;
2441     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2442        deleting the eval's FILEGV from the stash before gv_check() runs
2443        (i.e. before run-time proper). To work around the coredump that
2444        ensues, we always turn GvMULTI_on for any globals that were
2445        introduced within evals. See force_ident(). GSAR 96-10-12 */
2446     safestr = savepv(tmpbuf);
2447     SAVEDELETE(defstash, safestr, strlen(safestr));
2448     SAVEI32(hints);
2449     hints = op->op_targ;
2450
2451     push_return(op->op_next);
2452     PUSHBLOCK(cx, CXt_EVAL, SP);
2453     PUSHEVAL(cx, 0, compiling.cop_filegv);
2454
2455     /* prepare to compile string */
2456
2457     if (perldb && curstash != debstash)
2458         save_lines(GvAV(compiling.cop_filegv), linestr);
2459     PUTBACK;
2460 #ifdef USE_THREADS
2461     MUTEX_LOCK(&eval_mutex);
2462     if (eval_owner && eval_owner != thr)
2463         while (eval_owner)
2464             COND_WAIT(&eval_cond, &eval_mutex);
2465     eval_owner = thr;
2466     MUTEX_UNLOCK(&eval_mutex);
2467 #endif /* USE_THREADS */
2468     ret = doeval(gimme);
2469     if (perldb && was != sub_generation) { /* Some subs defined here. */
2470         strcpy(safestr, "_<(eval )");   /* Anything fake and short. */
2471     }
2472     return DOCATCH(ret);
2473 }
2474
2475 PP(pp_leaveeval)
2476 {
2477     dSP;
2478     register SV **mark;
2479     SV **newsp;
2480     PMOP *newpm;
2481     I32 gimme;
2482     register CONTEXT *cx;
2483     OP *retop;
2484     U8 save_flags = op -> op_flags;
2485     I32 optype;
2486
2487     POPBLOCK(cx,newpm);
2488     POPEVAL(cx);
2489     retop = pop_return();
2490
2491     TAINT_NOT;
2492     if (gimme == G_VOID)
2493         MARK = newsp;
2494     else if (gimme == G_SCALAR) {
2495         MARK = newsp + 1;
2496         if (MARK <= SP) {
2497             if (SvFLAGS(TOPs) & SVs_TEMP)
2498                 *MARK = TOPs;
2499             else
2500                 *MARK = sv_mortalcopy(TOPs);
2501         }
2502         else {
2503             MEXTEND(mark,0);
2504             *MARK = &sv_undef;
2505         }
2506     }
2507     else {
2508         /* in case LEAVE wipes old return values */
2509         for (mark = newsp + 1; mark <= SP; mark++) {
2510             if (!(SvFLAGS(*mark) & SVs_TEMP)) {
2511                 *mark = sv_mortalcopy(*mark);
2512                 TAINT_NOT;      /* Each item is independent */
2513             }
2514         }
2515     }
2516     curpm = newpm;      /* Don't pop $1 et al till now */
2517
2518 #ifdef DEBUGGING
2519     assert(CvDEPTH(compcv) == 1);
2520 #endif
2521     CvDEPTH(compcv) = 0;
2522
2523     if (optype == OP_REQUIRE &&
2524         !(gimme == G_SCALAR ? SvTRUE(*sp) : sp > newsp))
2525     {
2526         /* Unassume the success we assumed earlier. */
2527         char *name = cx->blk_eval.old_name;
2528         (void)hv_delete(GvHVn(incgv), name, strlen(name), G_DISCARD);
2529         retop = die("%s did not return a true value", name);
2530     }
2531
2532     lex_end();
2533     LEAVE;
2534
2535     if (!(save_flags & OPf_SPECIAL))
2536         sv_setpv(GvSV(errgv),"");
2537
2538     RETURNOP(retop);
2539 }
2540
2541 PP(pp_entertry)
2542 {
2543     dSP;
2544     register CONTEXT *cx;
2545     I32 gimme = GIMME_V;
2546
2547     ENTER;
2548     SAVETMPS;
2549
2550     push_return(cLOGOP->op_other->op_next);
2551     PUSHBLOCK(cx, CXt_EVAL, SP);
2552     PUSHEVAL(cx, 0, 0);
2553     eval_root = op;             /* Only needed so that goto works right. */
2554
2555     in_eval = 1;
2556     sv_setpv(GvSV(errgv),"");
2557     PUTBACK;
2558     return DOCATCH(op->op_next);
2559 }
2560
2561 PP(pp_leavetry)
2562 {
2563     dSP;
2564     register SV **mark;
2565     SV **newsp;
2566     PMOP *newpm;
2567     I32 gimme;
2568     register CONTEXT *cx;
2569     I32 optype;
2570
2571     POPBLOCK(cx,newpm);
2572     POPEVAL(cx);
2573     pop_return();
2574
2575     TAINT_NOT;
2576     if (gimme == G_VOID)
2577         SP = newsp;
2578     else if (gimme == G_SCALAR) {
2579         MARK = newsp + 1;
2580         if (MARK <= SP) {
2581             if (SvFLAGS(TOPs) & (SVs_PADTMP|SVs_TEMP))
2582                 *MARK = TOPs;
2583             else
2584                 *MARK = sv_mortalcopy(TOPs);
2585         }
2586         else {
2587             MEXTEND(mark,0);
2588             *MARK = &sv_undef;
2589         }
2590         SP = MARK;
2591     }
2592     else {
2593         /* in case LEAVE wipes old return values */
2594         for (mark = newsp + 1; mark <= SP; mark++) {
2595             if (!(SvFLAGS(*mark) & (SVs_PADTMP|SVs_TEMP))) {
2596                 *mark = sv_mortalcopy(*mark);
2597                 TAINT_NOT;      /* Each item is independent */
2598             }
2599         }
2600     }
2601     curpm = newpm;      /* Don't pop $1 et al till now */
2602
2603     LEAVE;
2604     sv_setpv(GvSV(errgv),"");
2605     RETURN;
2606 }
2607
2608 static void
2609 doparseform(sv)
2610 SV *sv;
2611 {
2612     STRLEN len;
2613     register char *s = SvPV_force(sv, len);
2614     register char *send = s + len;
2615     register char *base;
2616     register I32 skipspaces = 0;
2617     bool noblank;
2618     bool repeat;
2619     bool postspace = FALSE;
2620     U16 *fops;
2621     register U16 *fpc;
2622     U16 *linepc;
2623     register I32 arg;
2624     bool ischop;
2625
2626     if (len == 0)
2627         croak("Null picture in formline");
2628     
2629     New(804, fops, (send - s)*3+10, U16);    /* Almost certainly too long... */
2630     fpc = fops;
2631
2632     if (s < send) {
2633         linepc = fpc;
2634         *fpc++ = FF_LINEMARK;
2635         noblank = repeat = FALSE;
2636         base = s;
2637     }
2638
2639     while (s <= send) {
2640         switch (*s++) {
2641         default:
2642             skipspaces = 0;
2643             continue;
2644
2645         case '~':
2646             if (*s == '~') {
2647                 repeat = TRUE;
2648                 *s = ' ';
2649             }
2650             noblank = TRUE;
2651             s[-1] = ' ';
2652             /* FALL THROUGH */
2653         case ' ': case '\t':
2654             skipspaces++;
2655             continue;
2656             
2657         case '\n': case 0:
2658             arg = s - base;
2659             skipspaces++;
2660             arg -= skipspaces;
2661             if (arg) {
2662                 if (postspace)
2663                     *fpc++ = FF_SPACE;
2664                 *fpc++ = FF_LITERAL;
2665                 *fpc++ = arg;
2666             }
2667             postspace = FALSE;
2668             if (s <= send)
2669                 skipspaces--;
2670             if (skipspaces) {
2671                 *fpc++ = FF_SKIP;
2672                 *fpc++ = skipspaces;
2673             }
2674             skipspaces = 0;
2675             if (s <= send)
2676                 *fpc++ = FF_NEWLINE;
2677             if (noblank) {
2678                 *fpc++ = FF_BLANK;
2679                 if (repeat)
2680                     arg = fpc - linepc + 1;
2681                 else
2682                     arg = 0;
2683                 *fpc++ = arg;
2684             }
2685             if (s < send) {
2686                 linepc = fpc;
2687                 *fpc++ = FF_LINEMARK;
2688                 noblank = repeat = FALSE;
2689                 base = s;
2690             }
2691             else
2692                 s++;
2693             continue;
2694
2695         case '@':
2696         case '^':
2697             ischop = s[-1] == '^';
2698
2699             if (postspace) {
2700                 *fpc++ = FF_SPACE;
2701                 postspace = FALSE;
2702             }
2703             arg = (s - base) - 1;
2704             if (arg) {
2705                 *fpc++ = FF_LITERAL;
2706                 *fpc++ = arg;
2707             }
2708
2709             base = s - 1;
2710             *fpc++ = FF_FETCH;
2711             if (*s == '*') {
2712                 s++;
2713                 *fpc++ = 0;
2714                 *fpc++ = FF_LINEGLOB;
2715             }
2716             else if (*s == '#' || (*s == '.' && s[1] == '#')) {
2717                 arg = ischop ? 512 : 0;
2718                 base = s - 1;
2719                 while (*s == '#')
2720                     s++;
2721                 if (*s == '.') {
2722                     char *f;
2723                     s++;
2724                     f = s;
2725                     while (*s == '#')
2726                         s++;
2727                     arg |= 256 + (s - f);
2728                 }
2729                 *fpc++ = s - base;              /* fieldsize for FETCH */
2730                 *fpc++ = FF_DECIMAL;
2731                 *fpc++ = arg;
2732             }
2733             else {
2734                 I32 prespace = 0;
2735                 bool ismore = FALSE;
2736
2737                 if (*s == '>') {
2738                     while (*++s == '>') ;
2739                     prespace = FF_SPACE;
2740                 }
2741                 else if (*s == '|') {
2742                     while (*++s == '|') ;
2743                     prespace = FF_HALFSPACE;
2744                     postspace = TRUE;
2745                 }
2746                 else {
2747                     if (*s == '<')
2748                         while (*++s == '<') ;
2749                     postspace = TRUE;
2750                 }
2751                 if (*s == '.' && s[1] == '.' && s[2] == '.') {
2752                     s += 3;
2753                     ismore = TRUE;
2754                 }
2755                 *fpc++ = s - base;              /* fieldsize for FETCH */
2756
2757                 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
2758
2759                 if (prespace)
2760                     *fpc++ = prespace;
2761                 *fpc++ = FF_ITEM;
2762                 if (ismore)
2763                     *fpc++ = FF_MORE;
2764                 if (ischop)
2765                     *fpc++ = FF_CHOP;
2766             }
2767             base = s;
2768             skipspaces = 0;
2769             continue;
2770         }
2771     }
2772     *fpc++ = FF_END;
2773
2774     arg = fpc - fops;
2775     { /* need to jump to the next word */
2776         int z;
2777         z = WORD_ALIGN - SvCUR(sv) % WORD_ALIGN;
2778         SvGROW(sv, SvCUR(sv) + z + arg * sizeof(U16) + 4);
2779         s = SvPVX(sv) + SvCUR(sv) + z;
2780     }
2781     Copy(fops, s, arg, U16);
2782     Safefree(fops);
2783     sv_magic(sv, Nullsv, 'f', Nullch, 0);
2784     SvCOMPILED_on(sv);
2785 }