Implicit require during compile reset line numbering
[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 #ifdef PERL_OBJECT
29 #define CALLOP this->*PL_op
30 #else
31 #define CALLOP *PL_op
32 static OP *docatch _((OP *o));
33 static OP *dofindlabel _((OP *o, char *label, OP **opstack, OP **oplimit));
34 static void doparseform _((SV *sv));
35 static I32 dopoptoeval _((I32 startingblock));
36 static I32 dopoptolabel _((char *label));
37 static I32 dopoptoloop _((I32 startingblock));
38 static I32 dopoptosub _((I32 startingblock));
39 static I32 dopoptosub_at _((PERL_CONTEXT *cxstk, I32 startingblock));
40 static void save_lines _((AV *array, SV *sv));
41 static I32 sortcv _((SV *a, SV *b));
42 static void qsortsv _((SV **array, size_t num_elts, I32 (*fun)(SV *a, SV *b)));
43 static OP *doeval _((int gimme, OP** startop));
44 #endif
45
46 PP(pp_wantarray)
47 {
48     djSP;
49     I32 cxix;
50     EXTEND(SP, 1);
51
52     cxix = dopoptosub(cxstack_ix);
53     if (cxix < 0)
54         RETPUSHUNDEF;
55
56     switch (cxstack[cxix].blk_gimme) {
57     case G_ARRAY:
58         RETPUSHYES;
59     case G_SCALAR:
60         RETPUSHNO;
61     default:
62         RETPUSHUNDEF;
63     }
64 }
65
66 PP(pp_regcmaybe)
67 {
68     return NORMAL;
69 }
70
71 PP(pp_regcreset)
72 {
73     /* XXXX Should store the old value to allow for tie/overload - and
74        restore in regcomp, where marked with XXXX. */
75     PL_reginterp_cnt = 0;
76     return NORMAL;
77 }
78
79 PP(pp_regcomp)
80 {
81     djSP;
82     register PMOP *pm = (PMOP*)cLOGOP->op_other;
83     register char *t;
84     SV *tmpstr;
85     STRLEN len;
86     MAGIC *mg = Null(MAGIC*);
87
88     tmpstr = POPs;
89     if (SvROK(tmpstr)) {
90         SV *sv = SvRV(tmpstr);
91         if(SvMAGICAL(sv))
92             mg = mg_find(sv, 'r');
93     }
94     if (mg) {
95         regexp *re = (regexp *)mg->mg_obj;
96         ReREFCNT_dec(pm->op_pmregexp);
97         pm->op_pmregexp = ReREFCNT_inc(re);
98     }
99     else {
100         t = SvPV(tmpstr, len);
101
102         /* Check against the last compiled regexp. */
103         if (!pm->op_pmregexp || !pm->op_pmregexp->precomp ||
104             pm->op_pmregexp->prelen != len ||
105             memNE(pm->op_pmregexp->precomp, t, len))
106         {
107             if (pm->op_pmregexp) {
108                 ReREFCNT_dec(pm->op_pmregexp);
109                 pm->op_pmregexp = Null(REGEXP*);        /* crucial if regcomp aborts */
110             }
111             if (PL_op->op_flags & OPf_SPECIAL)
112                 PL_reginterp_cnt = I32_MAX; /* Mark as safe.  */
113
114             pm->op_pmflags = pm->op_pmpermflags;        /* reset case sensitivity */
115             pm->op_pmregexp = CALLREGCOMP(t, t + len, pm);
116             PL_reginterp_cnt = 0;               /* XXXX Be extra paranoid - needed
117                                            inside tie/overload accessors.  */
118         }
119     }
120
121 #ifndef INCOMPLETE_TAINTS
122     if (PL_tainting) {
123         if (PL_tainted)
124             pm->op_pmdynflags |= PMdf_TAINTED;
125         else
126             pm->op_pmdynflags &= ~PMdf_TAINTED;
127     }
128 #endif
129
130     if (!pm->op_pmregexp->prelen && PL_curpm)
131         pm = PL_curpm;
132     else if (strEQ("\\s+", pm->op_pmregexp->precomp))
133         pm->op_pmflags |= PMf_WHITE;
134
135     if (pm->op_pmflags & PMf_KEEP) {
136         pm->op_private &= ~OPpRUNTIME;  /* no point compiling again */
137         cLOGOP->op_first->op_next = PL_op->op_next;
138     }
139     RETURN;
140 }
141
142 PP(pp_substcont)
143 {
144     djSP;
145     register PMOP *pm = (PMOP*) cLOGOP->op_other;
146     register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
147     register SV *dstr = cx->sb_dstr;
148     register char *s = cx->sb_s;
149     register char *m = cx->sb_m;
150     char *orig = cx->sb_orig;
151     register REGEXP *rx = cx->sb_rx;
152
153     rxres_restore(&cx->sb_rxres, rx);
154
155     if (cx->sb_iters++) {
156         if (cx->sb_iters > cx->sb_maxiters)
157             DIE("Substitution loop");
158
159         if (!(cx->sb_rxtainted & 2) && SvTAINTED(TOPs))
160             cx->sb_rxtainted |= 2;
161         sv_catsv(dstr, POPs);
162
163         /* Are we done */
164         if (cx->sb_once || !CALLREGEXEC(rx, s, cx->sb_strend, orig,
165                                      s == m, Nullsv, NULL,
166                                      cx->sb_safebase ? 0 : REXEC_COPY_STR))
167         {
168             SV *targ = cx->sb_targ;
169             sv_catpvn(dstr, s, cx->sb_strend - s);
170
171             cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
172
173             (void)SvOOK_off(targ);
174             Safefree(SvPVX(targ));
175             SvPVX(targ) = SvPVX(dstr);
176             SvCUR_set(targ, SvCUR(dstr));
177             SvLEN_set(targ, SvLEN(dstr));
178             SvPVX(dstr) = 0;
179             sv_free(dstr);
180
181             TAINT_IF(cx->sb_rxtainted & 1);
182             PUSHs(sv_2mortal(newSViv((I32)cx->sb_iters - 1)));
183
184             (void)SvPOK_only(targ);
185             TAINT_IF(cx->sb_rxtainted);
186             SvSETMAGIC(targ);
187             SvTAINT(targ);
188
189             LEAVE_SCOPE(cx->sb_oldsave);
190             POPSUBST(cx);
191             RETURNOP(pm->op_next);
192         }
193     }
194     if (rx->subbase && rx->subbase != orig) {
195         m = s;
196         s = orig;
197         cx->sb_orig = orig = rx->subbase;
198         s = orig + (m - s);
199         cx->sb_strend = s + (cx->sb_strend - m);
200     }
201     cx->sb_m = m = rx->startp[0];
202     sv_catpvn(dstr, s, m-s);
203     cx->sb_s = rx->endp[0];
204     cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
205     rxres_save(&cx->sb_rxres, rx);
206     RETURNOP(pm->op_pmreplstart);
207 }
208
209 void
210 rxres_save(void **rsp, REGEXP *rx)
211 {
212     UV *p = (UV*)*rsp;
213     U32 i;
214
215     if (!p || p[1] < rx->nparens) {
216         i = 6 + rx->nparens * 2;
217         if (!p)
218             New(501, p, i, UV);
219         else
220             Renew(p, i, UV);
221         *rsp = (void*)p;
222     }
223
224     *p++ = (UV)rx->subbase;
225     rx->subbase = Nullch;
226
227     *p++ = rx->nparens;
228
229     *p++ = (UV)rx->subbeg;
230     *p++ = (UV)rx->subend;
231     for (i = 0; i <= rx->nparens; ++i) {
232         *p++ = (UV)rx->startp[i];
233         *p++ = (UV)rx->endp[i];
234     }
235 }
236
237 void
238 rxres_restore(void **rsp, REGEXP *rx)
239 {
240     UV *p = (UV*)*rsp;
241     U32 i;
242
243     Safefree(rx->subbase);
244     rx->subbase = (char*)(*p);
245     *p++ = 0;
246
247     rx->nparens = *p++;
248
249     rx->subbeg = (char*)(*p++);
250     rx->subend = (char*)(*p++);
251     for (i = 0; i <= rx->nparens; ++i) {
252         rx->startp[i] = (char*)(*p++);
253         rx->endp[i] = (char*)(*p++);
254     }
255 }
256
257 void
258 rxres_free(void **rsp)
259 {
260     UV *p = (UV*)*rsp;
261
262     if (p) {
263         Safefree((char*)(*p));
264         Safefree(p);
265         *rsp = Null(void*);
266     }
267 }
268
269 PP(pp_formline)
270 {
271     djSP; dMARK; dORIGMARK;
272     register SV *tmpForm = *++MARK;
273     register U16 *fpc;
274     register char *t;
275     register char *f;
276     register char *s;
277     register char *send;
278     register I32 arg;
279     register SV *sv;
280     char *item;
281     I32 itemsize;
282     I32 fieldsize;
283     I32 lines = 0;
284     bool chopspace = (strchr(PL_chopset, ' ') != Nullch);
285     char *chophere;
286     char *linemark;
287     double value;
288     bool gotsome;
289     STRLEN len;
290     STRLEN fudge = SvCUR(tmpForm) * (IN_UTF8 ? 3 : 1) + 1;
291
292     if (!SvMAGICAL(tmpForm) || !SvCOMPILED(tmpForm)) {
293         SvREADONLY_off(tmpForm);
294         doparseform(tmpForm);
295     }
296
297     SvPV_force(PL_formtarget, len);
298     t = SvGROW(PL_formtarget, len + fudge + 1);  /* XXX SvCUR bad */
299     t += len;
300     f = SvPV(tmpForm, len);
301     /* need to jump to the next word */
302     s = f + len + WORD_ALIGN - SvCUR(tmpForm) % WORD_ALIGN;
303
304     fpc = (U16*)s;
305
306     for (;;) {
307         DEBUG_f( {
308             char *name = "???";
309             arg = -1;
310             switch (*fpc) {
311             case FF_LITERAL:    arg = fpc[1]; name = "LITERAL"; break;
312             case FF_BLANK:      arg = fpc[1]; name = "BLANK";   break;
313             case FF_SKIP:       arg = fpc[1]; name = "SKIP";    break;
314             case FF_FETCH:      arg = fpc[1]; name = "FETCH";   break;
315             case FF_DECIMAL:    arg = fpc[1]; name = "DECIMAL"; break;
316
317             case FF_CHECKNL:    name = "CHECKNL";       break;
318             case FF_CHECKCHOP:  name = "CHECKCHOP";     break;
319             case FF_SPACE:      name = "SPACE";         break;
320             case FF_HALFSPACE:  name = "HALFSPACE";     break;
321             case FF_ITEM:       name = "ITEM";          break;
322             case FF_CHOP:       name = "CHOP";          break;
323             case FF_LINEGLOB:   name = "LINEGLOB";      break;
324             case FF_NEWLINE:    name = "NEWLINE";       break;
325             case FF_MORE:       name = "MORE";          break;
326             case FF_LINEMARK:   name = "LINEMARK";      break;
327             case FF_END:        name = "END";           break;
328             }
329             if (arg >= 0)
330                 PerlIO_printf(PerlIO_stderr(), "%-16s%ld\n", name, (long) arg);
331             else
332                 PerlIO_printf(PerlIO_stderr(), "%-16s\n", name);
333         } )
334         switch (*fpc++) {
335         case FF_LINEMARK:
336             linemark = t;
337             lines++;
338             gotsome = FALSE;
339             break;
340
341         case FF_LITERAL:
342             arg = *fpc++;
343             while (arg--)
344                 *t++ = *f++;
345             break;
346
347         case FF_SKIP:
348             f += *fpc++;
349             break;
350
351         case FF_FETCH:
352             arg = *fpc++;
353             f += arg;
354             fieldsize = arg;
355
356             if (MARK < SP)
357                 sv = *++MARK;
358             else {
359                 sv = &PL_sv_no;
360                 if (ckWARN(WARN_SYNTAX))
361                     warner(WARN_SYNTAX, "Not enough format arguments");
362             }
363             break;
364
365         case FF_CHECKNL:
366             item = s = SvPV(sv, len);
367             itemsize = len;
368             if (IN_UTF8) {
369                 itemsize = sv_len_utf8(sv);
370                 if (itemsize != len) {
371                     I32 itembytes;
372                     if (itemsize > fieldsize) {
373                         itemsize = fieldsize;
374                         itembytes = itemsize;
375                         sv_pos_u2b(sv, &itembytes, 0);
376                     }
377                     else
378                         itembytes = len;
379                     send = chophere = s + itembytes;
380                     while (s < send) {
381                         if (*s & ~31)
382                             gotsome = TRUE;
383                         else if (*s == '\n')
384                             break;
385                         s++;
386                     }
387                     itemsize = s - item;
388                     sv_pos_b2u(sv, &itemsize);
389                     break;
390                 }
391             }
392             if (itemsize > fieldsize)
393                 itemsize = fieldsize;
394             send = chophere = s + itemsize;
395             while (s < send) {
396                 if (*s & ~31)
397                     gotsome = TRUE;
398                 else if (*s == '\n')
399                     break;
400                 s++;
401             }
402             itemsize = s - item;
403             break;
404
405         case FF_CHECKCHOP:
406             item = s = SvPV(sv, len);
407             itemsize = len;
408             if (IN_UTF8) {
409                 itemsize = sv_len_utf8(sv);
410                 if (itemsize != len) {
411                     I32 itembytes;
412                     if (itemsize <= fieldsize) {
413                         send = chophere = s + itemsize;
414                         while (s < send) {
415                             if (*s == '\r') {
416                                 itemsize = s - item;
417                                 break;
418                             }
419                             if (*s++ & ~31)
420                                 gotsome = TRUE;
421                         }
422                     }
423                     else {
424                         itemsize = fieldsize;
425                         itembytes = itemsize;
426                         sv_pos_u2b(sv, &itembytes, 0);
427                         send = chophere = s + itembytes;
428                         while (s < send || (s == send && isSPACE(*s))) {
429                             if (isSPACE(*s)) {
430                                 if (chopspace)
431                                     chophere = s;
432                                 if (*s == '\r')
433                                     break;
434                             }
435                             else {
436                                 if (*s & ~31)
437                                     gotsome = TRUE;
438                                 if (strchr(PL_chopset, *s))
439                                     chophere = s + 1;
440                             }
441                             s++;
442                         }
443                         itemsize = chophere - item;
444                         sv_pos_b2u(sv, &itemsize);
445                     }
446                     break;
447                 }
448             }
449             if (itemsize <= fieldsize) {
450                 send = chophere = s + itemsize;
451                 while (s < send) {
452                     if (*s == '\r') {
453                         itemsize = s - item;
454                         break;
455                     }
456                     if (*s++ & ~31)
457                         gotsome = TRUE;
458                 }
459             }
460             else {
461                 itemsize = fieldsize;
462                 send = chophere = s + itemsize;
463                 while (s < send || (s == send && isSPACE(*s))) {
464                     if (isSPACE(*s)) {
465                         if (chopspace)
466                             chophere = s;
467                         if (*s == '\r')
468                             break;
469                     }
470                     else {
471                         if (*s & ~31)
472                             gotsome = TRUE;
473                         if (strchr(PL_chopset, *s))
474                             chophere = s + 1;
475                     }
476                     s++;
477                 }
478                 itemsize = chophere - item;
479             }
480             break;
481
482         case FF_SPACE:
483             arg = fieldsize - itemsize;
484             if (arg) {
485                 fieldsize -= arg;
486                 while (arg-- > 0)
487                     *t++ = ' ';
488             }
489             break;
490
491         case FF_HALFSPACE:
492             arg = fieldsize - itemsize;
493             if (arg) {
494                 arg /= 2;
495                 fieldsize -= arg;
496                 while (arg-- > 0)
497                     *t++ = ' ';
498             }
499             break;
500
501         case FF_ITEM:
502             arg = itemsize;
503             s = item;
504             if (IN_UTF8) {
505                 while (arg--) {
506                     if (*s & 0x80) {
507                         switch (UTF8SKIP(s)) {
508                         case 7: *t++ = *s++;
509                         case 6: *t++ = *s++;
510                         case 5: *t++ = *s++;
511                         case 4: *t++ = *s++;
512                         case 3: *t++ = *s++;
513                         case 2: *t++ = *s++;
514                         case 1: *t++ = *s++;
515                         }
516                     }
517                     else {
518                         if ( !((*t++ = *s++) & ~31) )
519                             t[-1] = ' ';
520                     }
521                 }
522                 break;
523             }
524             while (arg--) {
525 #ifdef EBCDIC
526                 int ch = *t++ = *s++;
527                 if (iscntrl(ch))
528 #else
529                 if ( !((*t++ = *s++) & ~31) )
530 #endif
531                     t[-1] = ' ';
532             }
533             break;
534
535         case FF_CHOP:
536             s = chophere;
537             if (chopspace) {
538                 while (*s && isSPACE(*s))
539                     s++;
540             }
541             sv_chop(sv,s);
542             break;
543
544         case FF_LINEGLOB:
545             item = s = SvPV(sv, len);
546             itemsize = len;
547             if (itemsize) {
548                 gotsome = TRUE;
549                 send = s + itemsize;
550                 while (s < send) {
551                     if (*s++ == '\n') {
552                         if (s == send)
553                             itemsize--;
554                         else
555                             lines++;
556                     }
557                 }
558                 SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
559                 sv_catpvn(PL_formtarget, item, itemsize);
560                 SvGROW(PL_formtarget, SvCUR(PL_formtarget) + fudge + 1);
561                 t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget);
562             }
563             break;
564
565         case FF_DECIMAL:
566             /* If the field is marked with ^ and the value is undefined,
567                blank it out. */
568             arg = *fpc++;
569             if ((arg & 512) && !SvOK(sv)) {
570                 arg = fieldsize;
571                 while (arg--)
572                     *t++ = ' ';
573                 break;
574             }
575             gotsome = TRUE;
576             value = SvNV(sv);
577             /* Formats aren't yet marked for locales, so assume "yes". */
578             SET_NUMERIC_LOCAL();
579             if (arg & 256) {
580                 sprintf(t, "%#*.*f", (int) fieldsize, (int) arg & 255, value);
581             } else {
582                 sprintf(t, "%*.0f", (int) fieldsize, value);
583             }
584             t += fieldsize;
585             break;
586
587         case FF_NEWLINE:
588             f++;
589             while (t-- > linemark && *t == ' ') ;
590             t++;
591             *t++ = '\n';
592             break;
593
594         case FF_BLANK:
595             arg = *fpc++;
596             if (gotsome) {
597                 if (arg) {              /* repeat until fields exhausted? */
598                     *t = '\0';
599                     SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
600                     lines += FmLINES(PL_formtarget);
601                     if (lines == 200) {
602                         arg = t - linemark;
603                         if (strnEQ(linemark, linemark - arg, arg))
604                             DIE("Runaway format");
605                     }
606                     FmLINES(PL_formtarget) = lines;
607                     SP = ORIGMARK;
608                     RETURNOP(cLISTOP->op_first);
609                 }
610             }
611             else {
612                 t = linemark;
613                 lines--;
614             }
615             break;
616
617         case FF_MORE:
618             if (itemsize) {
619                 arg = fieldsize - itemsize;
620                 if (arg) {
621                     fieldsize -= arg;
622                     while (arg-- > 0)
623                         *t++ = ' ';
624                 }
625                 s = t - 3;
626                 if (strnEQ(s,"   ",3)) {
627                     while (s > SvPVX(PL_formtarget) && isSPACE(s[-1]))
628                         s--;
629                 }
630                 *s++ = '.';
631                 *s++ = '.';
632                 *s++ = '.';
633             }
634             break;
635
636         case FF_END:
637             *t = '\0';
638             SvCUR_set(PL_formtarget, t - SvPVX(PL_formtarget));
639             FmLINES(PL_formtarget) += lines;
640             SP = ORIGMARK;
641             RETPUSHYES;
642         }
643     }
644 }
645
646 PP(pp_grepstart)
647 {
648     djSP;
649     SV *src;
650
651     if (PL_stack_base + *PL_markstack_ptr == SP) {
652         (void)POPMARK;
653         if (GIMME_V == G_SCALAR)
654             XPUSHs(&PL_sv_no);
655         RETURNOP(PL_op->op_next->op_next);
656     }
657     PL_stack_sp = PL_stack_base + *PL_markstack_ptr + 1;
658     pp_pushmark(ARGS);                          /* push dst */
659     pp_pushmark(ARGS);                          /* push src */
660     ENTER;                                      /* enter outer scope */
661
662     SAVETMPS;
663 #ifdef USE_THREADS
664     /* SAVE_DEFSV does *not* suffice here */
665     save_sptr(&THREADSV(0));
666 #else
667     SAVESPTR(GvSV(PL_defgv));
668 #endif /* USE_THREADS */
669     ENTER;                                      /* enter inner scope */
670     SAVESPTR(PL_curpm);
671
672     src = PL_stack_base[*PL_markstack_ptr];
673     SvTEMP_off(src);
674     DEFSV = src;
675
676     PUTBACK;
677     if (PL_op->op_type == OP_MAPSTART)
678         pp_pushmark(ARGS);                      /* push top */
679     return ((LOGOP*)PL_op->op_next)->op_other;
680 }
681
682 PP(pp_mapstart)
683 {
684     DIE("panic: mapstart");     /* uses grepstart */
685 }
686
687 PP(pp_mapwhile)
688 {
689     djSP;
690     I32 diff = (SP - PL_stack_base) - *PL_markstack_ptr;
691     I32 count;
692     I32 shift;
693     SV** src;
694     SV** dst; 
695
696     ++PL_markstack_ptr[-1];
697     if (diff) {
698         if (diff > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) {
699             shift = diff - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]);
700             count = (SP - PL_stack_base) - PL_markstack_ptr[-1] + 2;
701             
702             EXTEND(SP,shift);
703             src = SP;
704             dst = (SP += shift);
705             PL_markstack_ptr[-1] += shift;
706             *PL_markstack_ptr += shift;
707             while (--count)
708                 *dst-- = *src--;
709         }
710         dst = PL_stack_base + (PL_markstack_ptr[-2] += diff) - 1; 
711         ++diff;
712         while (--diff)
713             *dst-- = SvTEMP(TOPs) ? POPs : sv_mortalcopy(POPs); 
714     }
715     LEAVE;                                      /* exit inner scope */
716
717     /* All done yet? */
718     if (PL_markstack_ptr[-1] > *PL_markstack_ptr) {
719         I32 items;
720         I32 gimme = GIMME_V;
721
722         (void)POPMARK;                          /* pop top */
723         LEAVE;                                  /* exit outer scope */
724         (void)POPMARK;                          /* pop src */
725         items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
726         (void)POPMARK;                          /* pop dst */
727         SP = PL_stack_base + POPMARK;           /* pop original mark */
728         if (gimme == G_SCALAR) {
729             dTARGET;
730             XPUSHi(items);
731         }
732         else if (gimme == G_ARRAY)
733             SP += items;
734         RETURN;
735     }
736     else {
737         SV *src;
738
739         ENTER;                                  /* enter inner scope */
740         SAVESPTR(PL_curpm);
741
742         src = PL_stack_base[PL_markstack_ptr[-1]];
743         SvTEMP_off(src);
744         DEFSV = src;
745
746         RETURNOP(cLOGOP->op_other);
747     }
748 }
749
750 PP(pp_sort)
751 {
752     djSP; dMARK; dORIGMARK;
753     register SV **up;
754     SV **myorigmark = ORIGMARK;
755     register I32 max;
756     HV *stash;
757     GV *gv;
758     CV *cv;
759     I32 gimme = GIMME;
760     OP* nextop = PL_op->op_next;
761
762     if (gimme != G_ARRAY) {
763         SP = MARK;
764         RETPUSHUNDEF;
765     }
766
767     ENTER;
768     SAVEPPTR(PL_sortcop);
769     if (PL_op->op_flags & OPf_STACKED) {
770         if (PL_op->op_flags & OPf_SPECIAL) {
771             OP *kid = cLISTOP->op_first->op_sibling;    /* pass pushmark */
772             kid = kUNOP->op_first;                      /* pass rv2gv */
773             kid = kUNOP->op_first;                      /* pass leave */
774             PL_sortcop = kid->op_next;
775             stash = PL_curcop->cop_stash;
776         }
777         else {
778             cv = sv_2cv(*++MARK, &stash, &gv, 0);
779             if (!(cv && CvROOT(cv))) {
780                 if (gv) {
781                     SV *tmpstr = sv_newmortal();
782                     gv_efullname3(tmpstr, gv, Nullch);
783                     if (cv && CvXSUB(cv))
784                         DIE("Xsub \"%s\" called in sort", SvPVX(tmpstr));
785                     DIE("Undefined sort subroutine \"%s\" called",
786                         SvPVX(tmpstr));
787                 }
788                 if (cv) {
789                     if (CvXSUB(cv))
790                         DIE("Xsub called in sort");
791                     DIE("Undefined subroutine in sort");
792                 }
793                 DIE("Not a CODE reference in sort");
794             }
795             PL_sortcop = CvSTART(cv);
796             SAVESPTR(CvROOT(cv)->op_ppaddr);
797             CvROOT(cv)->op_ppaddr = ppaddr[OP_NULL];
798
799             SAVESPTR(PL_curpad);
800             PL_curpad = AvARRAY((AV*)AvARRAY(CvPADLIST(cv))[1]);
801         }
802     }
803     else {
804         PL_sortcop = Nullop;
805         stash = PL_curcop->cop_stash;
806     }
807
808     up = myorigmark + 1;
809     while (MARK < SP) { /* This may or may not shift down one here. */
810         /*SUPPRESS 560*/
811         if (*up = *++MARK) {                    /* Weed out nulls. */
812             SvTEMP_off(*up);
813             if (!PL_sortcop && !SvPOK(*up))
814                 (void)sv_2pv(*up, &PL_na);
815             up++;
816         }
817     }
818     max = --up - myorigmark;
819     if (PL_sortcop) {
820         if (max > 1) {
821             PERL_CONTEXT *cx;
822             SV** newsp;
823             bool oldcatch = CATCH_GET;
824
825             SAVETMPS;
826             SAVEOP();
827
828             CATCH_SET(TRUE);
829             PUSHSTACKi(PERLSI_SORT);
830             if (PL_sortstash != stash) {
831                 PL_firstgv = gv_fetchpv("a", TRUE, SVt_PV);
832                 PL_secondgv = gv_fetchpv("b", TRUE, SVt_PV);
833                 PL_sortstash = stash;
834             }
835
836             SAVESPTR(GvSV(PL_firstgv));
837             SAVESPTR(GvSV(PL_secondgv));
838
839             PUSHBLOCK(cx, CXt_NULL, PL_stack_base);
840             if (!(PL_op->op_flags & OPf_SPECIAL)) {
841                 bool hasargs = FALSE;
842                 cx->cx_type = CXt_SUB;
843                 cx->blk_gimme = G_SCALAR;
844                 PUSHSUB(cx);
845                 if (!CvDEPTH(cv))
846                     (void)SvREFCNT_inc(cv); /* in preparation for POPSUB */
847             }
848             PL_sortcxix = cxstack_ix;
849             qsortsv((myorigmark+1), max, FUNC_NAME_TO_PTR(sortcv));
850
851             POPBLOCK(cx,PL_curpm);
852             POPSTACK;
853             CATCH_SET(oldcatch);
854         }
855     }
856     else {
857         if (max > 1) {
858             MEXTEND(SP, 20);    /* Can't afford stack realloc on signal. */
859             qsortsv(ORIGMARK+1, max,
860                     (PL_op->op_private & OPpLOCALE)
861                     ? FUNC_NAME_TO_PTR(sv_cmp_locale)
862                     : FUNC_NAME_TO_PTR(sv_cmp));
863         }
864     }
865     LEAVE;
866     PL_stack_sp = ORIGMARK + max;
867     return nextop;
868 }
869
870 /* Range stuff. */
871
872 PP(pp_range)
873 {
874     if (GIMME == G_ARRAY)
875         return cCONDOP->op_true;
876     return SvTRUEx(PAD_SV(PL_op->op_targ)) ? cCONDOP->op_false : cCONDOP->op_true;
877 }
878
879 PP(pp_flip)
880 {
881     djSP;
882
883     if (GIMME == G_ARRAY) {
884         RETURNOP(((CONDOP*)cUNOP->op_first)->op_false);
885     }
886     else {
887         dTOPss;
888         SV *targ = PAD_SV(PL_op->op_targ);
889
890         if ((PL_op->op_private & OPpFLIP_LINENUM)
891           ? (PL_last_in_gv && SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv)))
892           : SvTRUE(sv) ) {
893             sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
894             if (PL_op->op_flags & OPf_SPECIAL) {
895                 sv_setiv(targ, 1);
896                 SETs(targ);
897                 RETURN;
898             }
899             else {
900                 sv_setiv(targ, 0);
901                 SP--;
902                 RETURNOP(((CONDOP*)cUNOP->op_first)->op_false);
903             }
904         }
905         sv_setpv(TARG, "");
906         SETs(targ);
907         RETURN;
908     }
909 }
910
911 PP(pp_flop)
912 {
913     djSP;
914
915     if (GIMME == G_ARRAY) {
916         dPOPPOPssrl;
917         register I32 i;
918         register SV *sv;
919         I32 max;
920
921         if (SvNIOKp(left) || !SvPOKp(left) ||
922           (looks_like_number(left) && *SvPVX(left) != '0') )
923         {
924             if (SvNV(left) < IV_MIN || SvNV(right) >= IV_MAX)
925                 croak("Range iterator outside integer range");
926             i = SvIV(left);
927             max = SvIV(right);
928             if (max >= i) {
929                 EXTEND_MORTAL(max - i + 1);
930                 EXTEND(SP, max - i + 1);
931             }
932             while (i <= max) {
933                 sv = sv_2mortal(newSViv(i++));
934                 PUSHs(sv);
935             }
936         }
937         else {
938             SV *final = sv_mortalcopy(right);
939             STRLEN len;
940             char *tmps = SvPV(final, len);
941
942             sv = sv_mortalcopy(left);
943             SvPV_force(sv,PL_na);
944             while (!SvNIOKp(sv) && SvCUR(sv) <= len) {
945                 XPUSHs(sv);
946                 if (strEQ(SvPVX(sv),tmps))
947                     break;
948                 sv = sv_2mortal(newSVsv(sv));
949                 sv_inc(sv);
950             }
951         }
952     }
953     else {
954         dTOPss;
955         SV *targ = PAD_SV(cUNOP->op_first->op_targ);
956         sv_inc(targ);
957         if ((PL_op->op_private & OPpFLIP_LINENUM)
958           ? (PL_last_in_gv && SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv)))
959           : SvTRUE(sv) ) {
960             sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
961             sv_catpv(targ, "E0");
962         }
963         SETs(targ);
964     }
965
966     RETURN;
967 }
968
969 /* Control. */
970
971 STATIC I32
972 dopoptolabel(char *label)
973 {
974     dTHR;
975     register I32 i;
976     register PERL_CONTEXT *cx;
977
978     for (i = cxstack_ix; i >= 0; i--) {
979         cx = &cxstack[i];
980         switch (cx->cx_type) {
981         case CXt_SUBST:
982             if (ckWARN(WARN_UNSAFE))
983                 warner(WARN_UNSAFE, "Exiting substitution via %s", 
984                         op_name[PL_op->op_type]);
985             break;
986         case CXt_SUB:
987             if (ckWARN(WARN_UNSAFE))
988                 warner(WARN_UNSAFE, "Exiting subroutine via %s", 
989                         op_name[PL_op->op_type]);
990             break;
991         case CXt_EVAL:
992             if (ckWARN(WARN_UNSAFE))
993                 warner(WARN_UNSAFE, "Exiting eval via %s", 
994                         op_name[PL_op->op_type]);
995             break;
996         case CXt_NULL:
997             if (ckWARN(WARN_UNSAFE))
998                 warner(WARN_UNSAFE, "Exiting pseudo-block via %s", 
999                         op_name[PL_op->op_type]);
1000             return -1;
1001         case CXt_LOOP:
1002             if (!cx->blk_loop.label ||
1003               strNE(label, cx->blk_loop.label) ) {
1004                 DEBUG_l(deb("(Skipping label #%ld %s)\n",
1005                         (long)i, cx->blk_loop.label));
1006                 continue;
1007             }
1008             DEBUG_l( deb("(Found label #%ld %s)\n", (long)i, label));
1009             return i;
1010         }
1011     }
1012     return i;
1013 }
1014
1015 I32
1016 dowantarray(void)
1017 {
1018     I32 gimme = block_gimme();
1019     return (gimme == G_VOID) ? G_SCALAR : gimme;
1020 }
1021
1022 I32
1023 block_gimme(void)
1024 {
1025     dTHR;
1026     I32 cxix;
1027
1028     cxix = dopoptosub(cxstack_ix);
1029     if (cxix < 0)
1030         return G_VOID;
1031
1032     switch (cxstack[cxix].blk_gimme) {
1033     case G_VOID:
1034         return G_VOID;
1035     case G_SCALAR:
1036         return G_SCALAR;
1037     case G_ARRAY:
1038         return G_ARRAY;
1039     default:
1040         croak("panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
1041         /* NOTREACHED */
1042         return 0;
1043     }
1044 }
1045
1046 STATIC I32
1047 dopoptosub(I32 startingblock)
1048 {
1049     dTHR;
1050     return dopoptosub_at(cxstack, startingblock);
1051 }
1052
1053 STATIC I32
1054 dopoptosub_at(PERL_CONTEXT *cxstk, I32 startingblock)
1055 {
1056     dTHR;
1057     I32 i;
1058     register PERL_CONTEXT *cx;
1059     for (i = startingblock; i >= 0; i--) {
1060         cx = &cxstk[i];
1061         switch (cx->cx_type) {
1062         default:
1063             continue;
1064         case CXt_EVAL:
1065         case CXt_SUB:
1066             DEBUG_l( deb("(Found sub #%ld)\n", (long)i));
1067             return i;
1068         }
1069     }
1070     return i;
1071 }
1072
1073 STATIC I32
1074 dopoptoeval(I32 startingblock)
1075 {
1076     dTHR;
1077     I32 i;
1078     register PERL_CONTEXT *cx;
1079     for (i = startingblock; i >= 0; i--) {
1080         cx = &cxstack[i];
1081         switch (cx->cx_type) {
1082         default:
1083             continue;
1084         case CXt_EVAL:
1085             DEBUG_l( deb("(Found eval #%ld)\n", (long)i));
1086             return i;
1087         }
1088     }
1089     return i;
1090 }
1091
1092 STATIC I32
1093 dopoptoloop(I32 startingblock)
1094 {
1095     dTHR;
1096     I32 i;
1097     register PERL_CONTEXT *cx;
1098     for (i = startingblock; i >= 0; i--) {
1099         cx = &cxstack[i];
1100         switch (cx->cx_type) {
1101         case CXt_SUBST:
1102             if (ckWARN(WARN_UNSAFE))
1103                 warner(WARN_UNSAFE, "Exiting substitution via %s", 
1104                         op_name[PL_op->op_type]);
1105             break;
1106         case CXt_SUB:
1107             if (ckWARN(WARN_UNSAFE))
1108                 warner(WARN_UNSAFE, "Exiting subroutine via %s", 
1109                         op_name[PL_op->op_type]);
1110             break;
1111         case CXt_EVAL:
1112             if (ckWARN(WARN_UNSAFE))
1113                 warner(WARN_UNSAFE, "Exiting eval via %s", 
1114                         op_name[PL_op->op_type]);
1115             break;
1116         case CXt_NULL:
1117             if (ckWARN(WARN_UNSAFE))
1118                 warner(WARN_UNSAFE, "Exiting pseudo-block via %s", 
1119                         op_name[PL_op->op_type]);
1120             return -1;
1121         case CXt_LOOP:
1122             DEBUG_l( deb("(Found loop #%ld)\n", (long)i));
1123             return i;
1124         }
1125     }
1126     return i;
1127 }
1128
1129 void
1130 dounwind(I32 cxix)
1131 {
1132     dTHR;
1133     register PERL_CONTEXT *cx;
1134     SV **newsp;
1135     I32 optype;
1136
1137     while (cxstack_ix > cxix) {
1138         cx = &cxstack[cxstack_ix];
1139         DEBUG_l(PerlIO_printf(Perl_debug_log, "Unwinding block %ld, type %s\n",
1140                               (long) cxstack_ix, block_type[cx->cx_type]));
1141         /* Note: we don't need to restore the base context info till the end. */
1142         switch (cx->cx_type) {
1143         case CXt_SUBST:
1144             POPSUBST(cx);
1145             continue;  /* not break */
1146         case CXt_SUB:
1147             POPSUB(cx);
1148             break;
1149         case CXt_EVAL:
1150             POPEVAL(cx);
1151             break;
1152         case CXt_LOOP:
1153             POPLOOP(cx);
1154             break;
1155         case CXt_NULL:
1156             break;
1157         }
1158         cxstack_ix--;
1159     }
1160 }
1161
1162 OP *
1163 die_where(char *message)
1164 {
1165     dSP;
1166     if (PL_in_eval) {
1167         I32 cxix;
1168         register PERL_CONTEXT *cx;
1169         I32 gimme;
1170         SV **newsp;
1171
1172         if (message) {
1173             if (PL_in_eval & 4) {
1174                 SV **svp;
1175                 STRLEN klen = strlen(message);
1176                 
1177                 svp = hv_fetch(ERRHV, message, klen, TRUE);
1178                 if (svp) {
1179                     if (!SvIOK(*svp)) {
1180                         static char prefix[] = "\t(in cleanup) ";
1181                         SV *err = ERRSV;
1182                         sv_upgrade(*svp, SVt_IV);
1183                         (void)SvIOK_only(*svp);
1184                         if (!SvPOK(err))
1185                             sv_setpv(err,"");
1186                         SvGROW(err, SvCUR(err)+sizeof(prefix)+klen);
1187                         sv_catpvn(err, prefix, sizeof(prefix)-1);
1188                         sv_catpvn(err, message, klen);
1189                     }
1190                     sv_inc(*svp);
1191                 }
1192             }
1193             else
1194                 sv_setpv(ERRSV, message);
1195         }
1196         else
1197             message = SvPVx(ERRSV, PL_na);
1198
1199         while ((cxix = dopoptoeval(cxstack_ix)) < 0 && PL_curstackinfo->si_prev) {
1200             dounwind(-1);
1201             POPSTACK;
1202         }
1203
1204         if (cxix >= 0) {
1205             I32 optype;
1206
1207             if (cxix < cxstack_ix)
1208                 dounwind(cxix);
1209
1210             POPBLOCK(cx,PL_curpm);
1211             if (cx->cx_type != CXt_EVAL) {
1212                 PerlIO_printf(PerlIO_stderr(), "panic: die %s", message);
1213                 my_exit(1);
1214             }
1215             POPEVAL(cx);
1216
1217             if (gimme == G_SCALAR)
1218                 *++newsp = &PL_sv_undef;
1219             PL_stack_sp = newsp;
1220
1221             LEAVE;
1222
1223             if (optype == OP_REQUIRE) {
1224                 char* msg = SvPVx(ERRSV, PL_na);
1225                 DIE("%s", *msg ? msg : "Compilation failed in require");
1226             }
1227             return pop_return();
1228         }
1229     }
1230     PerlIO_printf(PerlIO_stderr(), "%s",message);
1231     PerlIO_flush(PerlIO_stderr());
1232     my_failure_exit();
1233     /* NOTREACHED */
1234     return 0;
1235 }
1236
1237 PP(pp_xor)
1238 {
1239     djSP; dPOPTOPssrl;
1240     if (SvTRUE(left) != SvTRUE(right))
1241         RETSETYES;
1242     else
1243         RETSETNO;
1244 }
1245
1246 PP(pp_andassign)
1247 {
1248     djSP;
1249     if (!SvTRUE(TOPs))
1250         RETURN;
1251     else
1252         RETURNOP(cLOGOP->op_other);
1253 }
1254
1255 PP(pp_orassign)
1256 {
1257     djSP;
1258     if (SvTRUE(TOPs))
1259         RETURN;
1260     else
1261         RETURNOP(cLOGOP->op_other);
1262 }
1263         
1264 PP(pp_caller)
1265 {
1266     djSP;
1267     register I32 cxix = dopoptosub(cxstack_ix);
1268     register PERL_CONTEXT *cx;
1269     register PERL_CONTEXT *ccstack = cxstack;
1270     PERL_SI *top_si = PL_curstackinfo;
1271     I32 dbcxix;
1272     I32 gimme;
1273     HV *hv;
1274     SV *sv;
1275     I32 count = 0;
1276
1277     if (MAXARG)
1278         count = POPi;
1279     EXTEND(SP, 6);
1280     for (;;) {
1281         /* we may be in a higher stacklevel, so dig down deeper */
1282         while (cxix < 0 && top_si->si_type != PERLSI_MAIN) {
1283             top_si = top_si->si_prev;
1284             ccstack = top_si->si_cxstack;
1285             cxix = dopoptosub_at(ccstack, top_si->si_cxix);
1286         }
1287         if (cxix < 0) {
1288             if (GIMME != G_ARRAY)
1289                 RETPUSHUNDEF;
1290             RETURN;
1291         }
1292         if (PL_DBsub && cxix >= 0 &&
1293                 ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub))
1294             count++;
1295         if (!count--)
1296             break;
1297         cxix = dopoptosub_at(ccstack, cxix - 1);
1298     }
1299
1300     cx = &ccstack[cxix];
1301     if (ccstack[cxix].cx_type == CXt_SUB) {
1302         dbcxix = dopoptosub_at(ccstack, cxix - 1);
1303         /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the
1304            field below is defined for any cx. */
1305         if (PL_DBsub && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub))
1306             cx = &ccstack[dbcxix];
1307     }
1308
1309     if (GIMME != G_ARRAY) {
1310         hv = cx->blk_oldcop->cop_stash;
1311         if (!hv)
1312             PUSHs(&PL_sv_undef);
1313         else {
1314             dTARGET;
1315             sv_setpv(TARG, HvNAME(hv));
1316             PUSHs(TARG);
1317         }
1318         RETURN;
1319     }
1320
1321     hv = cx->blk_oldcop->cop_stash;
1322     if (!hv)
1323         PUSHs(&PL_sv_undef);
1324     else
1325         PUSHs(sv_2mortal(newSVpv(HvNAME(hv), 0)));
1326     PUSHs(sv_2mortal(newSVpv(SvPVX(GvSV(cx->blk_oldcop->cop_filegv)), 0)));
1327     PUSHs(sv_2mortal(newSViv((I32)cx->blk_oldcop->cop_line)));
1328     if (!MAXARG)
1329         RETURN;
1330     if (cx->cx_type == CXt_SUB) { /* So is ccstack[dbcxix]. */
1331         sv = NEWSV(49, 0);
1332         gv_efullname3(sv, CvGV(ccstack[cxix].blk_sub.cv), Nullch);
1333         PUSHs(sv_2mortal(sv));
1334         PUSHs(sv_2mortal(newSViv((I32)cx->blk_sub.hasargs)));
1335     }
1336     else {
1337         PUSHs(sv_2mortal(newSVpv("(eval)",0)));
1338         PUSHs(sv_2mortal(newSViv(0)));
1339     }
1340     gimme = (I32)cx->blk_gimme;
1341     if (gimme == G_VOID)
1342         PUSHs(&PL_sv_undef);
1343     else
1344         PUSHs(sv_2mortal(newSViv(gimme & G_ARRAY)));
1345     if (cx->cx_type == CXt_EVAL) {
1346         if (cx->blk_eval.old_op_type == OP_ENTEREVAL) {
1347             PUSHs(cx->blk_eval.cur_text);
1348             PUSHs(&PL_sv_no);
1349         } 
1350         else if (cx->blk_eval.old_name) { /* Try blocks have old_name == 0. */
1351             /* Require, put the name. */
1352             PUSHs(sv_2mortal(newSVpv(cx->blk_eval.old_name, 0)));
1353             PUSHs(&PL_sv_yes);
1354         }
1355     }
1356     else if (cx->cx_type == CXt_SUB &&
1357             cx->blk_sub.hasargs &&
1358             PL_curcop->cop_stash == PL_debstash)
1359     {
1360         AV *ary = cx->blk_sub.argarray;
1361         int off = AvARRAY(ary) - AvALLOC(ary);
1362
1363         if (!PL_dbargs) {
1364             GV* tmpgv;
1365             PL_dbargs = GvAV(gv_AVadd(tmpgv = gv_fetchpv("DB::args", TRUE,
1366                                 SVt_PVAV)));
1367             GvMULTI_on(tmpgv);
1368             AvREAL_off(PL_dbargs);              /* XXX Should be REIFY */
1369         }
1370
1371         if (AvMAX(PL_dbargs) < AvFILLp(ary) + off)
1372             av_extend(PL_dbargs, AvFILLp(ary) + off);
1373         Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*);
1374         AvFILLp(PL_dbargs) = AvFILLp(ary) + off;
1375     }
1376     RETURN;
1377 }
1378
1379 STATIC I32
1380 sortcv(SV *a, SV *b)
1381 {
1382     dTHR;
1383     I32 oldsaveix = PL_savestack_ix;
1384     I32 oldscopeix = PL_scopestack_ix;
1385     I32 result;
1386     GvSV(PL_firstgv) = a;
1387     GvSV(PL_secondgv) = b;
1388     PL_stack_sp = PL_stack_base;
1389     PL_op = PL_sortcop;
1390     CALLRUNOPS();
1391     if (PL_stack_sp != PL_stack_base + 1)
1392         croak("Sort subroutine didn't return single value");
1393     if (!SvNIOKp(*PL_stack_sp))
1394         croak("Sort subroutine didn't return a numeric value");
1395     result = SvIV(*PL_stack_sp);
1396     while (PL_scopestack_ix > oldscopeix) {
1397         LEAVE;
1398     }
1399     leave_scope(oldsaveix);
1400     return result;
1401 }
1402
1403 PP(pp_reset)
1404 {
1405     djSP;
1406     char *tmps;
1407
1408     if (MAXARG < 1)
1409         tmps = "";
1410     else
1411         tmps = POPp;
1412     sv_reset(tmps, PL_curcop->cop_stash);
1413     PUSHs(&PL_sv_yes);
1414     RETURN;
1415 }
1416
1417 PP(pp_lineseq)
1418 {
1419     return NORMAL;
1420 }
1421
1422 PP(pp_dbstate)
1423 {
1424     PL_curcop = (COP*)PL_op;
1425     TAINT_NOT;          /* Each statement is presumed innocent */
1426     PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
1427     FREETMPS;
1428
1429     if (PL_op->op_private || SvIV(PL_DBsingle) || SvIV(PL_DBsignal) || SvIV(PL_DBtrace))
1430     {
1431         djSP;
1432         register CV *cv;
1433         register PERL_CONTEXT *cx;
1434         I32 gimme = G_ARRAY;
1435         I32 hasargs;
1436         GV *gv;
1437
1438         gv = PL_DBgv;
1439         cv = GvCV(gv);
1440         if (!cv)
1441             DIE("No DB::DB routine defined");
1442
1443         if (CvDEPTH(cv) >= 1 && !(PL_debug & (1<<30))) /* don't do recursive DB::DB call */
1444             return NORMAL;
1445
1446         ENTER;
1447         SAVETMPS;
1448
1449         SAVEI32(PL_debug);
1450         SAVESTACK_POS();
1451         PL_debug = 0;
1452         hasargs = 0;
1453         SPAGAIN;
1454
1455         push_return(PL_op->op_next);
1456         PUSHBLOCK(cx, CXt_SUB, SP);
1457         PUSHSUB(cx);
1458         CvDEPTH(cv)++;
1459         (void)SvREFCNT_inc(cv);
1460         SAVESPTR(PL_curpad);
1461         PL_curpad = AvARRAY((AV*)*av_fetch(CvPADLIST(cv),1,FALSE));
1462         RETURNOP(CvSTART(cv));
1463     }
1464     else
1465         return NORMAL;
1466 }
1467
1468 PP(pp_scope)
1469 {
1470     return NORMAL;
1471 }
1472
1473 PP(pp_enteriter)
1474 {
1475     djSP; dMARK;
1476     register PERL_CONTEXT *cx;
1477     I32 gimme = GIMME_V;
1478     SV **svp;
1479
1480     ENTER;
1481     SAVETMPS;
1482
1483 #ifdef USE_THREADS
1484     if (PL_op->op_flags & OPf_SPECIAL)
1485         svp = save_threadsv(PL_op->op_targ);    /* per-thread variable */
1486     else
1487 #endif /* USE_THREADS */
1488     if (PL_op->op_targ) {
1489         svp = &PL_curpad[PL_op->op_targ];               /* "my" variable */
1490         SAVESPTR(*svp);
1491     }
1492     else {
1493         GV *gv = (GV*)POPs;
1494         (void)save_scalar(gv);
1495         svp = &GvSV(gv);                        /* symbol table variable */
1496     }
1497
1498     ENTER;
1499
1500     PUSHBLOCK(cx, CXt_LOOP, SP);
1501     PUSHLOOP(cx, svp, MARK);
1502     if (PL_op->op_flags & OPf_STACKED) {
1503         cx->blk_loop.iterary = (AV*)SvREFCNT_inc(POPs);
1504         if (SvTYPE(cx->blk_loop.iterary) != SVt_PVAV) {
1505             dPOPss;
1506             if (SvNIOKp(sv) || !SvPOKp(sv) ||
1507                 (looks_like_number(sv) && *SvPVX(sv) != '0')) {
1508                  if (SvNV(sv) < IV_MIN ||
1509                      SvNV((SV*)cx->blk_loop.iterary) >= IV_MAX)
1510                      croak("Range iterator outside integer range");
1511                  cx->blk_loop.iterix = SvIV(sv);
1512                  cx->blk_loop.itermax = SvIV((SV*)cx->blk_loop.iterary);
1513             }
1514             else
1515                 cx->blk_loop.iterlval = newSVsv(sv);
1516         }
1517     }
1518     else {
1519         cx->blk_loop.iterary = PL_curstack;
1520         AvFILLp(PL_curstack) = SP - PL_stack_base;
1521         cx->blk_loop.iterix = MARK - PL_stack_base;
1522     }
1523
1524     RETURN;
1525 }
1526
1527 PP(pp_enterloop)
1528 {
1529     djSP;
1530     register PERL_CONTEXT *cx;
1531     I32 gimme = GIMME_V;
1532
1533     ENTER;
1534     SAVETMPS;
1535     ENTER;
1536
1537     PUSHBLOCK(cx, CXt_LOOP, SP);
1538     PUSHLOOP(cx, 0, SP);
1539
1540     RETURN;
1541 }
1542
1543 PP(pp_leaveloop)
1544 {
1545     djSP;
1546     register PERL_CONTEXT *cx;
1547     struct block_loop cxloop;
1548     I32 gimme;
1549     SV **newsp;
1550     PMOP *newpm;
1551     SV **mark;
1552
1553     POPBLOCK(cx,newpm);
1554     mark = newsp;
1555     POPLOOP1(cx);       /* Delay POPLOOP2 until stack values are safe */
1556
1557     TAINT_NOT;
1558     if (gimme == G_VOID)
1559         ; /* do nothing */
1560     else if (gimme == G_SCALAR) {
1561         if (mark < SP)
1562             *++newsp = sv_mortalcopy(*SP);
1563         else
1564             *++newsp = &PL_sv_undef;
1565     }
1566     else {
1567         while (mark < SP) {
1568             *++newsp = sv_mortalcopy(*++mark);
1569             TAINT_NOT;          /* Each item is independent */
1570         }
1571     }
1572     SP = newsp;
1573     PUTBACK;
1574
1575     POPLOOP2();         /* Stack values are safe: release loop vars ... */
1576     PL_curpm = newpm;   /* ... and pop $1 et al */
1577
1578     LEAVE;
1579     LEAVE;
1580
1581     return NORMAL;
1582 }
1583
1584 PP(pp_return)
1585 {
1586     djSP; dMARK;
1587     I32 cxix;
1588     register PERL_CONTEXT *cx;
1589     struct block_sub cxsub;
1590     bool popsub2 = FALSE;
1591     I32 gimme;
1592     SV **newsp;
1593     PMOP *newpm;
1594     I32 optype = 0;
1595
1596     if (PL_curstackinfo->si_type == PERLSI_SORT) {
1597         if (cxstack_ix == PL_sortcxix || dopoptosub(cxstack_ix) <= PL_sortcxix) {
1598             if (cxstack_ix > PL_sortcxix)
1599                 dounwind(PL_sortcxix);
1600             AvARRAY(PL_curstack)[1] = *SP;
1601             PL_stack_sp = PL_stack_base + 1;
1602             return 0;
1603         }
1604     }
1605
1606     cxix = dopoptosub(cxstack_ix);
1607     if (cxix < 0)
1608         DIE("Can't return outside a subroutine");
1609     if (cxix < cxstack_ix)
1610         dounwind(cxix);
1611
1612     POPBLOCK(cx,newpm);
1613     switch (cx->cx_type) {
1614     case CXt_SUB:
1615         POPSUB1(cx);    /* Delay POPSUB2 until stack values are safe */
1616         popsub2 = TRUE;
1617         break;
1618     case CXt_EVAL:
1619         POPEVAL(cx);
1620         if (optype == OP_REQUIRE &&
1621             (MARK == SP || (gimme == G_SCALAR && !SvTRUE(*SP))) )
1622         {
1623             /* Unassume the success we assumed earlier. */
1624             char *name = cx->blk_eval.old_name;
1625             (void)hv_delete(GvHVn(PL_incgv), name, strlen(name), G_DISCARD);
1626             DIE("%s did not return a true value", name);
1627         }
1628         break;
1629     default:
1630         DIE("panic: return");
1631     }
1632
1633     TAINT_NOT;
1634     if (gimme == G_SCALAR) {
1635         if (MARK < SP) {
1636             if (popsub2) {
1637                 if (cxsub.cv && CvDEPTH(cxsub.cv) > 1) {
1638                     if (SvTEMP(TOPs)) {
1639                         *++newsp = SvREFCNT_inc(*SP);
1640                         FREETMPS;
1641                         sv_2mortal(*newsp);
1642                     } else {
1643                         FREETMPS;
1644                         *++newsp = sv_mortalcopy(*SP);
1645                     }
1646                 } else
1647                     *++newsp = (SvTEMP(*SP)) ? *SP : sv_mortalcopy(*SP);
1648             } else
1649                 *++newsp = sv_mortalcopy(*SP);
1650         } else
1651             *++newsp = &PL_sv_undef;
1652     }
1653     else if (gimme == G_ARRAY) {
1654         while (++MARK <= SP) {
1655             *++newsp = (popsub2 && SvTEMP(*MARK))
1656                         ? *MARK : sv_mortalcopy(*MARK);
1657             TAINT_NOT;          /* Each item is independent */
1658         }
1659     }
1660     PL_stack_sp = newsp;
1661
1662     /* Stack values are safe: */
1663     if (popsub2) {
1664         POPSUB2();      /* release CV and @_ ... */
1665     }
1666     PL_curpm = newpm;   /* ... and pop $1 et al */
1667
1668     LEAVE;
1669     return pop_return();
1670 }
1671
1672 PP(pp_last)
1673 {
1674     djSP;
1675     I32 cxix;
1676     register PERL_CONTEXT *cx;
1677     struct block_loop cxloop;
1678     struct block_sub cxsub;
1679     I32 pop2 = 0;
1680     I32 gimme;
1681     I32 optype;
1682     OP *nextop;
1683     SV **newsp;
1684     PMOP *newpm;
1685     SV **mark = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
1686
1687     if (PL_op->op_flags & OPf_SPECIAL) {
1688         cxix = dopoptoloop(cxstack_ix);
1689         if (cxix < 0)
1690             DIE("Can't \"last\" outside a block");
1691     }
1692     else {
1693         cxix = dopoptolabel(cPVOP->op_pv);
1694         if (cxix < 0)
1695             DIE("Label not found for \"last %s\"", cPVOP->op_pv);
1696     }
1697     if (cxix < cxstack_ix)
1698         dounwind(cxix);
1699
1700     POPBLOCK(cx,newpm);
1701     switch (cx->cx_type) {
1702     case CXt_LOOP:
1703         POPLOOP1(cx);   /* Delay POPLOOP2 until stack values are safe */
1704         pop2 = CXt_LOOP;
1705         nextop = cxloop.last_op->op_next;
1706         break;
1707     case CXt_SUB:
1708         POPSUB1(cx);    /* Delay POPSUB2 until stack values are safe */
1709         pop2 = CXt_SUB;
1710         nextop = pop_return();
1711         break;
1712     case CXt_EVAL:
1713         POPEVAL(cx);
1714         nextop = pop_return();
1715         break;
1716     default:
1717         DIE("panic: last");
1718     }
1719
1720     TAINT_NOT;
1721     if (gimme == G_SCALAR) {
1722         if (MARK < SP)
1723             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*SP))
1724                         ? *SP : sv_mortalcopy(*SP);
1725         else
1726             *++newsp = &PL_sv_undef;
1727     }
1728     else if (gimme == G_ARRAY) {
1729         while (++MARK <= SP) {
1730             *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*MARK))
1731                         ? *MARK : sv_mortalcopy(*MARK);
1732             TAINT_NOT;          /* Each item is independent */
1733         }
1734     }
1735     SP = newsp;
1736     PUTBACK;
1737
1738     /* Stack values are safe: */
1739     switch (pop2) {
1740     case CXt_LOOP:
1741         POPLOOP2();     /* release loop vars ... */
1742         LEAVE;
1743         break;
1744     case CXt_SUB:
1745         POPSUB2();      /* release CV and @_ ... */
1746         break;
1747     }
1748     PL_curpm = newpm;   /* ... and pop $1 et al */
1749
1750     LEAVE;
1751     return nextop;
1752 }
1753
1754 PP(pp_next)
1755 {
1756     I32 cxix;
1757     register PERL_CONTEXT *cx;
1758     I32 oldsave;
1759
1760     if (PL_op->op_flags & OPf_SPECIAL) {
1761         cxix = dopoptoloop(cxstack_ix);
1762         if (cxix < 0)
1763             DIE("Can't \"next\" outside a block");
1764     }
1765     else {
1766         cxix = dopoptolabel(cPVOP->op_pv);
1767         if (cxix < 0)
1768             DIE("Label not found for \"next %s\"", cPVOP->op_pv);
1769     }
1770     if (cxix < cxstack_ix)
1771         dounwind(cxix);
1772
1773     TOPBLOCK(cx);
1774     oldsave = PL_scopestack[PL_scopestack_ix - 1];
1775     LEAVE_SCOPE(oldsave);
1776     return cx->blk_loop.next_op;
1777 }
1778
1779 PP(pp_redo)
1780 {
1781     I32 cxix;
1782     register PERL_CONTEXT *cx;
1783     I32 oldsave;
1784
1785     if (PL_op->op_flags & OPf_SPECIAL) {
1786         cxix = dopoptoloop(cxstack_ix);
1787         if (cxix < 0)
1788             DIE("Can't \"redo\" outside a block");
1789     }
1790     else {
1791         cxix = dopoptolabel(cPVOP->op_pv);
1792         if (cxix < 0)
1793             DIE("Label not found for \"redo %s\"", cPVOP->op_pv);
1794     }
1795     if (cxix < cxstack_ix)
1796         dounwind(cxix);
1797
1798     TOPBLOCK(cx);
1799     oldsave = PL_scopestack[PL_scopestack_ix - 1];
1800     LEAVE_SCOPE(oldsave);
1801     return cx->blk_loop.redo_op;
1802 }
1803
1804 STATIC OP *
1805 dofindlabel(OP *o, char *label, OP **opstack, OP **oplimit)
1806 {
1807     OP *kid;
1808     OP **ops = opstack;
1809     static char too_deep[] = "Target of goto is too deeply nested";
1810
1811     if (ops >= oplimit)
1812         croak(too_deep);
1813     if (o->op_type == OP_LEAVE ||
1814         o->op_type == OP_SCOPE ||
1815         o->op_type == OP_LEAVELOOP ||
1816         o->op_type == OP_LEAVETRY)
1817     {
1818         *ops++ = cUNOPo->op_first;
1819         if (ops >= oplimit)
1820             croak(too_deep);
1821     }
1822     *ops = 0;
1823     if (o->op_flags & OPf_KIDS) {
1824         dTHR;
1825         /* First try all the kids at this level, since that's likeliest. */
1826         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1827             if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
1828                     kCOP->cop_label && strEQ(kCOP->cop_label, label))
1829                 return kid;
1830         }
1831         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
1832             if (kid == PL_lastgotoprobe)
1833                 continue;
1834             if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
1835                 (ops == opstack ||
1836                  (ops[-1]->op_type != OP_NEXTSTATE &&
1837                   ops[-1]->op_type != OP_DBSTATE)))
1838                 *ops++ = kid;
1839             if (o = dofindlabel(kid, label, ops, oplimit))
1840                 return o;
1841         }
1842     }
1843     *ops = 0;
1844     return 0;
1845 }
1846
1847 PP(pp_dump)
1848 {
1849     return pp_goto(ARGS);
1850     /*NOTREACHED*/
1851 }
1852
1853 PP(pp_goto)
1854 {
1855     djSP;
1856     OP *retop = 0;
1857     I32 ix;
1858     register PERL_CONTEXT *cx;
1859 #define GOTO_DEPTH 64
1860     OP *enterops[GOTO_DEPTH];
1861     char *label;
1862     int do_dump = (PL_op->op_type == OP_DUMP);
1863
1864     label = 0;
1865     if (PL_op->op_flags & OPf_STACKED) {
1866         SV *sv = POPs;
1867
1868         /* This egregious kludge implements goto &subroutine */
1869         if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
1870             I32 cxix;
1871             register PERL_CONTEXT *cx;
1872             CV* cv = (CV*)SvRV(sv);
1873             SV** mark;
1874             I32 items = 0;
1875             I32 oldsave;
1876
1877             if (!CvROOT(cv) && !CvXSUB(cv)) {
1878                 if (CvGV(cv)) {
1879                     SV *tmpstr = sv_newmortal();
1880                     gv_efullname3(tmpstr, CvGV(cv), Nullch);
1881                     DIE("Goto undefined subroutine &%s",SvPVX(tmpstr));
1882                 }
1883                 DIE("Goto undefined subroutine");
1884             }
1885
1886             /* First do some returnish stuff. */
1887             cxix = dopoptosub(cxstack_ix);
1888             if (cxix < 0)
1889                 DIE("Can't goto subroutine outside a subroutine");
1890             if (cxix < cxstack_ix)
1891                 dounwind(cxix);
1892             TOPBLOCK(cx);
1893             if (cx->cx_type == CXt_EVAL && cx->blk_eval.old_op_type == OP_ENTEREVAL) 
1894                 DIE("Can't goto subroutine from an eval-string");
1895             mark = PL_stack_sp;
1896             if (cx->cx_type == CXt_SUB &&
1897                 cx->blk_sub.hasargs) {   /* put @_ back onto stack */
1898                 AV* av = cx->blk_sub.argarray;
1899                 
1900                 items = AvFILLp(av) + 1;
1901                 PL_stack_sp++;
1902                 EXTEND(PL_stack_sp, items); /* @_ could have been extended. */
1903                 Copy(AvARRAY(av), PL_stack_sp, items, SV*);
1904                 PL_stack_sp += items;
1905 #ifndef USE_THREADS
1906                 SvREFCNT_dec(GvAV(PL_defgv));
1907                 GvAV(PL_defgv) = cx->blk_sub.savearray;
1908 #endif /* USE_THREADS */
1909                 AvREAL_off(av);
1910                 av_clear(av);
1911             }
1912             else if (CvXSUB(cv)) {      /* put GvAV(defgv) back onto stack */
1913                 AV* av;
1914                 int i;
1915 #ifdef USE_THREADS
1916                 av = (AV*)PL_curpad[0];
1917 #else
1918                 av = GvAV(PL_defgv);
1919 #endif
1920                 items = AvFILLp(av) + 1;
1921                 PL_stack_sp++;
1922                 EXTEND(PL_stack_sp, items); /* @_ could have been extended. */
1923                 Copy(AvARRAY(av), PL_stack_sp, items, SV*);
1924                 PL_stack_sp += items;
1925             }
1926             if (cx->cx_type == CXt_SUB &&
1927                 !(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
1928                 SvREFCNT_dec(cx->blk_sub.cv);
1929             oldsave = PL_scopestack[PL_scopestack_ix - 1];
1930             LEAVE_SCOPE(oldsave);
1931
1932             /* Now do some callish stuff. */
1933             SAVETMPS;
1934             if (CvXSUB(cv)) {
1935                 if (CvOLDSTYLE(cv)) {
1936                     I32 (*fp3)_((int,int,int));
1937                     while (SP > mark) {
1938                         SP[1] = SP[0];
1939                         SP--;
1940                     }
1941                     fp3 = (I32(*)_((int,int,int)))CvXSUB(cv);
1942                     items = (*fp3)(CvXSUBANY(cv).any_i32,
1943                                    mark - PL_stack_base + 1,
1944                                    items);
1945                     SP = PL_stack_base + items;
1946                 }
1947                 else {
1948                     SV **newsp;
1949                     I32 gimme;
1950
1951                     PL_stack_sp--;              /* There is no cv arg. */
1952                     /* Push a mark for the start of arglist */
1953                     PUSHMARK(mark); 
1954                     (void)(*CvXSUB(cv))(cv _PERL_OBJECT_THIS);
1955                     /* Pop the current context like a decent sub should */
1956                     POPBLOCK(cx, PL_curpm);
1957                     /* Do _not_ use PUTBACK, keep the XSUB's return stack! */
1958                 }
1959                 LEAVE;
1960                 return pop_return();
1961             }
1962             else {
1963                 AV* padlist = CvPADLIST(cv);
1964                 SV** svp = AvARRAY(padlist);
1965                 if (cx->cx_type == CXt_EVAL) {
1966                     PL_in_eval = cx->blk_eval.old_in_eval;
1967                     PL_eval_root = cx->blk_eval.old_eval_root;
1968                     cx->cx_type = CXt_SUB;
1969                     cx->blk_sub.hasargs = 0;
1970                 }
1971                 cx->blk_sub.cv = cv;
1972                 cx->blk_sub.olddepth = CvDEPTH(cv);
1973                 CvDEPTH(cv)++;
1974                 if (CvDEPTH(cv) < 2)
1975                     (void)SvREFCNT_inc(cv);
1976                 else {  /* save temporaries on recursion? */
1977                     if (CvDEPTH(cv) == 100 && ckWARN(WARN_RECURSION))
1978                         sub_crush_depth(cv);
1979                     if (CvDEPTH(cv) > AvFILLp(padlist)) {
1980                         AV *newpad = newAV();
1981                         SV **oldpad = AvARRAY(svp[CvDEPTH(cv)-1]);
1982                         I32 ix = AvFILLp((AV*)svp[1]);
1983                         svp = AvARRAY(svp[0]);
1984                         for ( ;ix > 0; ix--) {
1985                             if (svp[ix] != &PL_sv_undef) {
1986                                 char *name = SvPVX(svp[ix]);
1987                                 if ((SvFLAGS(svp[ix]) & SVf_FAKE)
1988                                     || *name == '&')
1989                                 {
1990                                     /* outer lexical or anon code */
1991                                     av_store(newpad, ix,
1992                                         SvREFCNT_inc(oldpad[ix]) );
1993                                 }
1994                                 else {          /* our own lexical */
1995                                     if (*name == '@')
1996                                         av_store(newpad, ix, sv = (SV*)newAV());
1997                                     else if (*name == '%')
1998                                         av_store(newpad, ix, sv = (SV*)newHV());
1999                                     else
2000                                         av_store(newpad, ix, sv = NEWSV(0,0));
2001                                     SvPADMY_on(sv);
2002                                 }
2003                             }
2004                             else {
2005                                 av_store(newpad, ix, sv = NEWSV(0,0));
2006                                 SvPADTMP_on(sv);
2007                             }
2008                         }
2009                         if (cx->blk_sub.hasargs) {
2010                             AV* av = newAV();
2011                             av_extend(av, 0);
2012                             av_store(newpad, 0, (SV*)av);
2013                             AvFLAGS(av) = AVf_REIFY;
2014                         }
2015                         av_store(padlist, CvDEPTH(cv), (SV*)newpad);
2016                         AvFILLp(padlist) = CvDEPTH(cv);
2017                         svp = AvARRAY(padlist);
2018                     }
2019                 }
2020 #ifdef USE_THREADS
2021                 if (!cx->blk_sub.hasargs) {
2022                     AV* av = (AV*)PL_curpad[0];
2023                     
2024                     items = AvFILLp(av) + 1;
2025                     if (items) {
2026                         /* Mark is at the end of the stack. */
2027                         EXTEND(SP, items);
2028                         Copy(AvARRAY(av), SP + 1, items, SV*);
2029                         SP += items;
2030                         PUTBACK ;                   
2031                     }
2032                 }
2033 #endif /* USE_THREADS */                
2034                 SAVESPTR(PL_curpad);
2035                 PL_curpad = AvARRAY((AV*)svp[CvDEPTH(cv)]);
2036 #ifndef USE_THREADS
2037                 if (cx->blk_sub.hasargs)
2038 #endif /* USE_THREADS */
2039                 {
2040                     AV* av = (AV*)PL_curpad[0];
2041                     SV** ary;
2042
2043 #ifndef USE_THREADS
2044                     cx->blk_sub.savearray = GvAV(PL_defgv);
2045                     GvAV(PL_defgv) = (AV*)SvREFCNT_inc(av);
2046 #endif /* USE_THREADS */
2047                     cx->blk_sub.argarray = av;
2048                     ++mark;
2049
2050                     if (items >= AvMAX(av) + 1) {
2051                         ary = AvALLOC(av);
2052                         if (AvARRAY(av) != ary) {
2053                             AvMAX(av) += AvARRAY(av) - AvALLOC(av);
2054                             SvPVX(av) = (char*)ary;
2055                         }
2056                         if (items >= AvMAX(av) + 1) {
2057                             AvMAX(av) = items - 1;
2058                             Renew(ary,items+1,SV*);
2059                             AvALLOC(av) = ary;
2060                             SvPVX(av) = (char*)ary;
2061                         }
2062                     }
2063                     Copy(mark,AvARRAY(av),items,SV*);
2064                     AvFILLp(av) = items - 1;
2065                     
2066                     while (items--) {
2067                         if (*mark)
2068                             SvTEMP_off(*mark);
2069                         mark++;
2070                     }
2071                 }
2072                 if (PERLDB_SUB) {       /* Checking curstash breaks DProf. */
2073                     /*
2074                      * We do not care about using sv to call CV;
2075                      * it's for informational purposes only.
2076                      */
2077                     SV *sv = GvSV(PL_DBsub);
2078                     CV *gotocv;
2079                     
2080                     if (PERLDB_SUB_NN) {
2081                         SvIVX(sv) = (IV)cv; /* Already upgraded, saved */
2082                     } else {
2083                         save_item(sv);
2084                         gv_efullname3(sv, CvGV(cv), Nullch);
2085                     }
2086                     if (  PERLDB_GOTO
2087                           && (gotocv = perl_get_cv("DB::goto", FALSE)) ) {
2088                         PUSHMARK( PL_stack_sp );
2089                         perl_call_sv((SV*)gotocv, G_SCALAR | G_NODEBUG);
2090                         PL_stack_sp--;
2091                     }
2092                 }
2093                 RETURNOP(CvSTART(cv));
2094             }
2095         }
2096         else
2097             label = SvPV(sv,PL_na);
2098     }
2099     else if (PL_op->op_flags & OPf_SPECIAL) {
2100         if (! do_dump)
2101             DIE("goto must have label");
2102     }
2103     else
2104         label = cPVOP->op_pv;
2105
2106     if (label && *label) {
2107         OP *gotoprobe = 0;
2108
2109         /* find label */
2110
2111         PL_lastgotoprobe = 0;
2112         *enterops = 0;
2113         for (ix = cxstack_ix; ix >= 0; ix--) {
2114             cx = &cxstack[ix];
2115             switch (cx->cx_type) {
2116             case CXt_EVAL:
2117                 gotoprobe = PL_eval_root; /* XXX not good for nested eval */
2118                 break;
2119             case CXt_LOOP:
2120                 gotoprobe = cx->blk_oldcop->op_sibling;
2121                 break;
2122             case CXt_SUBST:
2123                 continue;
2124             case CXt_BLOCK:
2125                 if (ix)
2126                     gotoprobe = cx->blk_oldcop->op_sibling;
2127                 else
2128                     gotoprobe = PL_main_root;
2129                 break;
2130             case CXt_SUB:
2131                 if (CvDEPTH(cx->blk_sub.cv)) {
2132                     gotoprobe = CvROOT(cx->blk_sub.cv);
2133                     break;
2134                 }
2135                 /* FALL THROUGH */
2136             case CXt_NULL:
2137                 DIE("Can't \"goto\" outside a block");
2138             default:
2139                 if (ix)
2140                     DIE("panic: goto");
2141                 gotoprobe = PL_main_root;
2142                 break;
2143             }
2144             retop = dofindlabel(gotoprobe, label,
2145                                 enterops, enterops + GOTO_DEPTH);
2146             if (retop)
2147                 break;
2148             PL_lastgotoprobe = gotoprobe;
2149         }
2150         if (!retop)
2151             DIE("Can't find label %s", label);
2152
2153         /* pop unwanted frames */
2154
2155         if (ix < cxstack_ix) {
2156             I32 oldsave;
2157
2158             if (ix < 0)
2159                 ix = 0;
2160             dounwind(ix);
2161             TOPBLOCK(cx);
2162             oldsave = PL_scopestack[PL_scopestack_ix];
2163             LEAVE_SCOPE(oldsave);
2164         }
2165
2166         /* push wanted frames */
2167
2168         if (*enterops && enterops[1]) {
2169             OP *oldop = PL_op;
2170             for (ix = 1; enterops[ix]; ix++) {
2171                 PL_op = enterops[ix];
2172                 /* Eventually we may want to stack the needed arguments
2173                  * for each op.  For now, we punt on the hard ones. */
2174                 if (PL_op->op_type == OP_ENTERITER)
2175                     DIE("Can't \"goto\" into the middle of a foreach loop",
2176                         label);
2177                 (CALLOP->op_ppaddr)(ARGS);
2178             }
2179             PL_op = oldop;
2180         }
2181     }
2182
2183     if (do_dump) {
2184 #ifdef VMS
2185         if (!retop) retop = PL_main_start;
2186 #endif
2187         PL_restartop = retop;
2188         PL_do_undump = TRUE;
2189
2190         my_unexec();
2191
2192         PL_restartop = 0;               /* hmm, must be GNU unexec().. */
2193         PL_do_undump = FALSE;
2194     }
2195
2196     if (PL_top_env->je_prev) {
2197         PL_restartop = retop;
2198         JMPENV_JUMP(3);
2199     }
2200
2201     RETURNOP(retop);
2202 }
2203
2204 PP(pp_exit)
2205 {
2206     djSP;
2207     I32 anum;
2208
2209     if (MAXARG < 1)
2210         anum = 0;
2211     else {
2212         anum = SvIVx(POPs);
2213 #ifdef VMSISH_EXIT
2214         if (anum == 1 && VMSISH_EXIT)
2215             anum = 0;
2216 #endif
2217     }
2218     my_exit(anum);
2219     PUSHs(&PL_sv_undef);
2220     RETURN;
2221 }
2222
2223 #ifdef NOTYET
2224 PP(pp_nswitch)
2225 {
2226     djSP;
2227     double value = SvNVx(GvSV(cCOP->cop_gv));
2228     register I32 match = I_32(value);
2229
2230     if (value < 0.0) {
2231         if (((double)match) > value)
2232             --match;            /* was fractional--truncate other way */
2233     }
2234     match -= cCOP->uop.scop.scop_offset;
2235     if (match < 0)
2236         match = 0;
2237     else if (match > cCOP->uop.scop.scop_max)
2238         match = cCOP->uop.scop.scop_max;
2239     PL_op = cCOP->uop.scop.scop_next[match];
2240     RETURNOP(PL_op);
2241 }
2242
2243 PP(pp_cswitch)
2244 {
2245     djSP;
2246     register I32 match;
2247
2248     if (PL_multiline)
2249         PL_op = PL_op->op_next;                 /* can't assume anything */
2250     else {
2251         match = *(SvPVx(GvSV(cCOP->cop_gv), PL_na)) & 255;
2252         match -= cCOP->uop.scop.scop_offset;
2253         if (match < 0)
2254             match = 0;
2255         else if (match > cCOP->uop.scop.scop_max)
2256             match = cCOP->uop.scop.scop_max;
2257         PL_op = cCOP->uop.scop.scop_next[match];
2258     }
2259     RETURNOP(PL_op);
2260 }
2261 #endif
2262
2263 /* Eval. */
2264
2265 STATIC void
2266 save_lines(AV *array, SV *sv)
2267 {
2268     register char *s = SvPVX(sv);
2269     register char *send = SvPVX(sv) + SvCUR(sv);
2270     register char *t;
2271     register I32 line = 1;
2272
2273     while (s && s < send) {
2274         SV *tmpstr = NEWSV(85,0);
2275
2276         sv_upgrade(tmpstr, SVt_PVMG);
2277         t = strchr(s, '\n');
2278         if (t)
2279             t++;
2280         else
2281             t = send;
2282
2283         sv_setpvn(tmpstr, s, t - s);
2284         av_store(array, line++, tmpstr);
2285         s = t;
2286     }
2287 }
2288
2289 STATIC OP *
2290 docatch(OP *o)
2291 {
2292     dTHR;
2293     int ret;
2294     OP *oldop = PL_op;
2295     dJMPENV;
2296
2297     PL_op = o;
2298 #ifdef DEBUGGING
2299     assert(CATCH_GET == TRUE);
2300     DEBUG_l(deb("Setting up local jumplevel %p, was %p\n", &cur_env, PL_top_env));
2301 #endif
2302     JMPENV_PUSH(ret);
2303     switch (ret) {
2304     default:                            /* topmost level handles it */
2305         JMPENV_POP;
2306         PL_op = oldop;
2307         JMPENV_JUMP(ret);
2308         /* NOTREACHED */
2309     case 3:
2310         if (!PL_restartop) {
2311             PerlIO_printf(PerlIO_stderr(), "panic: restartop\n");
2312             break;
2313         }
2314         PL_op = PL_restartop;
2315         PL_restartop = 0;
2316         /* FALL THROUGH */
2317     case 0:
2318         CALLRUNOPS();
2319         break;
2320     }
2321     JMPENV_POP;
2322     PL_op = oldop;
2323     return Nullop;
2324 }
2325
2326 OP *
2327 sv_compile_2op(SV *sv, OP** startop, char *code, AV** avp)
2328 /* sv Text to convert to OP tree. */
2329 /* startop op_free() this to undo. */
2330 /* code Short string id of the caller. */
2331 {
2332     dSP;                                /* Make POPBLOCK work. */
2333     PERL_CONTEXT *cx;
2334     SV **newsp;
2335     I32 gimme = 0;   /* SUSPECT - INITIALZE TO WHAT?  NI-S */
2336     I32 optype;
2337     OP dummy;
2338     OP *oop = PL_op, *rop;
2339     char tmpbuf[TYPE_DIGITS(long) + 12 + 10];
2340     char *safestr;
2341
2342     ENTER;
2343     lex_start(sv);
2344     SAVETMPS;
2345     /* switch to eval mode */
2346
2347     if (PL_curcop == &PL_compiling) {
2348         SAVESPTR(PL_compiling.cop_stash);
2349         PL_compiling.cop_stash = PL_curstash;
2350     }
2351     SAVESPTR(PL_compiling.cop_filegv);
2352     SAVEI16(PL_compiling.cop_line);
2353     sprintf(tmpbuf, "_<(%.10s_eval %lu)", code, (unsigned long)++PL_evalseq);
2354     PL_compiling.cop_filegv = gv_fetchfile(tmpbuf+2);
2355     PL_compiling.cop_line = 1;
2356     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2357        deleting the eval's FILEGV from the stash before gv_check() runs
2358        (i.e. before run-time proper). To work around the coredump that
2359        ensues, we always turn GvMULTI_on for any globals that were
2360        introduced within evals. See force_ident(). GSAR 96-10-12 */
2361     safestr = savepv(tmpbuf);
2362     SAVEDELETE(PL_defstash, safestr, strlen(safestr));
2363     SAVEHINTS();
2364 #ifdef OP_IN_REGISTER
2365     PL_opsave = op;
2366 #else
2367     SAVEPPTR(PL_op);
2368 #endif
2369     PL_hints = 0;
2370
2371     PL_op = &dummy;
2372     PL_op->op_type = 0;                 /* Avoid uninit warning. */
2373     PL_op->op_flags = 0;                        /* Avoid uninit warning. */
2374     PUSHBLOCK(cx, CXt_EVAL, SP);
2375     PUSHEVAL(cx, 0, PL_compiling.cop_filegv);
2376     rop = doeval(G_SCALAR, startop);
2377     POPBLOCK(cx,PL_curpm);
2378     POPEVAL(cx);
2379
2380     (*startop)->op_type = OP_NULL;
2381     (*startop)->op_ppaddr = ppaddr[OP_NULL];
2382     lex_end();
2383     *avp = (AV*)SvREFCNT_inc(PL_comppad);
2384     LEAVE;
2385     if (curcop = &PL_compiling)
2386         PL_compiling.op_private = PL_hints;
2387 #ifdef OP_IN_REGISTER
2388     op = PL_opsave;
2389 #endif
2390     return rop;
2391 }
2392
2393 /* With USE_THREADS, eval_owner must be held on entry to doeval */
2394 STATIC OP *
2395 doeval(int gimme, OP** startop)
2396 {
2397     dSP;
2398     OP *saveop = PL_op;
2399     HV *newstash;
2400     CV *caller;
2401     AV* comppadlist;
2402     I32 i;
2403
2404     PL_in_eval = 1;
2405
2406     PUSHMARK(SP);
2407
2408     /* set up a scratch pad */
2409
2410     SAVEI32(PL_padix);
2411     SAVESPTR(PL_curpad);
2412     SAVESPTR(PL_comppad);
2413     SAVESPTR(PL_comppad_name);
2414     SAVEI32(PL_comppad_name_fill);
2415     SAVEI32(PL_min_intro_pending);
2416     SAVEI32(PL_max_intro_pending);
2417
2418     caller = PL_compcv;
2419     for (i = cxstack_ix; i >= 0; i--) {
2420         PERL_CONTEXT *cx = &cxstack[i];
2421         if (cx->cx_type == CXt_EVAL)
2422             break;
2423         else if (cx->cx_type == CXt_SUB) {
2424             caller = cx->blk_sub.cv;
2425             break;
2426         }
2427     }
2428
2429     SAVESPTR(PL_compcv);
2430     PL_compcv = (CV*)NEWSV(1104,0);
2431     sv_upgrade((SV *)PL_compcv, SVt_PVCV);
2432     CvUNIQUE_on(PL_compcv);
2433 #ifdef USE_THREADS
2434     CvOWNER(PL_compcv) = 0;
2435     New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
2436     MUTEX_INIT(CvMUTEXP(PL_compcv));
2437 #endif /* USE_THREADS */
2438
2439     PL_comppad = newAV();
2440     av_push(PL_comppad, Nullsv);
2441     PL_curpad = AvARRAY(PL_comppad);
2442     PL_comppad_name = newAV();
2443     PL_comppad_name_fill = 0;
2444     PL_min_intro_pending = 0;
2445     PL_padix = 0;
2446 #ifdef USE_THREADS
2447     av_store(PL_comppad_name, 0, newSVpv("@_", 2));
2448     PL_curpad[0] = (SV*)newAV();
2449     SvPADMY_on(PL_curpad[0]);   /* XXX Needed? */
2450 #endif /* USE_THREADS */
2451
2452     comppadlist = newAV();
2453     AvREAL_off(comppadlist);
2454     av_store(comppadlist, 0, (SV*)PL_comppad_name);
2455     av_store(comppadlist, 1, (SV*)PL_comppad);
2456     CvPADLIST(PL_compcv) = comppadlist;
2457
2458     if (!saveop || saveop->op_type != OP_REQUIRE)
2459         CvOUTSIDE(PL_compcv) = (CV*)SvREFCNT_inc(caller);
2460
2461     SAVEFREESV(PL_compcv);
2462
2463     /* make sure we compile in the right package */
2464
2465     newstash = PL_curcop->cop_stash;
2466     if (PL_curstash != newstash) {
2467         SAVESPTR(PL_curstash);
2468         PL_curstash = newstash;
2469     }
2470     SAVESPTR(PL_beginav);
2471     PL_beginav = newAV();
2472     SAVEFREESV(PL_beginav);
2473
2474     /* try to compile it */
2475
2476     PL_eval_root = Nullop;
2477     PL_error_count = 0;
2478     PL_curcop = &PL_compiling;
2479     PL_curcop->cop_arybase = 0;
2480     SvREFCNT_dec(PL_rs);
2481     PL_rs = newSVpv("\n", 1);
2482     if (saveop && saveop->op_flags & OPf_SPECIAL)
2483         PL_in_eval |= 4;
2484     else
2485         sv_setpv(ERRSV,"");
2486     if (yyparse() || PL_error_count || !PL_eval_root) {
2487         SV **newsp;
2488         I32 gimme;
2489         PERL_CONTEXT *cx;
2490         I32 optype = 0;                 /* Might be reset by POPEVAL. */
2491
2492         PL_op = saveop;
2493         if (PL_eval_root) {
2494             op_free(PL_eval_root);
2495             PL_eval_root = Nullop;
2496         }
2497         SP = PL_stack_base + POPMARK;           /* pop original mark */
2498         if (!startop) {
2499             POPBLOCK(cx,PL_curpm);
2500             POPEVAL(cx);
2501             pop_return();
2502         }
2503         lex_end();
2504         LEAVE;
2505         if (optype == OP_REQUIRE) {
2506             char* msg = SvPVx(ERRSV, PL_na);
2507             DIE("%s", *msg ? msg : "Compilation failed in require");
2508         } else if (startop) {
2509             char* msg = SvPVx(ERRSV, PL_na);
2510
2511             POPBLOCK(cx,PL_curpm);
2512             POPEVAL(cx);
2513             croak("%sCompilation failed in regexp", (*msg ? msg : "Unknown error\n"));
2514         }
2515         SvREFCNT_dec(PL_rs);
2516         PL_rs = SvREFCNT_inc(PL_nrs);
2517 #ifdef USE_THREADS
2518         MUTEX_LOCK(&PL_eval_mutex);
2519         PL_eval_owner = 0;
2520         COND_SIGNAL(&PL_eval_cond);
2521         MUTEX_UNLOCK(&PL_eval_mutex);
2522 #endif /* USE_THREADS */
2523         RETPUSHUNDEF;
2524     }
2525     SvREFCNT_dec(PL_rs);
2526     PL_rs = SvREFCNT_inc(PL_nrs);
2527     PL_compiling.cop_line = 0;
2528     if (startop) {
2529         *startop = PL_eval_root;
2530         SvREFCNT_dec(CvOUTSIDE(PL_compcv));
2531         CvOUTSIDE(PL_compcv) = Nullcv;
2532     } else
2533         SAVEFREEOP(PL_eval_root);
2534     if (gimme & G_VOID)
2535         scalarvoid(PL_eval_root);
2536     else if (gimme & G_ARRAY)
2537         list(PL_eval_root);
2538     else
2539         scalar(PL_eval_root);
2540
2541     DEBUG_x(dump_eval());
2542
2543     /* Register with debugger: */
2544     if (PERLDB_INTER && saveop->op_type == OP_REQUIRE) {
2545         CV *cv = perl_get_cv("DB::postponed", FALSE);
2546         if (cv) {
2547             dSP;
2548             PUSHMARK(SP);
2549             XPUSHs((SV*)PL_compiling.cop_filegv);
2550             PUTBACK;
2551             perl_call_sv((SV*)cv, G_DISCARD);
2552         }
2553     }
2554
2555     /* compiled okay, so do it */
2556
2557     CvDEPTH(PL_compcv) = 1;
2558     SP = PL_stack_base + POPMARK;               /* pop original mark */
2559     PL_op = saveop;                     /* The caller may need it. */
2560 #ifdef USE_THREADS
2561     MUTEX_LOCK(&PL_eval_mutex);
2562     PL_eval_owner = 0;
2563     COND_SIGNAL(&PL_eval_cond);
2564     MUTEX_UNLOCK(&PL_eval_mutex);
2565 #endif /* USE_THREADS */
2566
2567     RETURNOP(PL_eval_start);
2568 }
2569
2570 PP(pp_require)
2571 {
2572     djSP;
2573     register PERL_CONTEXT *cx;
2574     SV *sv;
2575     char *name;
2576     STRLEN len;
2577     char *tryname;
2578     SV *namesv = Nullsv;
2579     SV** svp;
2580     I32 gimme = G_SCALAR;
2581     PerlIO *tryrsfp = 0;
2582
2583     sv = POPs;
2584     if (SvNIOKp(sv) && !SvPOKp(sv)) {
2585         SET_NUMERIC_STANDARD();
2586         if (atof(PL_patchlevel) + 0.00000999 < SvNV(sv))
2587             DIE("Perl %s required--this is only version %s, stopped",
2588                 SvPV(sv,PL_na),PL_patchlevel);
2589         RETPUSHYES;
2590     }
2591     name = SvPV(sv, len);
2592     if (!(name && len > 0 && *name))
2593         DIE("Null filename used");
2594     TAINT_PROPER("require");
2595     if (PL_op->op_type == OP_REQUIRE &&
2596       (svp = hv_fetch(GvHVn(PL_incgv), name, len, 0)) &&
2597       *svp != &PL_sv_undef)
2598         RETPUSHYES;
2599
2600     /* prepare to compile file */
2601
2602     if (*name == '/' ||
2603         (*name == '.' && 
2604             (name[1] == '/' ||
2605              (name[1] == '.' && name[2] == '/')))
2606 #ifdef DOSISH
2607       || (name[0] && name[1] == ':')
2608 #endif
2609 #ifdef WIN32
2610       || (name[0] == '\\' && name[1] == '\\')   /* UNC path */
2611 #endif
2612 #ifdef VMS
2613         || (strchr(name,':')  || ((*name == '[' || *name == '<') &&
2614             (isALNUM(name[1]) || strchr("$-_]>",name[1]))))
2615 #endif
2616     )
2617     {
2618         tryname = name;
2619         tryrsfp = PerlIO_open(name,PERL_SCRIPT_MODE);
2620     }
2621     else {
2622         AV *ar = GvAVn(PL_incgv);
2623         I32 i;
2624 #ifdef VMS
2625         char *unixname;
2626         if ((unixname = tounixspec(name, Nullch)) != Nullch)
2627 #endif
2628         {
2629             namesv = NEWSV(806, 0);
2630             for (i = 0; i <= AvFILL(ar); i++) {
2631                 char *dir = SvPVx(*av_fetch(ar, i, TRUE), PL_na);
2632 #ifdef VMS
2633                 char *unixdir;
2634                 if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
2635                     continue;
2636                 sv_setpv(namesv, unixdir);
2637                 sv_catpv(namesv, unixname);
2638 #else
2639                 sv_setpvf(namesv, "%s/%s", dir, name);
2640 #endif
2641                 tryname = SvPVX(namesv);
2642                 tryrsfp = PerlIO_open(tryname, PERL_SCRIPT_MODE);
2643                 if (tryrsfp) {
2644                     if (tryname[0] == '.' && tryname[1] == '/')
2645                         tryname += 2;
2646                     break;
2647                 }
2648             }
2649         }
2650     }
2651     SAVESPTR(PL_compiling.cop_filegv);
2652     PL_compiling.cop_filegv = gv_fetchfile(tryrsfp ? tryname : name);
2653     SvREFCNT_dec(namesv);
2654     if (!tryrsfp) {
2655         if (PL_op->op_type == OP_REQUIRE) {
2656             SV *msg = sv_2mortal(newSVpvf("Can't locate %s in @INC", name));
2657             SV *dirmsgsv = NEWSV(0, 0);
2658             AV *ar = GvAVn(PL_incgv);
2659             I32 i;
2660             if (instr(SvPVX(msg), ".h "))
2661                 sv_catpv(msg, " (change .h to .ph maybe?)");
2662             if (instr(SvPVX(msg), ".ph "))
2663                 sv_catpv(msg, " (did you run h2ph?)");
2664             sv_catpv(msg, " (@INC contains:");
2665             for (i = 0; i <= AvFILL(ar); i++) {
2666                 char *dir = SvPVx(*av_fetch(ar, i, TRUE), PL_na);
2667                 sv_setpvf(dirmsgsv, " %s", dir);
2668                 sv_catsv(msg, dirmsgsv);
2669             }
2670             sv_catpvn(msg, ")", 1);
2671             SvREFCNT_dec(dirmsgsv);
2672             DIE("%_", msg);
2673         }
2674
2675         RETPUSHUNDEF;
2676     }
2677
2678     /* Assume success here to prevent recursive requirement. */
2679     (void)hv_store(GvHVn(PL_incgv), name, strlen(name),
2680         newSVsv(GvSV(PL_compiling.cop_filegv)), 0 );
2681
2682     ENTER;
2683     SAVETMPS;
2684     lex_start(sv_2mortal(newSVpv("",0)));
2685     if (PL_rsfp_filters){
2686         save_aptr(&PL_rsfp_filters);
2687         PL_rsfp_filters = NULL;
2688     }
2689
2690     PL_rsfp = tryrsfp;
2691     name = savepv(name);
2692     SAVEFREEPV(name);
2693     SAVEHINTS();
2694     PL_hints = 0;
2695     SAVEPPTR(PL_compiling.cop_warnings);
2696     PL_compiling.cop_warnings = ((PL_dowarn & G_WARN_ALL_ON) ? WARN_ALL 
2697                                                              : WARN_NONE);
2698  
2699     /* switch to eval mode */
2700
2701     push_return(PL_op->op_next);
2702     PUSHBLOCK(cx, CXt_EVAL, SP);
2703     PUSHEVAL(cx, name, PL_compiling.cop_filegv);
2704
2705     SAVEI16(PL_compiling.cop_line);
2706     PL_compiling.cop_line = 0;
2707
2708     PUTBACK;
2709 #ifdef USE_THREADS
2710     MUTEX_LOCK(&PL_eval_mutex);
2711     if (PL_eval_owner && PL_eval_owner != thr)
2712         while (PL_eval_owner)
2713             COND_WAIT(&PL_eval_cond, &PL_eval_mutex);
2714     PL_eval_owner = thr;
2715     MUTEX_UNLOCK(&PL_eval_mutex);
2716 #endif /* USE_THREADS */
2717     return DOCATCH(doeval(G_SCALAR, NULL));
2718 }
2719
2720 PP(pp_dofile)
2721 {
2722     return pp_require(ARGS);
2723 }
2724
2725 PP(pp_entereval)
2726 {
2727     djSP;
2728     register PERL_CONTEXT *cx;
2729     dPOPss;
2730     I32 gimme = GIMME_V, was = PL_sub_generation;
2731     char tmpbuf[TYPE_DIGITS(long) + 12];
2732     char *safestr;
2733     STRLEN len;
2734     OP *ret;
2735
2736     if (!SvPV(sv,len) || !len)
2737         RETPUSHUNDEF;
2738     TAINT_PROPER("eval");
2739
2740     ENTER;
2741     lex_start(sv);
2742     SAVETMPS;
2743  
2744     /* switch to eval mode */
2745
2746     SAVESPTR(PL_compiling.cop_filegv);
2747     sprintf(tmpbuf, "_<(eval %lu)", (unsigned long)++PL_evalseq);
2748     PL_compiling.cop_filegv = gv_fetchfile(tmpbuf+2);
2749     PL_compiling.cop_line = 1;
2750     /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2751        deleting the eval's FILEGV from the stash before gv_check() runs
2752        (i.e. before run-time proper). To work around the coredump that
2753        ensues, we always turn GvMULTI_on for any globals that were
2754        introduced within evals. See force_ident(). GSAR 96-10-12 */
2755     safestr = savepv(tmpbuf);
2756     SAVEDELETE(PL_defstash, safestr, strlen(safestr));
2757     SAVEHINTS();
2758     PL_hints = PL_op->op_targ;
2759     SAVEPPTR(compiling.cop_warnings);
2760     if (PL_compiling.cop_warnings != WARN_ALL 
2761         && PL_compiling.cop_warnings != WARN_NONE){
2762         PL_compiling.cop_warnings = newSVsv(PL_compiling.cop_warnings) ;
2763         SAVEFREESV(PL_compiling.cop_warnings) ;
2764     }
2765
2766     push_return(PL_op->op_next);
2767     PUSHBLOCK(cx, CXt_EVAL, SP);
2768     PUSHEVAL(cx, 0, PL_compiling.cop_filegv);
2769
2770     /* prepare to compile string */
2771
2772     if (PERLDB_LINE && PL_curstash != PL_debstash)
2773         save_lines(GvAV(PL_compiling.cop_filegv), PL_linestr);
2774     PUTBACK;
2775 #ifdef USE_THREADS
2776     MUTEX_LOCK(&PL_eval_mutex);
2777     if (PL_eval_owner && PL_eval_owner != thr)
2778         while (PL_eval_owner)
2779             COND_WAIT(&PL_eval_cond, &PL_eval_mutex);
2780     PL_eval_owner = thr;
2781     MUTEX_UNLOCK(&PL_eval_mutex);
2782 #endif /* USE_THREADS */
2783     ret = doeval(gimme, NULL);
2784     if (PERLDB_INTER && was != PL_sub_generation /* Some subs defined here. */
2785         && ret != PL_op->op_next) {     /* Successive compilation. */
2786         strcpy(safestr, "_<(eval )");   /* Anything fake and short. */
2787     }
2788     return DOCATCH(ret);
2789 }
2790
2791 PP(pp_leaveeval)
2792 {
2793     djSP;
2794     register SV **mark;
2795     SV **newsp;
2796     PMOP *newpm;
2797     I32 gimme;
2798     register PERL_CONTEXT *cx;
2799     OP *retop;
2800     U8 save_flags = PL_op -> op_flags;
2801     I32 optype;
2802
2803     POPBLOCK(cx,newpm);
2804     POPEVAL(cx);
2805     retop = pop_return();
2806
2807     TAINT_NOT;
2808     if (gimme == G_VOID)
2809         MARK = newsp;
2810     else if (gimme == G_SCALAR) {
2811         MARK = newsp + 1;
2812         if (MARK <= SP) {
2813             if (SvFLAGS(TOPs) & SVs_TEMP)
2814                 *MARK = TOPs;
2815             else
2816                 *MARK = sv_mortalcopy(TOPs);
2817         }
2818         else {
2819             MEXTEND(mark,0);
2820             *MARK = &PL_sv_undef;
2821         }
2822     }
2823     else {
2824         /* in case LEAVE wipes old return values */
2825         for (mark = newsp + 1; mark <= SP; mark++) {
2826             if (!(SvFLAGS(*mark) & SVs_TEMP)) {
2827                 *mark = sv_mortalcopy(*mark);
2828                 TAINT_NOT;      /* Each item is independent */
2829             }
2830         }
2831     }
2832     PL_curpm = newpm;   /* Don't pop $1 et al till now */
2833
2834     /*
2835      * Closures mentioned at top level of eval cannot be referenced
2836      * again, and their presence indirectly causes a memory leak.
2837      * (Note that the fact that compcv and friends are still set here
2838      * is, AFAIK, an accident.)  --Chip
2839      */
2840     if (AvFILLp(PL_comppad_name) >= 0) {
2841         SV **svp = AvARRAY(PL_comppad_name);
2842         I32 ix;
2843         for (ix = AvFILLp(PL_comppad_name); ix >= 0; ix--) {
2844             SV *sv = svp[ix];
2845             if (sv && sv != &PL_sv_undef && *SvPVX(sv) == '&') {
2846                 SvREFCNT_dec(sv);
2847                 svp[ix] = &PL_sv_undef;
2848
2849                 sv = PL_curpad[ix];
2850                 if (CvCLONE(sv)) {
2851                     SvREFCNT_dec(CvOUTSIDE(sv));
2852                     CvOUTSIDE(sv) = Nullcv;
2853                 }
2854                 else {
2855                     SvREFCNT_dec(sv);
2856                     sv = NEWSV(0,0);
2857                     SvPADTMP_on(sv);
2858                     PL_curpad[ix] = sv;
2859                 }
2860             }
2861         }
2862     }
2863
2864 #ifdef DEBUGGING
2865     assert(CvDEPTH(PL_compcv) == 1);
2866 #endif
2867     CvDEPTH(PL_compcv) = 0;
2868     lex_end();
2869
2870     if (optype == OP_REQUIRE &&
2871         !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
2872     {
2873         /* Unassume the success we assumed earlier. */
2874         char *name = cx->blk_eval.old_name;
2875         (void)hv_delete(GvHVn(PL_incgv), name, strlen(name), G_DISCARD);
2876         retop = die("%s did not return a true value", name);
2877         /* die_where() did LEAVE, or we won't be here */
2878     }
2879     else {
2880         LEAVE;
2881         if (!(save_flags & OPf_SPECIAL))
2882             sv_setpv(ERRSV,"");
2883     }
2884
2885     RETURNOP(retop);
2886 }
2887
2888 PP(pp_entertry)
2889 {
2890     djSP;
2891     register PERL_CONTEXT *cx;
2892     I32 gimme = GIMME_V;
2893
2894     ENTER;
2895     SAVETMPS;
2896
2897     push_return(cLOGOP->op_other->op_next);
2898     PUSHBLOCK(cx, CXt_EVAL, SP);
2899     PUSHEVAL(cx, 0, 0);
2900     PL_eval_root = PL_op;               /* Only needed so that goto works right. */
2901
2902     PL_in_eval = 1;
2903     sv_setpv(ERRSV,"");
2904     PUTBACK;
2905     return DOCATCH(PL_op->op_next);
2906 }
2907
2908 PP(pp_leavetry)
2909 {
2910     djSP;
2911     register SV **mark;
2912     SV **newsp;
2913     PMOP *newpm;
2914     I32 gimme;
2915     register PERL_CONTEXT *cx;
2916     I32 optype;
2917
2918     POPBLOCK(cx,newpm);
2919     POPEVAL(cx);
2920     pop_return();
2921
2922     TAINT_NOT;
2923     if (gimme == G_VOID)
2924         SP = newsp;
2925     else if (gimme == G_SCALAR) {
2926         MARK = newsp + 1;
2927         if (MARK <= SP) {
2928             if (SvFLAGS(TOPs) & (SVs_PADTMP|SVs_TEMP))
2929                 *MARK = TOPs;
2930             else
2931                 *MARK = sv_mortalcopy(TOPs);
2932         }
2933         else {
2934             MEXTEND(mark,0);
2935             *MARK = &PL_sv_undef;
2936         }
2937         SP = MARK;
2938     }
2939     else {
2940         /* in case LEAVE wipes old return values */
2941         for (mark = newsp + 1; mark <= SP; mark++) {
2942             if (!(SvFLAGS(*mark) & (SVs_PADTMP|SVs_TEMP))) {
2943                 *mark = sv_mortalcopy(*mark);
2944                 TAINT_NOT;      /* Each item is independent */
2945             }
2946         }
2947     }
2948     PL_curpm = newpm;   /* Don't pop $1 et al till now */
2949
2950     LEAVE;
2951     sv_setpv(ERRSV,"");
2952     RETURN;
2953 }
2954
2955 STATIC void
2956 doparseform(SV *sv)
2957 {
2958     STRLEN len;
2959     register char *s = SvPV_force(sv, len);
2960     register char *send = s + len;
2961     register char *base;
2962     register I32 skipspaces = 0;
2963     bool noblank;
2964     bool repeat;
2965     bool postspace = FALSE;
2966     U16 *fops;
2967     register U16 *fpc;
2968     U16 *linepc;
2969     register I32 arg;
2970     bool ischop;
2971
2972     if (len == 0)
2973         croak("Null picture in formline");
2974     
2975     New(804, fops, (send - s)*3+10, U16);    /* Almost certainly too long... */
2976     fpc = fops;
2977
2978     if (s < send) {
2979         linepc = fpc;
2980         *fpc++ = FF_LINEMARK;
2981         noblank = repeat = FALSE;
2982         base = s;
2983     }
2984
2985     while (s <= send) {
2986         switch (*s++) {
2987         default:
2988             skipspaces = 0;
2989             continue;
2990
2991         case '~':
2992             if (*s == '~') {
2993                 repeat = TRUE;
2994                 *s = ' ';
2995             }
2996             noblank = TRUE;
2997             s[-1] = ' ';
2998             /* FALL THROUGH */
2999         case ' ': case '\t':
3000             skipspaces++;
3001             continue;
3002             
3003         case '\n': case 0:
3004             arg = s - base;
3005             skipspaces++;
3006             arg -= skipspaces;
3007             if (arg) {
3008                 if (postspace)
3009                     *fpc++ = FF_SPACE;
3010                 *fpc++ = FF_LITERAL;
3011                 *fpc++ = arg;
3012             }
3013             postspace = FALSE;
3014             if (s <= send)
3015                 skipspaces--;
3016             if (skipspaces) {
3017                 *fpc++ = FF_SKIP;
3018                 *fpc++ = skipspaces;
3019             }
3020             skipspaces = 0;
3021             if (s <= send)
3022                 *fpc++ = FF_NEWLINE;
3023             if (noblank) {
3024                 *fpc++ = FF_BLANK;
3025                 if (repeat)
3026                     arg = fpc - linepc + 1;
3027                 else
3028                     arg = 0;
3029                 *fpc++ = arg;
3030             }
3031             if (s < send) {
3032                 linepc = fpc;
3033                 *fpc++ = FF_LINEMARK;
3034                 noblank = repeat = FALSE;
3035                 base = s;
3036             }
3037             else
3038                 s++;
3039             continue;
3040
3041         case '@':
3042         case '^':
3043             ischop = s[-1] == '^';
3044
3045             if (postspace) {
3046                 *fpc++ = FF_SPACE;
3047                 postspace = FALSE;
3048             }
3049             arg = (s - base) - 1;
3050             if (arg) {
3051                 *fpc++ = FF_LITERAL;
3052                 *fpc++ = arg;
3053             }
3054
3055             base = s - 1;
3056             *fpc++ = FF_FETCH;
3057             if (*s == '*') {
3058                 s++;
3059                 *fpc++ = 0;
3060                 *fpc++ = FF_LINEGLOB;
3061             }
3062             else if (*s == '#' || (*s == '.' && s[1] == '#')) {
3063                 arg = ischop ? 512 : 0;
3064                 base = s - 1;
3065                 while (*s == '#')
3066                     s++;
3067                 if (*s == '.') {
3068                     char *f;
3069                     s++;
3070                     f = s;
3071                     while (*s == '#')
3072                         s++;
3073                     arg |= 256 + (s - f);
3074                 }
3075                 *fpc++ = s - base;              /* fieldsize for FETCH */
3076                 *fpc++ = FF_DECIMAL;
3077                 *fpc++ = arg;
3078             }
3079             else {
3080                 I32 prespace = 0;
3081                 bool ismore = FALSE;
3082
3083                 if (*s == '>') {
3084                     while (*++s == '>') ;
3085                     prespace = FF_SPACE;
3086                 }
3087                 else if (*s == '|') {
3088                     while (*++s == '|') ;
3089                     prespace = FF_HALFSPACE;
3090                     postspace = TRUE;
3091                 }
3092                 else {
3093                     if (*s == '<')
3094                         while (*++s == '<') ;
3095                     postspace = TRUE;
3096                 }
3097                 if (*s == '.' && s[1] == '.' && s[2] == '.') {
3098                     s += 3;
3099                     ismore = TRUE;
3100                 }
3101                 *fpc++ = s - base;              /* fieldsize for FETCH */
3102
3103                 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
3104
3105                 if (prespace)
3106                     *fpc++ = prespace;
3107                 *fpc++ = FF_ITEM;
3108                 if (ismore)
3109                     *fpc++ = FF_MORE;
3110                 if (ischop)
3111                     *fpc++ = FF_CHOP;
3112             }
3113             base = s;
3114             skipspaces = 0;
3115             continue;
3116         }
3117     }
3118     *fpc++ = FF_END;
3119
3120     arg = fpc - fops;
3121     { /* need to jump to the next word */
3122         int z;
3123         z = WORD_ALIGN - SvCUR(sv) % WORD_ALIGN;
3124         SvGROW(sv, SvCUR(sv) + z + arg * sizeof(U16) + 4);
3125         s = SvPVX(sv) + SvCUR(sv) + z;
3126     }
3127     Copy(fops, s, arg, U16);
3128     Safefree(fops);
3129     sv_magic(sv, Nullsv, 'f', Nullch, 0);
3130     SvCOMPILED_on(sv);
3131 }
3132
3133 /*
3134  * The rest of this file was derived from source code contributed
3135  * by Tom Horsley.
3136  *
3137  * NOTE: this code was derived from Tom Horsley's qsort replacement
3138  * and should not be confused with the original code.
3139  */
3140
3141 /* Copyright (C) Tom Horsley, 1997. All rights reserved.
3142
3143    Permission granted to distribute under the same terms as perl which are
3144    (briefly):
3145
3146     This program is free software; you can redistribute it and/or modify
3147     it under the terms of either:
3148
3149         a) the GNU General Public License as published by the Free
3150         Software Foundation; either version 1, or (at your option) any
3151         later version, or
3152
3153         b) the "Artistic License" which comes with this Kit.
3154
3155    Details on the perl license can be found in the perl source code which
3156    may be located via the www.perl.com web page.
3157
3158    This is the most wonderfulest possible qsort I can come up with (and
3159    still be mostly portable) My (limited) tests indicate it consistently
3160    does about 20% fewer calls to compare than does the qsort in the Visual
3161    C++ library, other vendors may vary.
3162
3163    Some of the ideas in here can be found in "Algorithms" by Sedgewick,
3164    others I invented myself (or more likely re-invented since they seemed
3165    pretty obvious once I watched the algorithm operate for a while).
3166
3167    Most of this code was written while watching the Marlins sweep the Giants
3168    in the 1997 National League Playoffs - no Braves fans allowed to use this
3169    code (just kidding :-).
3170
3171    I realize that if I wanted to be true to the perl tradition, the only
3172    comment in this file would be something like:
3173
3174    ...they shuffled back towards the rear of the line. 'No, not at the
3175    rear!'  the slave-driver shouted. 'Three files up. And stay there...
3176
3177    However, I really needed to violate that tradition just so I could keep
3178    track of what happens myself, not to mention some poor fool trying to
3179    understand this years from now :-).
3180 */
3181
3182 /* ********************************************************** Configuration */
3183
3184 #ifndef QSORT_ORDER_GUESS
3185 #define QSORT_ORDER_GUESS 2     /* Select doubling version of the netBSD trick */
3186 #endif
3187
3188 /* QSORT_MAX_STACK is the largest number of partitions that can be stacked up for
3189    future processing - a good max upper bound is log base 2 of memory size
3190    (32 on 32 bit machines, 64 on 64 bit machines, etc). In reality can
3191    safely be smaller than that since the program is taking up some space and
3192    most operating systems only let you grab some subset of contiguous
3193    memory (not to mention that you are normally sorting data larger than
3194    1 byte element size :-).
3195 */
3196 #ifndef QSORT_MAX_STACK
3197 #define QSORT_MAX_STACK 32
3198 #endif
3199
3200 /* QSORT_BREAK_EVEN is the size of the largest partition we should insertion sort.
3201    Anything bigger and we use qsort. If you make this too small, the qsort
3202    will probably break (or become less efficient), because it doesn't expect
3203    the middle element of a partition to be the same as the right or left -
3204    you have been warned).
3205 */
3206 #ifndef QSORT_BREAK_EVEN
3207 #define QSORT_BREAK_EVEN 6
3208 #endif
3209
3210 /* ************************************************************* Data Types */
3211
3212 /* hold left and right index values of a partition waiting to be sorted (the
3213    partition includes both left and right - right is NOT one past the end or
3214    anything like that).
3215 */
3216 struct partition_stack_entry {
3217    int left;
3218    int right;
3219 #ifdef QSORT_ORDER_GUESS
3220    int qsort_break_even;
3221 #endif
3222 };
3223
3224 /* ******************************************************* Shorthand Macros */
3225
3226 /* Note that these macros will be used from inside the qsort function where
3227    we happen to know that the variable 'elt_size' contains the size of an
3228    array element and the variable 'temp' points to enough space to hold a
3229    temp element and the variable 'array' points to the array being sorted
3230    and 'compare' is the pointer to the compare routine.
3231
3232    Also note that there are very many highly architecture specific ways
3233    these might be sped up, but this is simply the most generally portable
3234    code I could think of.
3235 */
3236
3237 /* Return < 0 == 0 or > 0 as the value of elt1 is < elt2, == elt2, > elt2
3238 */
3239 #ifdef PERL_OBJECT
3240 #define qsort_cmp(elt1, elt2) \
3241    ((this->*compare)(array[elt1], array[elt2]))
3242 #else
3243 #define qsort_cmp(elt1, elt2) \
3244    ((*compare)(array[elt1], array[elt2]))
3245 #endif
3246
3247 #ifdef QSORT_ORDER_GUESS
3248 #define QSORT_NOTICE_SWAP swapped++;
3249 #else
3250 #define QSORT_NOTICE_SWAP
3251 #endif
3252
3253 /* swaps contents of array elements elt1, elt2.
3254 */
3255 #define qsort_swap(elt1, elt2) \
3256    STMT_START { \
3257       QSORT_NOTICE_SWAP \
3258       temp = array[elt1]; \
3259       array[elt1] = array[elt2]; \
3260       array[elt2] = temp; \
3261    } STMT_END
3262
3263 /* rotate contents of elt1, elt2, elt3 such that elt1 gets elt2, elt2 gets
3264    elt3 and elt3 gets elt1.
3265 */
3266 #define qsort_rotate(elt1, elt2, elt3) \
3267    STMT_START { \
3268       QSORT_NOTICE_SWAP \
3269       temp = array[elt1]; \
3270       array[elt1] = array[elt2]; \
3271       array[elt2] = array[elt3]; \
3272       array[elt3] = temp; \
3273    } STMT_END
3274
3275 /* ************************************************************ Debug stuff */
3276
3277 #ifdef QSORT_DEBUG
3278
3279 static void
3280 break_here()
3281 {
3282    return; /* good place to set a breakpoint */
3283 }
3284
3285 #define qsort_assert(t) (void)( (t) || (break_here(), 0) )
3286
3287 static void
3288 doqsort_all_asserts(
3289    void * array,
3290    size_t num_elts,
3291    size_t elt_size,
3292    int (*compare)(const void * elt1, const void * elt2),
3293    int pc_left, int pc_right, int u_left, int u_right)
3294 {
3295    int i;
3296
3297    qsort_assert(pc_left <= pc_right);
3298    qsort_assert(u_right < pc_left);
3299    qsort_assert(pc_right < u_left);
3300    for (i = u_right + 1; i < pc_left; ++i) {
3301       qsort_assert(qsort_cmp(i, pc_left) < 0);
3302    }
3303    for (i = pc_left; i < pc_right; ++i) {
3304       qsort_assert(qsort_cmp(i, pc_right) == 0);
3305    }
3306    for (i = pc_right + 1; i < u_left; ++i) {
3307       qsort_assert(qsort_cmp(pc_right, i) < 0);
3308    }
3309 }
3310
3311 #define qsort_all_asserts(PC_LEFT, PC_RIGHT, U_LEFT, U_RIGHT) \
3312    doqsort_all_asserts(array, num_elts, elt_size, compare, \
3313                  PC_LEFT, PC_RIGHT, U_LEFT, U_RIGHT)
3314
3315 #else
3316
3317 #define qsort_assert(t) ((void)0)
3318
3319 #define qsort_all_asserts(PC_LEFT, PC_RIGHT, U_LEFT, U_RIGHT) ((void)0)
3320
3321 #endif
3322
3323 /* ****************************************************************** qsort */
3324
3325 STATIC void
3326 #ifdef PERL_OBJECT
3327 qsortsv(SV ** array, size_t num_elts, SVCOMPARE compare)
3328 #else
3329 qsortsv(
3330    SV ** array,
3331    size_t num_elts,
3332    I32 (*compare)(SV *a, SV *b))
3333 #endif
3334 {
3335    register SV * temp;
3336
3337    struct partition_stack_entry partition_stack[QSORT_MAX_STACK];
3338    int next_stack_entry = 0;
3339
3340    int part_left;
3341    int part_right;
3342 #ifdef QSORT_ORDER_GUESS
3343    int qsort_break_even;
3344    int swapped;
3345 #endif
3346
3347    /* Make sure we actually have work to do.
3348    */
3349    if (num_elts <= 1) {
3350       return;
3351    }
3352
3353    /* Setup the initial partition definition and fall into the sorting loop
3354    */
3355    part_left = 0;
3356    part_right = (int)(num_elts - 1);
3357 #ifdef QSORT_ORDER_GUESS
3358    qsort_break_even = QSORT_BREAK_EVEN;
3359 #else
3360 #define qsort_break_even QSORT_BREAK_EVEN
3361 #endif
3362    for ( ; ; ) {
3363       if ((part_right - part_left) >= qsort_break_even) {
3364          /* OK, this is gonna get hairy, so lets try to document all the
3365             concepts and abbreviations and variables and what they keep
3366             track of:
3367
3368             pc: pivot chunk - the set of array elements we accumulate in the
3369                 middle of the partition, all equal in value to the original
3370                 pivot element selected. The pc is defined by:
3371
3372                 pc_left - the leftmost array index of the pc
3373                 pc_right - the rightmost array index of the pc
3374
3375                 we start with pc_left == pc_right and only one element
3376                 in the pivot chunk (but it can grow during the scan).
3377
3378             u:  uncompared elements - the set of elements in the partition
3379                 we have not yet compared to the pivot value. There are two
3380                 uncompared sets during the scan - one to the left of the pc
3381                 and one to the right.
3382
3383                 u_right - the rightmost index of the left side's uncompared set
3384                 u_left - the leftmost index of the right side's uncompared set
3385
3386                 The leftmost index of the left sides's uncompared set
3387                 doesn't need its own variable because it is always defined
3388                 by the leftmost edge of the whole partition (part_left). The
3389                 same goes for the rightmost edge of the right partition
3390                 (part_right).
3391
3392                 We know there are no uncompared elements on the left once we
3393                 get u_right < part_left and no uncompared elements on the
3394                 right once u_left > part_right. When both these conditions
3395                 are met, we have completed the scan of the partition.
3396
3397                 Any elements which are between the pivot chunk and the
3398                 uncompared elements should be less than the pivot value on
3399                 the left side and greater than the pivot value on the right
3400                 side (in fact, the goal of the whole algorithm is to arrange
3401                 for that to be true and make the groups of less-than and
3402                 greater-then elements into new partitions to sort again).
3403
3404             As you marvel at the complexity of the code and wonder why it
3405             has to be so confusing. Consider some of the things this level
3406             of confusion brings:
3407
3408             Once I do a compare, I squeeze every ounce of juice out of it. I
3409             never do compare calls I don't have to do, and I certainly never
3410             do redundant calls.
3411
3412             I also never swap any elements unless I can prove there is a
3413             good reason. Many sort algorithms will swap a known value with
3414             an uncompared value just to get things in the right place (or
3415             avoid complexity :-), but that uncompared value, once it gets
3416             compared, may then have to be swapped again. A lot of the
3417             complexity of this code is due to the fact that it never swaps
3418             anything except compared values, and it only swaps them when the
3419             compare shows they are out of position.
3420          */
3421          int pc_left, pc_right;
3422          int u_right, u_left;
3423
3424          int s;
3425
3426          pc_left = ((part_left + part_right) / 2);
3427          pc_right = pc_left;
3428          u_right = pc_left - 1;
3429          u_left = pc_right + 1;
3430
3431          /* Qsort works best when the pivot value is also the median value
3432             in the partition (unfortunately you can't find the median value
3433             without first sorting :-), so to give the algorithm a helping
3434             hand, we pick 3 elements and sort them and use the median value
3435             of that tiny set as the pivot value.
3436
3437             Some versions of qsort like to use the left middle and right as
3438             the 3 elements to sort so they can insure the ends of the
3439             partition will contain values which will stop the scan in the
3440             compare loop, but when you have to call an arbitrarily complex
3441             routine to do a compare, its really better to just keep track of
3442             array index values to know when you hit the edge of the
3443             partition and avoid the extra compare. An even better reason to
3444             avoid using a compare call is the fact that you can drop off the
3445             edge of the array if someone foolishly provides you with an
3446             unstable compare function that doesn't always provide consistent
3447             results.
3448
3449             So, since it is simpler for us to compare the three adjacent
3450             elements in the middle of the partition, those are the ones we
3451             pick here (conveniently pointed at by u_right, pc_left, and
3452             u_left). The values of the left, center, and right elements
3453             are refered to as l c and r in the following comments.
3454          */
3455
3456 #ifdef QSORT_ORDER_GUESS
3457          swapped = 0;
3458 #endif
3459          s = qsort_cmp(u_right, pc_left);
3460          if (s < 0) {
3461             /* l < c */
3462             s = qsort_cmp(pc_left, u_left);
3463             /* if l < c, c < r - already in order - nothing to do */
3464             if (s == 0) {
3465                /* l < c, c == r - already in order, pc grows */
3466                ++pc_right;
3467                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3468             } else if (s > 0) {
3469                /* l < c, c > r - need to know more */
3470                s = qsort_cmp(u_right, u_left);
3471                if (s < 0) {
3472                   /* l < c, c > r, l < r - swap c & r to get ordered */
3473                   qsort_swap(pc_left, u_left);
3474                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3475                } else if (s == 0) {
3476                   /* l < c, c > r, l == r - swap c&r, grow pc */
3477                   qsort_swap(pc_left, u_left);
3478                   --pc_left;
3479                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3480                } else {
3481                   /* l < c, c > r, l > r - make lcr into rlc to get ordered */
3482                   qsort_rotate(pc_left, u_right, u_left);
3483                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3484                }
3485             }
3486          } else if (s == 0) {
3487             /* l == c */
3488             s = qsort_cmp(pc_left, u_left);
3489             if (s < 0) {
3490                /* l == c, c < r - already in order, grow pc */
3491                --pc_left;
3492                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3493             } else if (s == 0) {
3494                /* l == c, c == r - already in order, grow pc both ways */
3495                --pc_left;
3496                ++pc_right;
3497                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3498             } else {
3499                /* l == c, c > r - swap l & r, grow pc */
3500                qsort_swap(u_right, u_left);
3501                ++pc_right;
3502                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3503             }
3504          } else {
3505             /* l > c */
3506             s = qsort_cmp(pc_left, u_left);
3507             if (s < 0) {
3508                /* l > c, c < r - need to know more */
3509                s = qsort_cmp(u_right, u_left);
3510                if (s < 0) {
3511                   /* l > c, c < r, l < r - swap l & c to get ordered */
3512                   qsort_swap(u_right, pc_left);
3513                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3514                } else if (s == 0) {
3515                   /* l > c, c < r, l == r - swap l & c, grow pc */
3516                   qsort_swap(u_right, pc_left);
3517                   ++pc_right;
3518                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3519                } else {
3520                   /* l > c, c < r, l > r - rotate lcr into crl to order */
3521                   qsort_rotate(u_right, pc_left, u_left);
3522                   qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3523                }
3524             } else if (s == 0) {
3525                /* l > c, c == r - swap ends, grow pc */
3526                qsort_swap(u_right, u_left);
3527                --pc_left;
3528                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3529             } else {
3530                /* l > c, c > r - swap ends to get in order */
3531                qsort_swap(u_right, u_left);
3532                qsort_all_asserts(pc_left, pc_right, u_left + 1, u_right - 1);
3533             }
3534          }
3535          /* We now know the 3 middle elements have been compared and
3536             arranged in the desired order, so we can shrink the uncompared
3537             sets on both sides
3538          */
3539          --u_right;
3540          ++u_left;
3541          qsort_all_asserts(pc_left, pc_right, u_left, u_right);
3542
3543          /* The above massive nested if was the simple part :-). We now have
3544             the middle 3 elements ordered and we need to scan through the
3545             uncompared sets on either side, swapping elements that are on
3546             the wrong side or simply shuffling equal elements around to get
3547             all equal elements into the pivot chunk.
3548          */
3549
3550          for ( ; ; ) {
3551             int still_work_on_left;
3552             int still_work_on_right;
3553
3554             /* Scan the uncompared values on the left. If I find a value
3555                equal to the pivot value, move it over so it is adjacent to
3556                the pivot chunk and expand the pivot chunk. If I find a value
3557                less than the pivot value, then just leave it - its already
3558                on the correct side of the partition. If I find a greater
3559                value, then stop the scan.
3560             */
3561             while (still_work_on_left = (u_right >= part_left)) {
3562                s = qsort_cmp(u_right, pc_left);
3563                if (s < 0) {
3564                   --u_right;
3565                } else if (s == 0) {
3566                   --pc_left;
3567                   if (pc_left != u_right) {
3568                      qsort_swap(u_right, pc_left);
3569                   }
3570                   --u_right;
3571                } else {
3572                   break;
3573                }
3574                qsort_assert(u_right < pc_left);
3575                qsort_assert(pc_left <= pc_right);
3576                qsort_assert(qsort_cmp(u_right + 1, pc_left) <= 0);
3577                qsort_assert(qsort_cmp(pc_left, pc_right) == 0);
3578             }
3579
3580             /* Do a mirror image scan of uncompared values on the right
3581             */
3582             while (still_work_on_right = (u_left <= part_right)) {
3583                s = qsort_cmp(pc_right, u_left);
3584                if (s < 0) {
3585                   ++u_left;
3586                } else if (s == 0) {
3587                   ++pc_right;
3588                   if (pc_right != u_left) {
3589                      qsort_swap(pc_right, u_left);
3590                   }
3591                   ++u_left;
3592                } else {
3593                   break;
3594                }
3595                qsort_assert(u_left > pc_right);
3596                qsort_assert(pc_left <= pc_right);
3597                qsort_assert(qsort_cmp(pc_right, u_left - 1) <= 0);
3598                qsort_assert(qsort_cmp(pc_left, pc_right) == 0);
3599             }
3600
3601             if (still_work_on_left) {
3602                /* I know I have a value on the left side which needs to be
3603                   on the right side, but I need to know more to decide
3604                   exactly the best thing to do with it.
3605                */
3606                if (still_work_on_right) {
3607                   /* I know I have values on both side which are out of
3608                      position. This is a big win because I kill two birds
3609                      with one swap (so to speak). I can advance the
3610                      uncompared pointers on both sides after swapping both
3611                      of them into the right place.
3612                   */
3613                   qsort_swap(u_right, u_left);
3614                   --u_right;
3615                   ++u_left;
3616                   qsort_all_asserts(pc_left, pc_right, u_left, u_right);
3617                } else {
3618                   /* I have an out of position value on the left, but the
3619                      right is fully scanned, so I "slide" the pivot chunk
3620                      and any less-than values left one to make room for the
3621                      greater value over on the right. If the out of position
3622                      value is immediately adjacent to the pivot chunk (there
3623                      are no less-than values), I can do that with a swap,
3624                      otherwise, I have to rotate one of the less than values
3625                      into the former position of the out of position value
3626                      and the right end of the pivot chunk into the left end
3627                      (got all that?).
3628                   */
3629                   --pc_left;
3630                   if (pc_left == u_right) {
3631                      qsort_swap(u_right, pc_right);
3632                      qsort_all_asserts(pc_left, pc_right-1, u_left, u_right-1);
3633                   } else {
3634                      qsort_rotate(u_right, pc_left, pc_right);
3635                      qsort_all_asserts(pc_left, pc_right-1, u_left, u_right-1);
3636                   }
3637                   --pc_right;
3638                   --u_right;
3639                }
3640             } else if (still_work_on_right) {
3641                /* Mirror image of complex case above: I have an out of
3642                   position value on the right, but the left is fully
3643                   scanned, so I need to shuffle things around to make room
3644                   for the right value on the left.
3645                */
3646                ++pc_right;
3647                if (pc_right == u_left) {
3648                   qsort_swap(u_left, pc_left);
3649                   qsort_all_asserts(pc_left+1, pc_right, u_left+1, u_right);
3650                } else {
3651                   qsort_rotate(pc_right, pc_left, u_left);
3652                   qsort_all_asserts(pc_left+1, pc_right, u_left+1, u_right);
3653                }
3654                ++pc_left;
3655                ++u_left;
3656             } else {
3657                /* No more scanning required on either side of partition,
3658                   break out of loop and figure out next set of partitions
3659                */
3660                break;
3661             }
3662          }
3663
3664          /* The elements in the pivot chunk are now in the right place. They
3665             will never move or be compared again. All I have to do is decide
3666             what to do with the stuff to the left and right of the pivot
3667             chunk.
3668
3669             Notes on the QSORT_ORDER_GUESS ifdef code:
3670
3671             1. If I just built these partitions without swapping any (or
3672                very many) elements, there is a chance that the elements are
3673                already ordered properly (being properly ordered will
3674                certainly result in no swapping, but the converse can't be
3675                proved :-).
3676
3677             2. A (properly written) insertion sort will run faster on
3678                already ordered data than qsort will.
3679
3680             3. Perhaps there is some way to make a good guess about
3681                switching to an insertion sort earlier than partition size 6
3682                (for instance - we could save the partition size on the stack
3683                and increase the size each time we find we didn't swap, thus
3684                switching to insertion sort earlier for partitions with a
3685                history of not swapping).
3686
3687             4. Naturally, if I just switch right away, it will make
3688                artificial benchmarks with pure ascending (or descending)
3689                data look really good, but is that a good reason in general?
3690                Hard to say...
3691          */
3692
3693 #ifdef QSORT_ORDER_GUESS
3694          if (swapped < 3) {
3695 #if QSORT_ORDER_GUESS == 1
3696             qsort_break_even = (part_right - part_left) + 1;
3697 #endif
3698 #if QSORT_ORDER_GUESS == 2
3699             qsort_break_even *= 2;
3700 #endif
3701 #if QSORT_ORDER_GUESS == 3
3702             int prev_break = qsort_break_even;
3703             qsort_break_even *= qsort_break_even;
3704             if (qsort_break_even < prev_break) {
3705                qsort_break_even = (part_right - part_left) + 1;
3706             }
3707 #endif
3708          } else {
3709             qsort_break_even = QSORT_BREAK_EVEN;
3710          }
3711 #endif
3712
3713          if (part_left < pc_left) {
3714             /* There are elements on the left which need more processing.
3715                Check the right as well before deciding what to do.
3716             */
3717             if (pc_right < part_right) {
3718                /* We have two partitions to be sorted. Stack the biggest one
3719                   and process the smallest one on the next iteration. This
3720                   minimizes the stack height by insuring that any additional
3721                   stack entries must come from the smallest partition which
3722                   (because it is smallest) will have the fewest
3723                   opportunities to generate additional stack entries.
3724                */
3725                if ((part_right - pc_right) > (pc_left - part_left)) {
3726                   /* stack the right partition, process the left */
3727                   partition_stack[next_stack_entry].left = pc_right + 1;
3728                   partition_stack[next_stack_entry].right = part_right;
3729 #ifdef QSORT_ORDER_GUESS
3730                   partition_stack[next_stack_entry].qsort_break_even = qsort_break_even;
3731 #endif
3732                   part_right = pc_left - 1;
3733                } else {
3734                   /* stack the left partition, process the right */
3735                   partition_stack[next_stack_entry].left = part_left;
3736                   partition_stack[next_stack_entry].right = pc_left - 1;
3737 #ifdef QSORT_ORDER_GUESS
3738                   partition_stack[next_stack_entry].qsort_break_even = qsort_break_even;
3739 #endif
3740                   part_left = pc_right + 1;
3741                }
3742                qsort_assert(next_stack_entry < QSORT_MAX_STACK);
3743                ++next_stack_entry;
3744             } else {
3745                /* The elements on the left are the only remaining elements
3746                   that need sorting, arrange for them to be processed as the
3747                   next partition.
3748                */
3749                part_right = pc_left - 1;
3750             }
3751          } else if (pc_right < part_right) {
3752             /* There is only one chunk on the right to be sorted, make it
3753                the new partition and loop back around.
3754             */
3755             part_left = pc_right + 1;
3756          } else {
3757             /* This whole partition wound up in the pivot chunk, so
3758                we need to get a new partition off the stack.
3759             */
3760             if (next_stack_entry == 0) {
3761                /* the stack is empty - we are done */
3762                break;
3763             }
3764             --next_stack_entry;
3765             part_left = partition_stack[next_stack_entry].left;
3766             part_right = partition_stack[next_stack_entry].right;
3767 #ifdef QSORT_ORDER_GUESS
3768             qsort_break_even = partition_stack[next_stack_entry].qsort_break_even;
3769 #endif
3770          }
3771       } else {
3772          /* This partition is too small to fool with qsort complexity, just
3773             do an ordinary insertion sort to minimize overhead.
3774          */
3775          int i;
3776          /* Assume 1st element is in right place already, and start checking
3777             at 2nd element to see where it should be inserted.
3778          */
3779          for (i = part_left + 1; i <= part_right; ++i) {
3780             int j;
3781             /* Scan (backwards - just in case 'i' is already in right place)
3782                through the elements already sorted to see if the ith element
3783                belongs ahead of one of them.
3784             */
3785             for (j = i - 1; j >= part_left; --j) {
3786                if (qsort_cmp(i, j) >= 0) {
3787                   /* i belongs right after j
3788                   */
3789                   break;
3790                }
3791             }
3792             ++j;
3793             if (j != i) {
3794                /* Looks like we really need to move some things
3795                */
3796                int k;
3797                temp = array[i];
3798                for (k = i - 1; k >= j; --k)
3799                   array[k + 1] = array[k];
3800                array[j] = temp;
3801             }
3802          }
3803
3804          /* That partition is now sorted, grab the next one, or get out
3805             of the loop if there aren't any more.
3806          */
3807
3808          if (next_stack_entry == 0) {
3809             /* the stack is empty - we are done */
3810             break;
3811          }
3812          --next_stack_entry;
3813          part_left = partition_stack[next_stack_entry].left;
3814          part_right = partition_stack[next_stack_entry].right;
3815 #ifdef QSORT_ORDER_GUESS
3816          qsort_break_even = partition_stack[next_stack_entry].qsort_break_even;
3817 #endif
3818       }
3819    }
3820
3821    /* Believe it or not, the array is sorted at this point! */
3822 }