[inseparable changes from patch from perl5.003_26 to perl5.003_27]
[p5sagit/p5-mst-13.2.git] / op.c
1 /*    op.c
2  *
3  *    Copyright (c) 1991-1994, 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  * "You see: Mr. Drogo, he married poor Miss Primula Brandybuck.  She was
12  * our Mr. Bilbo's first cousin on the mother's side (her mother being the
13  * youngest of the Old Took's daughters); and Mr. Drogo was his second
14  * cousin.  So Mr. Frodo is his first *and* second cousin, once removed
15  * either way, as the saying is, if you follow me."  --the Gaffer
16  */
17
18 #include "EXTERN.h"
19 #include "perl.h"
20
21 #define USE_OP_MASK  /* Turned on by default in 5.002beta1h */
22
23 #ifdef USE_OP_MASK
24 /*
25  * In the following definition, the ", (OP *) op" is just to make the compiler
26  * think the expression is of the right type: croak actually does a Siglongjmp.
27  */
28 #define CHECKOP(type,op) \
29     ((op_mask && op_mask[type])                                 \
30      ? ( op_free((OP*)op),                                      \
31          croak("%s trapped by operation mask", op_desc[type]),  \
32          Nullop )                                               \
33      : (*check[type])((OP*)op))
34 #else
35 #define CHECKOP(type,op) (*check[type])(op)
36 #endif /* USE_OP_MASK */
37
38 static I32 list_assignment _((OP *op));
39 static OP *bad_type _((I32 n, char *t, char *name, OP *kid));
40 static OP *modkids _((OP *op, I32 type));
41 static OP *no_fh_allowed _((OP *op));
42 static OP *scalarboolean _((OP *op));
43 static OP *too_few_arguments _((OP *op, char* name));
44 static OP *too_many_arguments _((OP *op, char* name));
45 static void null _((OP* op));
46 static PADOFFSET pad_findlex _((char* name, PADOFFSET newoff, U32 seq,
47         CV* startcv, I32 cx_ix));
48
49 static char*
50 CvNAME(cv)
51 CV* cv;
52 {
53     SV* tmpsv = sv_newmortal();
54     gv_efullname3(tmpsv, CvGV(cv), Nullch);
55     return SvPV(tmpsv,na);
56 }
57
58 static OP *
59 no_fh_allowed(op)
60 OP *op;
61 {
62     sprintf(tokenbuf,"Missing comma after first argument to %s function",
63         op_desc[op->op_type]);
64     yyerror(tokenbuf);
65     return op;
66 }
67
68 static OP *
69 too_few_arguments(op, name)
70 OP* op;
71 char* name;
72 {
73     sprintf(tokenbuf,"Not enough arguments for %s", name);
74     yyerror(tokenbuf);
75     return op;
76 }
77
78 static OP *
79 too_many_arguments(op, name)
80 OP *op;
81 char* name;
82 {
83     sprintf(tokenbuf,"Too many arguments for %s", name);
84     yyerror(tokenbuf);
85     return op;
86 }
87
88 static OP *
89 bad_type(n, t, name, kid)
90 I32 n;
91 char *t;
92 char *name;
93 OP *kid;
94 {
95     sprintf(tokenbuf, "Type of arg %d to %s must be %s (not %s)",
96         (int) n, name, t, op_desc[kid->op_type]);
97     yyerror(tokenbuf);
98     return op;
99 }
100
101 void
102 assertref(op)
103 OP *op;
104 {
105     int type = op->op_type;
106     if (type != OP_AELEM && type != OP_HELEM) {
107         sprintf(tokenbuf, "Can't use subscript on %s", op_desc[type]);
108         yyerror(tokenbuf);
109         if (type == OP_ENTERSUB || type == OP_RV2HV || type == OP_PADHV)
110             warn("(Did you mean $ or @ instead of %c?)\n",
111                  type == OP_ENTERSUB ? '&' : '%');
112     }
113 }
114
115 /* "register" allocation */
116
117 PADOFFSET
118 pad_allocmy(name)
119 char *name;
120 {
121     PADOFFSET off;
122     SV *sv;
123
124     if (!(isALPHA(name[1]) || name[1] == '_' && (int)strlen(name) > 2)) {
125         if (!isPRINT(name[1]))
126             sprintf(name+1, "^%c", toCTRL(name[1])); /* XXX tokenbuf, really */
127         croak("Can't use global %s in \"my\"",name);
128     }
129     if (AvFILL(comppad_name) >= 0) {
130         SV **svp = AvARRAY(comppad_name);
131         for (off = AvFILL(comppad_name); off > comppad_name_floor; off--) {
132             if ((sv = svp[off])
133                 && sv != &sv_undef
134                 && SvIVX(sv) == 999999999       /* var is in open scope */
135                 && strEQ(name, SvPVX(sv)))
136             {
137                 warn("\"my\" variable %s masks earlier declaration in same scope", name);
138                 break;
139             }
140         }
141     }
142     off = pad_alloc(OP_PADSV, SVs_PADMY);
143     sv = NEWSV(1102,0);
144     sv_upgrade(sv, SVt_PVNV);
145     sv_setpv(sv, name);
146     av_store(comppad_name, off, sv);
147     SvNVX(sv) = (double)999999999;
148     SvIVX(sv) = 0;                      /* Not yet introduced--see newSTATEOP */
149     if (!min_intro_pending)
150         min_intro_pending = off;
151     max_intro_pending = off;
152     if (*name == '@')
153         av_store(comppad, off, (SV*)newAV());
154     else if (*name == '%')
155         av_store(comppad, off, (SV*)newHV());
156     SvPADMY_on(curpad[off]);
157     return off;
158 }
159
160 static PADOFFSET
161 #ifndef CAN_PROTOTYPE
162 pad_findlex(name, newoff, seq, startcv, cx_ix)
163 char *name;
164 PADOFFSET newoff;
165 U32 seq;
166 CV* startcv;
167 I32 cx_ix;
168 #else
169 pad_findlex(char *name, PADOFFSET newoff, U32 seq, CV* startcv, I32 cx_ix)
170 #endif
171 {
172     CV *cv;
173     I32 off;
174     SV *sv;
175     register I32 i;
176     register CONTEXT *cx;
177     int saweval;
178
179     for (cv = startcv; cv; cv = CvOUTSIDE(cv)) {
180         AV *curlist = CvPADLIST(cv);
181         SV **svp = av_fetch(curlist, 0, FALSE);
182         AV *curname;
183
184         if (!svp || *svp == &sv_undef)
185             continue;
186         curname = (AV*)*svp;
187         svp = AvARRAY(curname);
188         for (off = AvFILL(curname); off > 0; off--) {
189             if ((sv = svp[off]) &&
190                 sv != &sv_undef &&
191                 !SvFAKE(sv) &&
192                 seq <= SvIVX(sv) &&
193                 seq > I_32(SvNVX(sv)) &&
194                 strEQ(SvPVX(sv), name))
195             {
196                 I32 depth;
197                 AV *oldpad;
198                 SV *oldsv;
199
200                 depth = CvDEPTH(cv);
201                 if (!depth) {
202                     if (newoff)
203                         return 0; /* don't clone from inactive stack frame */
204                     depth = 1;
205                 }
206                 oldpad = (AV*)*av_fetch(curlist, depth, FALSE);
207                 oldsv = *av_fetch(oldpad, off, TRUE);
208                 if (!newoff) {          /* Not a mere clone operation. */
209                     SV *sv = NEWSV(1103,0);
210                     newoff = pad_alloc(OP_PADSV, SVs_PADMY);
211                     sv_upgrade(sv, SVt_PVNV);
212                     sv_setpv(sv, name);
213                     av_store(comppad_name, newoff, sv);
214                     SvNVX(sv) = (double)curcop->cop_seq;
215                     SvIVX(sv) = 999999999;      /* A ref, intro immediately */
216                     SvFAKE_on(sv);              /* A ref, not a real var */
217                     if (CvANON(compcv) || SvTYPE(compcv) == SVt_PVFM) {
218                         /* "It's closures all the way down." */
219                         CvCLONE_on(compcv);
220                         if (cv != startcv) {
221                             CV *bcv;
222                             for (bcv = startcv;
223                                  bcv && bcv != cv && !CvCLONE(bcv);
224                                  bcv = CvOUTSIDE(bcv)) {
225                                 if (CvANON(bcv))
226                                     CvCLONE_on(bcv);
227                                 else {
228                                     if (dowarn && !CvUNIQUE(cv))
229                                         warn(
230                                           "Variable \"%s\" may be unavailable",
231                                              name);
232                                     break;
233                                 }
234                             }
235                         }
236                     }
237                     else if (!CvUNIQUE(compcv)) {
238                         if (dowarn && !CvUNIQUE(cv))
239                             warn("Variable \"%s\" will not stay shared", name);
240                     }
241                 }
242                 av_store(comppad, newoff, SvREFCNT_inc(oldsv));
243                 return newoff;
244             }
245         }
246     }
247
248     /* Nothing in current lexical context--try eval's context, if any.
249      * This is necessary to let the perldb get at lexically scoped variables.
250      * XXX This will also probably interact badly with eval tree caching.
251      */
252
253     saweval = 0;
254     for (i = cx_ix; i >= 0; i--) {
255         cx = &cxstack[i];
256         switch (cx->cx_type) {
257         default:
258             if (i == 0 && saweval) {
259                 seq = cxstack[saweval].blk_oldcop->cop_seq;
260                 return pad_findlex(name, newoff, seq, main_cv, 0);
261             }
262             break;
263         case CXt_EVAL:
264             switch (cx->blk_eval.old_op_type) {
265             case OP_ENTEREVAL:
266                 saweval = i;
267                 break;
268             case OP_REQUIRE:
269                 /* require must have its own scope */
270                 return 0;
271             }
272             break;
273         case CXt_SUB:
274             if (!saweval)
275                 return 0;
276             cv = cx->blk_sub.cv;
277             if (debstash && CvSTASH(cv) == debstash) {  /* ignore DB'* scope */
278                 saweval = i;    /* so we know where we were called from */
279                 continue;
280             }
281             seq = cxstack[saweval].blk_oldcop->cop_seq;
282             return pad_findlex(name, newoff, seq, cv, i-1);
283         }
284     }
285
286     return 0;
287 }
288
289 PADOFFSET
290 pad_findmy(name)
291 char *name;
292 {
293     I32 off;
294     SV *sv;
295     SV **svp = AvARRAY(comppad_name);
296     U32 seq = cop_seqmax;
297
298     /* The one we're looking for is probably just before comppad_name_fill. */
299     for (off = AvFILL(comppad_name); off > 0; off--) {
300         if ((sv = svp[off]) &&
301             sv != &sv_undef &&
302             seq <= SvIVX(sv) &&
303             seq > I_32(SvNVX(sv)) &&
304             strEQ(SvPVX(sv), name))
305         {
306             return (PADOFFSET)off;
307         }
308     }
309
310     /* See if it's in a nested scope */
311     off = pad_findlex(name, 0, seq, CvOUTSIDE(compcv), cxstack_ix);
312     if (off)
313         return off;
314
315     return 0;
316 }
317
318 void
319 pad_leavemy(fill)
320 I32 fill;
321 {
322     I32 off;
323     SV **svp = AvARRAY(comppad_name);
324     SV *sv;
325     if (min_intro_pending && fill < min_intro_pending) {
326         for (off = max_intro_pending; off >= min_intro_pending; off--) {
327             if ((sv = svp[off]) && sv != &sv_undef)
328                 warn("%s never introduced", SvPVX(sv));
329         }
330     }
331     /* "Deintroduce" my variables that are leaving with this scope. */
332     for (off = AvFILL(comppad_name); off > fill; off--) {
333         if ((sv = svp[off]) && sv != &sv_undef && SvIVX(sv) == 999999999)
334             SvIVX(sv) = cop_seqmax;
335     }
336 }
337
338 PADOFFSET
339 pad_alloc(optype,tmptype)       
340 I32 optype;
341 U32 tmptype;
342 {
343     SV *sv;
344     I32 retval;
345
346     if (AvARRAY(comppad) != curpad)
347         croak("panic: pad_alloc");
348     if (pad_reset_pending)
349         pad_reset();
350     if (tmptype & SVs_PADMY) {
351         do {
352             sv = *av_fetch(comppad, AvFILL(comppad) + 1, TRUE);
353         } while (SvPADBUSY(sv));                /* need a fresh one */
354         retval = AvFILL(comppad);
355     }
356     else {
357         SV **names = AvARRAY(comppad_name);
358         SSize_t names_fill = AvFILL(comppad_name);
359         for (;;) {
360             /*
361              * "foreach" index vars temporarily become aliases to non-"my"
362              * values.  Thus we must skip, not just pad values that are
363              * marked as current pad values, but also those with names.
364              */
365             if (++padix <= names_fill &&
366                    (sv = names[padix]) && sv != &sv_undef)
367                 continue;
368             sv = *av_fetch(comppad, padix, TRUE);
369             if (!(SvFLAGS(sv) & (SVs_PADTMP|SVs_PADMY)))
370                 break;
371         }
372         retval = padix;
373     }
374     SvFLAGS(sv) |= tmptype;
375     curpad = AvARRAY(comppad);
376     DEBUG_X(PerlIO_printf(Perl_debug_log, "Pad alloc %ld for %s\n", (long) retval, op_name[optype]));
377     return (PADOFFSET)retval;
378 }
379
380 SV *
381 #ifndef CAN_PROTOTYPE
382 pad_sv(po)
383 PADOFFSET po;
384 #else
385 pad_sv(PADOFFSET po)
386 #endif /* CAN_PROTOTYPE */
387 {
388     if (!po)
389         croak("panic: pad_sv po");
390     DEBUG_X(PerlIO_printf(Perl_debug_log, "Pad sv %d\n", po));
391     return curpad[po];          /* eventually we'll turn this into a macro */
392 }
393
394 void
395 #ifndef CAN_PROTOTYPE
396 pad_free(po)
397 PADOFFSET po;
398 #else
399 pad_free(PADOFFSET po)
400 #endif /* CAN_PROTOTYPE */
401 {
402     if (!curpad)
403         return;
404     if (AvARRAY(comppad) != curpad)
405         croak("panic: pad_free curpad");
406     if (!po)
407         croak("panic: pad_free po");
408     DEBUG_X(PerlIO_printf(Perl_debug_log, "Pad free %d\n", po));
409     if (curpad[po] && !SvIMMORTAL(curpad[po]))
410         SvPADTMP_off(curpad[po]);
411     if ((I32)po < padix)
412         padix = po - 1;
413 }
414
415 void
416 #ifndef CAN_PROTOTYPE
417 pad_swipe(po)
418 PADOFFSET po;
419 #else
420 pad_swipe(PADOFFSET po)
421 #endif /* CAN_PROTOTYPE */
422 {
423     if (AvARRAY(comppad) != curpad)
424         croak("panic: pad_swipe curpad");
425     if (!po)
426         croak("panic: pad_swipe po");
427     DEBUG_X(PerlIO_printf(Perl_debug_log, "Pad swipe %d\n", po));
428     SvPADTMP_off(curpad[po]);
429     curpad[po] = NEWSV(1107,0);
430     SvPADTMP_on(curpad[po]);
431     if ((I32)po < padix)
432         padix = po - 1;
433 }
434
435 void
436 pad_reset()
437 {
438     register I32 po;
439
440     if (AvARRAY(comppad) != curpad)
441         croak("panic: pad_reset curpad");
442     DEBUG_X(PerlIO_printf(Perl_debug_log, "Pad reset\n"));
443     if (!tainting) {    /* Can't mix tainted and non-tainted temporaries. */
444         for (po = AvMAX(comppad); po > padix_floor; po--) {
445             if (curpad[po] && !SvIMMORTAL(curpad[po]))
446                 SvPADTMP_off(curpad[po]);
447         }
448         padix = padix_floor;
449     }
450     pad_reset_pending = FALSE;
451 }
452
453 /* Destructor */
454
455 void
456 op_free(op)
457 OP *op;
458 {
459     register OP *kid, *nextkid;
460
461     if (!op || op->op_seq == (U16)-1)
462         return;
463
464     if (op->op_flags & OPf_KIDS) {
465         for (kid = cUNOP->op_first; kid; kid = nextkid) {
466             nextkid = kid->op_sibling; /* Get before next freeing kid */
467             op_free(kid);
468         }
469     }
470
471     switch (op->op_type) {
472     case OP_NULL:
473         op->op_targ = 0;        /* Was holding old type, if any. */
474         break;
475     case OP_ENTEREVAL:
476         op->op_targ = 0;        /* Was holding hints. */
477         break;
478     default:
479         if (!(op->op_flags & OPf_REF) || (check[op->op_type] != ck_ftst))
480             break;
481         /* FALL THROUGH */
482     case OP_GVSV:
483     case OP_GV:
484     case OP_AELEMFAST:
485         SvREFCNT_dec(cGVOP->op_gv);
486         break;
487     case OP_NEXTSTATE:
488     case OP_DBSTATE:
489         Safefree(cCOP->cop_label);
490         SvREFCNT_dec(cCOP->cop_filegv);
491         break;
492     case OP_CONST:
493         SvREFCNT_dec(cSVOP->op_sv);
494         break;
495     case OP_GOTO:
496     case OP_NEXT:
497     case OP_LAST:
498     case OP_REDO:
499         if (op->op_flags & (OPf_SPECIAL|OPf_STACKED|OPf_KIDS))
500             break;
501         /* FALL THROUGH */
502     case OP_TRANS:
503         Safefree(cPVOP->op_pv);
504         break;
505     case OP_SUBST:
506         op_free(cPMOP->op_pmreplroot);
507         /* FALL THROUGH */
508     case OP_PUSHRE:
509     case OP_MATCH:
510         pregfree(cPMOP->op_pmregexp);
511         SvREFCNT_dec(cPMOP->op_pmshort);
512         break;
513     }
514
515     if (op->op_targ > 0)
516         pad_free(op->op_targ);
517
518     Safefree(op);
519 }
520
521 static void
522 null(op)
523 OP* op;
524 {
525     if (op->op_type != OP_NULL && op->op_targ > 0)
526         pad_free(op->op_targ);
527     op->op_targ = op->op_type;
528     op->op_type = OP_NULL;
529     op->op_ppaddr = ppaddr[OP_NULL];
530 }
531
532 /* Contextualizers */
533
534 #define LINKLIST(o) ((o)->op_next ? (o)->op_next : linklist((OP*)o))
535
536 OP *
537 linklist(op)
538 OP *op;
539 {
540     register OP *kid;
541
542     if (op->op_next)
543         return op->op_next;
544
545     /* establish postfix order */
546     if (cUNOP->op_first) {
547         op->op_next = LINKLIST(cUNOP->op_first);
548         for (kid = cUNOP->op_first; kid; kid = kid->op_sibling) {
549             if (kid->op_sibling)
550                 kid->op_next = LINKLIST(kid->op_sibling);
551             else
552                 kid->op_next = op;
553         }
554     }
555     else
556         op->op_next = op;
557
558     return op->op_next;
559 }
560
561 OP *
562 scalarkids(op)
563 OP *op;
564 {
565     OP *kid;
566     if (op && op->op_flags & OPf_KIDS) {
567         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
568             scalar(kid);
569     }
570     return op;
571 }
572
573 static OP *
574 scalarboolean(op)
575 OP *op;
576 {
577     if (dowarn &&
578         op->op_type == OP_SASSIGN && cBINOP->op_first->op_type == OP_CONST) {
579         line_t oldline = curcop->cop_line;
580
581         if (copline != NOLINE)
582             curcop->cop_line = copline;
583         warn("Found = in conditional, should be ==");
584         curcop->cop_line = oldline;
585     }
586     return scalar(op);
587 }
588
589 OP *
590 scalar(op)
591 OP *op;
592 {
593     OP *kid;
594
595     /* assumes no premature commitment */
596     if (!op || (op->op_flags & OPf_KNOW) || op->op_type == OP_RETURN
597          || error_count)
598         return op;
599
600     op->op_flags &= ~OPf_LIST;
601     op->op_flags |= OPf_KNOW;
602
603     switch (op->op_type) {
604     case OP_REPEAT:
605         if (op->op_private & OPpREPEAT_DOLIST)
606             null(((LISTOP*)cBINOP->op_first)->op_first);
607         scalar(cBINOP->op_first);
608         break;
609     case OP_OR:
610     case OP_AND:
611     case OP_COND_EXPR:
612         for (kid = cUNOP->op_first->op_sibling; kid; kid = kid->op_sibling)
613             scalar(kid);
614         break;
615     case OP_SPLIT:
616         if ((kid = ((LISTOP*)op)->op_first) && kid->op_type == OP_PUSHRE) {
617             if (!kPMOP->op_pmreplroot)
618                 deprecate("implicit split to @_");
619         }
620         /* FALL THROUGH */
621     case OP_MATCH:
622     case OP_SUBST:
623     case OP_NULL:
624     default:
625         if (op->op_flags & OPf_KIDS) {
626             for (kid = cUNOP->op_first; kid; kid = kid->op_sibling)
627                 scalar(kid);
628         }
629         break;
630     case OP_LEAVE:
631     case OP_LEAVETRY:
632         scalar(cLISTOP->op_first);
633         /* FALL THROUGH */
634     case OP_SCOPE:
635     case OP_LINESEQ:
636     case OP_LIST:
637         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling) {
638             if (kid->op_sibling)
639                 scalarvoid(kid);
640             else
641                 scalar(kid);
642         }
643         curcop = &compiling;
644         break;
645     }
646     return op;
647 }
648
649 OP *
650 scalarvoid(op)
651 OP *op;
652 {
653     OP *kid;
654     char* useless = 0;
655     SV* sv;
656
657     if (!op || error_count)
658         return op;
659     if (op->op_flags & OPf_LIST)
660         return op;
661
662     op->op_flags |= OPf_KNOW;
663
664     switch (op->op_type) {
665     default:
666         if (!(opargs[op->op_type] & OA_FOLDCONST))
667             break;
668         /* FALL THROUGH */
669     case OP_REPEAT:
670         if (op->op_flags & OPf_STACKED)
671             break;
672         /* FALL THROUGH */
673     case OP_GVSV:
674     case OP_WANTARRAY:
675     case OP_GV:
676     case OP_PADSV:
677     case OP_PADAV:
678     case OP_PADHV:
679     case OP_PADANY:
680     case OP_AV2ARYLEN:
681     case OP_REF:
682     case OP_REFGEN:
683     case OP_SREFGEN:
684     case OP_DEFINED:
685     case OP_HEX:
686     case OP_OCT:
687     case OP_LENGTH:
688     case OP_SUBSTR:
689     case OP_VEC:
690     case OP_INDEX:
691     case OP_RINDEX:
692     case OP_SPRINTF:
693     case OP_AELEM:
694     case OP_AELEMFAST:
695     case OP_ASLICE:
696     case OP_VALUES:
697     case OP_KEYS:
698     case OP_HELEM:
699     case OP_HSLICE:
700     case OP_UNPACK:
701     case OP_PACK:
702     case OP_JOIN:
703     case OP_LSLICE:
704     case OP_ANONLIST:
705     case OP_ANONHASH:
706     case OP_SORT:
707     case OP_REVERSE:
708     case OP_RANGE:
709     case OP_FLIP:
710     case OP_FLOP:
711     case OP_CALLER:
712     case OP_FILENO:
713     case OP_EOF:
714     case OP_TELL:
715     case OP_GETSOCKNAME:
716     case OP_GETPEERNAME:
717     case OP_READLINK:
718     case OP_TELLDIR:
719     case OP_GETPPID:
720     case OP_GETPGRP:
721     case OP_GETPRIORITY:
722     case OP_TIME:
723     case OP_TMS:
724     case OP_LOCALTIME:
725     case OP_GMTIME:
726     case OP_GHBYNAME:
727     case OP_GHBYADDR:
728     case OP_GHOSTENT:
729     case OP_GNBYNAME:
730     case OP_GNBYADDR:
731     case OP_GNETENT:
732     case OP_GPBYNAME:
733     case OP_GPBYNUMBER:
734     case OP_GPROTOENT:
735     case OP_GSBYNAME:
736     case OP_GSBYPORT:
737     case OP_GSERVENT:
738     case OP_GPWNAM:
739     case OP_GPWUID:
740     case OP_GGRNAM:
741     case OP_GGRGID:
742     case OP_GETLOGIN:
743         if (!(op->op_private & OPpLVAL_INTRO))
744             useless = op_desc[op->op_type];
745         break;
746
747     case OP_RV2GV:
748     case OP_RV2SV:
749     case OP_RV2AV:
750     case OP_RV2HV:
751         if (!(op->op_private & OPpLVAL_INTRO) &&
752                 (!op->op_sibling || op->op_sibling->op_type != OP_READLINE))
753             useless = "a variable";
754         break;
755
756     case OP_NEXTSTATE:
757     case OP_DBSTATE:
758         curcop = ((COP*)op);            /* for warning below */
759         break;
760
761     case OP_CONST:
762         sv = cSVOP->op_sv;
763         if (dowarn) {
764             useless = "a constant";
765             if (SvNIOK(sv) && (SvNV(sv) == 0.0 || SvNV(sv) == 1.0))
766                 useless = 0;
767             else if (SvPOK(sv)) {
768                 if (strnEQ(SvPVX(sv), "di", 2) ||
769                     strnEQ(SvPVX(sv), "ds", 2) ||
770                     strnEQ(SvPVX(sv), "ig", 2))
771                         useless = 0;
772             }
773         }
774         null(op);               /* don't execute a constant */
775         SvREFCNT_dec(sv);       /* don't even remember it */
776         break;
777
778     case OP_POSTINC:
779         op->op_type = OP_PREINC;                /* pre-increment is faster */
780         op->op_ppaddr = ppaddr[OP_PREINC];
781         break;
782
783     case OP_POSTDEC:
784         op->op_type = OP_PREDEC;                /* pre-decrement is faster */
785         op->op_ppaddr = ppaddr[OP_PREDEC];
786         break;
787
788     case OP_OR:
789     case OP_AND:
790     case OP_COND_EXPR:
791         for (kid = cUNOP->op_first->op_sibling; kid; kid = kid->op_sibling)
792             scalarvoid(kid);
793         break;
794     case OP_NULL:
795         if (op->op_targ == OP_NEXTSTATE || op->op_targ == OP_DBSTATE)
796             curcop = ((COP*)op);                /* for warning below */
797         if (op->op_flags & OPf_STACKED)
798             break;
799     case OP_ENTERTRY:
800     case OP_ENTER:
801     case OP_SCALAR:
802         if (!(op->op_flags & OPf_KIDS))
803             break;
804     case OP_SCOPE:
805     case OP_LEAVE:
806     case OP_LEAVETRY:
807     case OP_LEAVELOOP:
808         op->op_private |= OPpLEAVE_VOID;
809     case OP_LINESEQ:
810     case OP_LIST:
811         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
812             scalarvoid(kid);
813         break;
814     case OP_SPLIT:
815         if ((kid = ((LISTOP*)op)->op_first) && kid->op_type == OP_PUSHRE) {
816             if (!kPMOP->op_pmreplroot)
817                 deprecate("implicit split to @_");
818         }
819         break;
820     case OP_DELETE:
821         op->op_private |= OPpLEAVE_VOID;
822         break;
823     }
824     if (useless && dowarn)
825         warn("Useless use of %s in void context", useless);
826     return op;
827 }
828
829 OP *
830 listkids(op)
831 OP *op;
832 {
833     OP *kid;
834     if (op && op->op_flags & OPf_KIDS) {
835         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
836             list(kid);
837     }
838     return op;
839 }
840
841 OP *
842 list(op)
843 OP *op;
844 {
845     OP *kid;
846
847     /* assumes no premature commitment */
848     if (!op || (op->op_flags & OPf_KNOW) || op->op_type == OP_RETURN
849          || error_count)
850         return op;
851
852     op->op_flags |= (OPf_KNOW | OPf_LIST);
853
854     switch (op->op_type) {
855     case OP_FLOP:
856     case OP_REPEAT:
857         list(cBINOP->op_first);
858         break;
859     case OP_OR:
860     case OP_AND:
861     case OP_COND_EXPR:
862         for (kid = cUNOP->op_first->op_sibling; kid; kid = kid->op_sibling)
863             list(kid);
864         break;
865     default:
866     case OP_MATCH:
867     case OP_SUBST:
868     case OP_NULL:
869         if (!(op->op_flags & OPf_KIDS))
870             break;
871         if (!op->op_next && cUNOP->op_first->op_type == OP_FLOP) {
872             list(cBINOP->op_first);
873             return gen_constant_list(op);
874         }
875     case OP_LIST:
876         listkids(op);
877         break;
878     case OP_LEAVE:
879     case OP_LEAVETRY:
880         list(cLISTOP->op_first);
881         /* FALL THROUGH */
882     case OP_SCOPE:
883     case OP_LINESEQ:
884         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling) {
885             if (kid->op_sibling)
886                 scalarvoid(kid);
887             else
888                 list(kid);
889         }
890         curcop = &compiling;
891         break;
892     }
893     return op;
894 }
895
896 OP *
897 scalarseq(op)
898 OP *op;
899 {
900     OP *kid;
901
902     if (op) {
903         if (op->op_type == OP_LINESEQ ||
904              op->op_type == OP_SCOPE ||
905              op->op_type == OP_LEAVE ||
906              op->op_type == OP_LEAVETRY)
907         {
908             for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling) {
909                 if (kid->op_sibling) {
910                     scalarvoid(kid);
911                 }
912             }
913             curcop = &compiling;
914         }
915         op->op_flags &= ~OPf_PARENS;
916         if (hints & HINT_BLOCK_SCOPE)
917             op->op_flags |= OPf_PARENS;
918     }
919     else
920         op = newOP(OP_STUB, 0);
921     return op;
922 }
923
924 static OP *
925 modkids(op, type)
926 OP *op;
927 I32 type;
928 {
929     OP *kid;
930     if (op && op->op_flags & OPf_KIDS) {
931         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
932             mod(kid, type);
933     }
934     return op;
935 }
936
937 static I32 modcount;
938
939 OP *
940 mod(op, type)
941 OP *op;
942 I32 type;
943 {
944     OP *kid;
945     SV *sv;
946
947     if (!op || error_count)
948         return op;
949
950     switch (op->op_type) {
951     case OP_CONST:
952         if (!(op->op_private & (OPpCONST_ARYBASE)))
953             goto nomod;
954         if (eval_start && eval_start->op_type == OP_CONST) {
955             compiling.cop_arybase = (I32)SvIV(((SVOP*)eval_start)->op_sv);
956             eval_start = 0;
957         }
958         else if (!type) {
959             SAVEI32(compiling.cop_arybase);
960             compiling.cop_arybase = 0;
961         }
962         else if (type == OP_REFGEN)
963             goto nomod;
964         else
965             croak("That use of $[ is unsupported");
966         break;
967     case OP_STUB:
968         if (op->op_flags & OPf_PARENS)
969             break;
970         goto nomod;
971     case OP_ENTERSUB:
972         if ((type == OP_UNDEF || type == OP_REFGEN) &&
973             !(op->op_flags & OPf_STACKED)) {
974             op->op_type = OP_RV2CV;             /* entersub => rv2cv */
975             op->op_ppaddr = ppaddr[OP_RV2CV];
976             assert(cUNOP->op_first->op_type == OP_NULL);
977             null(((LISTOP*)cUNOP->op_first)->op_first); /* disable pushmark */
978             break;
979         }
980         /* FALL THROUGH */
981     default:
982       nomod:
983         /* grep, foreach, subcalls, refgen */
984         if (type == OP_GREPSTART || type == OP_ENTERSUB || type == OP_REFGEN)
985             break;
986         sprintf(tokenbuf, "Can't modify %s in %s",
987             op_desc[op->op_type],
988             type ? op_desc[type] : "local");
989         yyerror(tokenbuf);
990         return op;
991
992     case OP_PREINC:
993     case OP_PREDEC:
994     case OP_POW:
995     case OP_MULTIPLY:
996     case OP_DIVIDE:
997     case OP_MODULO:
998     case OP_REPEAT:
999     case OP_ADD:
1000     case OP_SUBTRACT:
1001     case OP_CONCAT:
1002     case OP_LEFT_SHIFT:
1003     case OP_RIGHT_SHIFT:
1004     case OP_BIT_AND:
1005     case OP_BIT_XOR:
1006     case OP_BIT_OR:
1007     case OP_I_MULTIPLY:
1008     case OP_I_DIVIDE:
1009     case OP_I_MODULO:
1010     case OP_I_ADD:
1011     case OP_I_SUBTRACT:
1012         if (!(op->op_flags & OPf_STACKED))
1013             goto nomod;
1014         modcount++;
1015         break;
1016         
1017     case OP_COND_EXPR:
1018         for (kid = cUNOP->op_first->op_sibling; kid; kid = kid->op_sibling)
1019             mod(kid, type);
1020         break;
1021
1022     case OP_RV2AV:
1023     case OP_RV2HV:
1024         if (type == OP_REFGEN && op->op_flags & OPf_PARENS) {
1025             modcount = 10000;
1026             return op;          /* Treat \(@foo) like ordinary list. */
1027         }
1028         /* FALL THROUGH */
1029     case OP_RV2GV:
1030         ref(cUNOP->op_first, op->op_type);
1031         /* FALL THROUGH */
1032     case OP_AASSIGN:
1033     case OP_ASLICE:
1034     case OP_HSLICE:
1035     case OP_NEXTSTATE:
1036     case OP_DBSTATE:
1037     case OP_REFGEN:
1038     case OP_CHOMP:
1039         modcount = 10000;
1040         break;
1041     case OP_RV2SV:
1042         if (!type && cUNOP->op_first->op_type != OP_GV)
1043             croak("Can't localize a reference");
1044         ref(cUNOP->op_first, op->op_type); 
1045         /* FALL THROUGH */
1046     case OP_UNDEF:
1047     case OP_GV:
1048     case OP_AV2ARYLEN:
1049     case OP_SASSIGN:
1050     case OP_AELEMFAST:
1051         modcount++;
1052         break;
1053
1054     case OP_PADAV:
1055     case OP_PADHV:
1056         modcount = 10000;
1057         if (type == OP_REFGEN && op->op_flags & OPf_PARENS)
1058             return op;          /* Treat \(@foo) like ordinary list. */
1059         /* FALL THROUGH */
1060     case OP_PADSV:
1061         modcount++;
1062         if (!type)
1063             croak("Can't localize lexical variable %s",
1064                 SvPV(*av_fetch(comppad_name, op->op_targ, 4), na));
1065         break;
1066
1067     case OP_PUSHMARK:
1068         break;
1069         
1070     case OP_KEYS:
1071         if (type != OP_SASSIGN)
1072             goto nomod;
1073         /* FALL THROUGH */
1074     case OP_POS:
1075     case OP_VEC:
1076     case OP_SUBSTR:
1077         pad_free(op->op_targ);
1078         op->op_targ = pad_alloc(op->op_type, SVs_PADMY);
1079         assert(SvTYPE(PAD_SV(op->op_targ)) == SVt_NULL);
1080         if (op->op_flags & OPf_KIDS)
1081             mod(cBINOP->op_first->op_sibling, type);
1082         break;
1083
1084     case OP_AELEM:
1085     case OP_HELEM:
1086         ref(cBINOP->op_first, op->op_type);
1087         modcount++;
1088         break;
1089
1090     case OP_SCOPE:
1091     case OP_LEAVE:
1092     case OP_ENTER:
1093         if (op->op_flags & OPf_KIDS)
1094             mod(cLISTOP->op_last, type);
1095         break;
1096
1097     case OP_NULL:
1098         if (!(op->op_flags & OPf_KIDS))
1099             break;
1100         if (op->op_targ != OP_LIST) {
1101             mod(cBINOP->op_first, type);
1102             break;
1103         }
1104         /* FALL THROUGH */
1105     case OP_LIST:
1106         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
1107             mod(kid, type);
1108         break;
1109     }
1110     op->op_flags |= OPf_MOD;
1111
1112     if (type == OP_AASSIGN || type == OP_SASSIGN)
1113         op->op_flags |= OPf_SPECIAL|OPf_REF;
1114     else if (!type) {
1115         op->op_private |= OPpLVAL_INTRO;
1116         op->op_flags &= ~OPf_SPECIAL;
1117     }
1118     else if (type != OP_GREPSTART && type != OP_ENTERSUB)
1119         op->op_flags |= OPf_REF;
1120     return op;
1121 }
1122
1123 OP *
1124 refkids(op, type)
1125 OP *op;
1126 I32 type;
1127 {
1128     OP *kid;
1129     if (op && op->op_flags & OPf_KIDS) {
1130         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
1131             ref(kid, type);
1132     }
1133     return op;
1134 }
1135
1136 OP *
1137 ref(op, type)
1138 OP *op;
1139 I32 type;
1140 {
1141     OP *kid;
1142
1143     if (!op || error_count)
1144         return op;
1145
1146     switch (op->op_type) {
1147     case OP_ENTERSUB:
1148         if ((type == OP_DEFINED) &&
1149             !(op->op_flags & OPf_STACKED)) {
1150             op->op_type = OP_RV2CV;             /* entersub => rv2cv */
1151             op->op_ppaddr = ppaddr[OP_RV2CV];
1152             assert(cUNOP->op_first->op_type == OP_NULL);
1153             null(((LISTOP*)cUNOP->op_first)->op_first); /* disable pushmark */
1154             op->op_flags |= OPf_SPECIAL;
1155         }
1156         break;
1157       
1158     case OP_COND_EXPR:
1159         for (kid = cUNOP->op_first->op_sibling; kid; kid = kid->op_sibling)
1160             ref(kid, type);
1161         break;
1162     case OP_RV2SV:
1163         ref(cUNOP->op_first, op->op_type);
1164         /* FALL THROUGH */
1165     case OP_PADSV:
1166         if (type == OP_RV2SV || type == OP_RV2AV || type == OP_RV2HV) {
1167             op->op_private |= (type == OP_RV2AV ? OPpDEREF_AV
1168                                : type == OP_RV2HV ? OPpDEREF_HV
1169                                : OPpDEREF_SV);
1170             op->op_flags |= OPf_MOD;
1171         }
1172         break;
1173       
1174     case OP_RV2AV:
1175     case OP_RV2HV:
1176         op->op_flags |= OPf_REF; 
1177         /* FALL THROUGH */
1178     case OP_RV2GV:
1179         ref(cUNOP->op_first, op->op_type);
1180         break;
1181
1182     case OP_PADAV:
1183     case OP_PADHV:
1184         op->op_flags |= OPf_REF; 
1185         break;
1186       
1187     case OP_SCALAR:
1188     case OP_NULL:
1189         if (!(op->op_flags & OPf_KIDS))
1190             break;
1191         ref(cBINOP->op_first, type);
1192         break;
1193     case OP_AELEM:
1194     case OP_HELEM:
1195         ref(cBINOP->op_first, op->op_type);
1196         if (type == OP_RV2SV || type == OP_RV2AV || type == OP_RV2HV) {
1197             op->op_private |= (type == OP_RV2AV ? OPpDEREF_AV
1198                                : type == OP_RV2HV ? OPpDEREF_HV
1199                                : OPpDEREF_SV);
1200             op->op_flags |= OPf_MOD;
1201         }
1202         break;
1203
1204     case OP_SCOPE:
1205     case OP_LEAVE:
1206     case OP_ENTER:
1207     case OP_LIST:
1208         if (!(op->op_flags & OPf_KIDS))
1209             break;
1210         ref(cLISTOP->op_last, type);
1211         break;
1212     default:
1213         break;
1214     }
1215     return scalar(op);
1216
1217 }
1218
1219 OP *
1220 my(op)
1221 OP *op;
1222 {
1223     OP *kid;
1224     I32 type;
1225
1226     if (!op || error_count)
1227         return op;
1228
1229     type = op->op_type;
1230     if (type == OP_LIST) {
1231         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
1232             my(kid);
1233     }
1234     else if (type != OP_PADSV &&
1235              type != OP_PADAV &&
1236              type != OP_PADHV &&
1237              type != OP_PUSHMARK)
1238     {
1239         sprintf(tokenbuf, "Can't declare %s in my", op_desc[op->op_type]);
1240         yyerror(tokenbuf);
1241         return op;
1242     }
1243     op->op_flags |= OPf_MOD;
1244     op->op_private |= OPpLVAL_INTRO;
1245     return op;
1246 }
1247
1248 OP *
1249 sawparens(o)
1250 OP *o;
1251 {
1252     if (o)
1253         o->op_flags |= OPf_PARENS;
1254     return o;
1255 }
1256
1257 OP *
1258 bind_match(type, left, right)
1259 I32 type;
1260 OP *left;
1261 OP *right;
1262 {
1263     OP *op;
1264
1265     if (right->op_type == OP_MATCH ||
1266         right->op_type == OP_SUBST ||
1267         right->op_type == OP_TRANS) {
1268         right->op_flags |= OPf_STACKED;
1269         if (right->op_type != OP_MATCH)
1270             left = mod(left, right->op_type);
1271         if (right->op_type == OP_TRANS)
1272             op = newBINOP(OP_NULL, OPf_STACKED, scalar(left), right);
1273         else
1274             op = prepend_elem(right->op_type, scalar(left), right);
1275         if (type == OP_NOT)
1276             return newUNOP(OP_NOT, 0, scalar(op));
1277         return op;
1278     }
1279     else
1280         return bind_match(type, left,
1281                 pmruntime(newPMOP(OP_MATCH, 0), right, Nullop));
1282 }
1283
1284 OP *
1285 invert(op)
1286 OP *op;
1287 {
1288     if (!op)
1289         return op;
1290     /* XXX need to optimize away NOT NOT here?  Or do we let optimizer do it? */
1291     return newUNOP(OP_NOT, OPf_SPECIAL, scalar(op));
1292 }
1293
1294 OP *
1295 scope(o)
1296 OP *o;
1297 {
1298     if (o) {
1299         if (o->op_flags & OPf_PARENS || perldb || tainting) {
1300             o = prepend_elem(OP_LINESEQ, newOP(OP_ENTER, 0), o);
1301             o->op_type = OP_LEAVE;
1302             o->op_ppaddr = ppaddr[OP_LEAVE];
1303         }
1304         else {
1305             if (o->op_type == OP_LINESEQ) {
1306                 OP *kid;
1307                 o->op_type = OP_SCOPE;
1308                 o->op_ppaddr = ppaddr[OP_SCOPE];
1309                 kid = ((LISTOP*)o)->op_first;
1310                 if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE){
1311                     SvREFCNT_dec(((COP*)kid)->cop_filegv);
1312                     null(kid);
1313                 }
1314             }
1315             else
1316                 o = newLISTOP(OP_SCOPE, 0, o, Nullop);
1317         }
1318     }
1319     return o;
1320 }
1321
1322 int
1323 block_start(full)
1324 int full;
1325 {
1326     int retval = savestack_ix;
1327     SAVEI32(comppad_name_floor);
1328     if (full) {
1329         if ((comppad_name_fill = AvFILL(comppad_name)) > 0)
1330             comppad_name_floor = comppad_name_fill;
1331         else
1332             comppad_name_floor = 0;
1333     }
1334     SAVEI32(min_intro_pending);
1335     SAVEI32(max_intro_pending);
1336     min_intro_pending = 0;
1337     SAVEI32(comppad_name_fill);
1338     SAVEI32(padix_floor);
1339     padix_floor = padix;
1340     pad_reset_pending = FALSE;
1341     SAVEI32(hints);
1342     hints &= ~HINT_BLOCK_SCOPE;
1343     return retval;
1344 }
1345
1346 OP*
1347 block_end(floor, seq)
1348 I32 floor;
1349 OP* seq;
1350 {
1351     int needblockscope = hints & HINT_BLOCK_SCOPE;
1352     OP* retval = scalarseq(seq);
1353     LEAVE_SCOPE(floor);
1354     pad_reset_pending = FALSE;
1355     if (needblockscope)
1356         hints |= HINT_BLOCK_SCOPE; /* propagate out */
1357     pad_leavemy(comppad_name_fill);
1358     cop_seqmax++;
1359     return retval;
1360 }
1361
1362 void
1363 newPROG(op)
1364 OP *op;
1365 {
1366     if (in_eval) {
1367         eval_root = newUNOP(OP_LEAVEEVAL, ((in_eval & 4) ? OPf_SPECIAL : 0), op);
1368         eval_start = linklist(eval_root);
1369         eval_root->op_next = 0;
1370         peep(eval_start);
1371     }
1372     else {
1373         if (!op)
1374             return;
1375         main_root = scope(sawparens(scalarvoid(op)));
1376         curcop = &compiling;
1377         main_start = LINKLIST(main_root);
1378         main_root->op_next = 0;
1379         peep(main_start);
1380         compcv = 0;
1381
1382         /* Register with debugger */
1383         if (perldb) {
1384             CV *cv = perl_get_cv("DB::postponed", FALSE);
1385             if (cv) {
1386                 dSP;
1387                 PUSHMARK(sp);
1388                 XPUSHs((SV*)compiling.cop_filegv);
1389                 PUTBACK;
1390                 perl_call_sv((SV*)cv, G_DISCARD);
1391             }
1392         }
1393     }
1394 }
1395
1396 OP *
1397 localize(o, lex)
1398 OP *o;
1399 I32 lex;
1400 {
1401     if (o->op_flags & OPf_PARENS)
1402         list(o);
1403     else {
1404         scalar(o);
1405         if (dowarn && bufptr > oldbufptr && bufptr[-1] == ',') {
1406             char *s;
1407             for (s = bufptr; *s && (isALNUM(*s) || strchr("@$%, ",*s)); s++) ;
1408             if (*s == ';' || *s == '=')
1409                 warn("Parens missing around \"%s\" list", lex ? "my" : "local");
1410         }
1411     }
1412     in_my = FALSE;
1413     if (lex)
1414         return my(o);
1415     else
1416         return mod(o, OP_NULL);         /* a bit kludgey */
1417 }
1418
1419 OP *
1420 jmaybe(o)
1421 OP *o;
1422 {
1423     if (o->op_type == OP_LIST) {
1424         o = convert(OP_JOIN, 0,
1425                 prepend_elem(OP_LIST,
1426                     newSVREF(newGVOP(OP_GV, 0, gv_fetchpv(";", TRUE, SVt_PV))),
1427                     o));
1428     }
1429     return o;
1430 }
1431
1432 OP *
1433 fold_constants(o)
1434 register OP *o;
1435 {
1436     register OP *curop;
1437     I32 type = o->op_type;
1438     SV *sv;
1439
1440     if (opargs[type] & OA_RETSCALAR)
1441         scalar(o);
1442     if (opargs[type] & OA_TARGET)
1443         o->op_targ = pad_alloc(type, SVs_PADTMP);
1444
1445     if ((opargs[type] & OA_OTHERINT) && (hints & HINT_INTEGER))
1446         o->op_ppaddr = ppaddr[type = ++(o->op_type)];
1447
1448     if (!(opargs[type] & OA_FOLDCONST))
1449         goto nope;
1450
1451     if (error_count)
1452         goto nope;              /* Don't try to run w/ errors */
1453
1454     for (curop = LINKLIST(o); curop != o; curop = LINKLIST(curop)) {
1455         if (curop->op_type != OP_CONST &&
1456                 curop->op_type != OP_LIST &&
1457                 curop->op_type != OP_SCALAR &&
1458                 curop->op_type != OP_NULL &&
1459                 curop->op_type != OP_PUSHMARK) {
1460             goto nope;
1461         }
1462     }
1463
1464     curop = LINKLIST(o);
1465     o->op_next = 0;
1466     op = curop;
1467     runops();
1468     sv = *(stack_sp--);
1469     if (o->op_targ && sv == PAD_SV(o->op_targ)) /* grab pad temp? */
1470         pad_swipe(o->op_targ);
1471     else if (SvTEMP(sv)) {                      /* grab mortal temp? */
1472         (void)SvREFCNT_inc(sv);
1473         SvTEMP_off(sv);
1474     }
1475     op_free(o);
1476     if (type == OP_RV2GV)
1477         return newGVOP(OP_GV, 0, (GV*)sv);
1478     else {
1479         if ((SvFLAGS(sv) & (SVf_IOK|SVf_NOK|SVf_POK)) == SVf_NOK) {
1480             IV iv = SvIV(sv);
1481             if ((double)iv == SvNV(sv)) {       /* can we smush double to int */
1482                 SvREFCNT_dec(sv);
1483                 sv = newSViv(iv);
1484             }
1485             else
1486                 SvIOK_off(sv);                  /* undo SvIV() damage */
1487         }
1488         return newSVOP(OP_CONST, 0, sv);
1489     }
1490     
1491   nope:
1492     if (!(opargs[type] & OA_OTHERINT))
1493         return o;
1494
1495     if (!(hints & HINT_INTEGER)) {
1496         if (type == OP_DIVIDE || !(o->op_flags & OPf_KIDS))
1497             return o;
1498
1499         for (curop = ((UNOP*)o)->op_first; curop; curop = curop->op_sibling) {
1500             if (curop->op_type == OP_CONST) {
1501                 if (SvIOK(((SVOP*)curop)->op_sv))
1502                     continue;
1503                 return o;
1504             }
1505             if (opargs[curop->op_type] & OA_RETINTEGER)
1506                 continue;
1507             return o;
1508         }
1509         o->op_ppaddr = ppaddr[++(o->op_type)];
1510     }
1511
1512     return o;
1513 }
1514
1515 OP *
1516 gen_constant_list(o)
1517 register OP *o;
1518 {
1519     register OP *curop;
1520     I32 oldtmps_floor = tmps_floor;
1521
1522     list(o);
1523     if (error_count)
1524         return o;               /* Don't attempt to run with errors */
1525
1526     op = curop = LINKLIST(o);
1527     o->op_next = 0;
1528     pp_pushmark();
1529     runops();
1530     op = curop;
1531     pp_anonlist();
1532     tmps_floor = oldtmps_floor;
1533
1534     o->op_type = OP_RV2AV;
1535     o->op_ppaddr = ppaddr[OP_RV2AV];
1536     curop = ((UNOP*)o)->op_first;
1537     ((UNOP*)o)->op_first = newSVOP(OP_CONST, 0, SvREFCNT_inc(*stack_sp--));
1538     op_free(curop);
1539     linklist(o);
1540     return list(o);
1541 }
1542
1543 OP *
1544 convert(type, flags, op)
1545 I32 type;
1546 I32 flags;
1547 OP* op;
1548 {
1549     OP *kid;
1550     OP *last = 0;
1551
1552     if (!op || op->op_type != OP_LIST)
1553         op = newLISTOP(OP_LIST, 0, op, Nullop);
1554     else
1555         op->op_flags &= ~(OPf_KNOW|OPf_LIST);
1556
1557     if (!(opargs[type] & OA_MARK))
1558         null(cLISTOP->op_first);
1559
1560     op->op_type = type;
1561     op->op_ppaddr = ppaddr[type];
1562     op->op_flags |= flags;
1563
1564     op = CHECKOP(type, op);
1565     if (op->op_type != type)
1566         return op;
1567
1568     if (cLISTOP->op_children < 7) {
1569         /* XXX do we really need to do this if we're done appending?? */
1570         for (kid = cLISTOP->op_first; kid; kid = kid->op_sibling)
1571             last = kid;
1572         cLISTOP->op_last = last;        /* in case check substituted last arg */
1573     }
1574
1575     return fold_constants(op);
1576 }
1577
1578 /* List constructors */
1579
1580 OP *
1581 append_elem(type, first, last)
1582 I32 type;
1583 OP* first;
1584 OP* last;
1585 {
1586     if (!first)
1587         return last;
1588
1589     if (!last)
1590         return first;
1591
1592     if (first->op_type != type || type==OP_LIST && first->op_flags & OPf_PARENS)
1593             return newLISTOP(type, 0, first, last);
1594
1595     if (first->op_flags & OPf_KIDS)
1596         ((LISTOP*)first)->op_last->op_sibling = last;
1597     else {
1598         first->op_flags |= OPf_KIDS;
1599         ((LISTOP*)first)->op_first = last;
1600     }
1601     ((LISTOP*)first)->op_last = last;
1602     ((LISTOP*)first)->op_children++;
1603     return first;
1604 }
1605
1606 OP *
1607 append_list(type, first, last)
1608 I32 type;
1609 LISTOP* first;
1610 LISTOP* last;
1611 {
1612     if (!first)
1613         return (OP*)last;
1614
1615     if (!last)
1616         return (OP*)first;
1617
1618     if (first->op_type != type)
1619         return prepend_elem(type, (OP*)first, (OP*)last);
1620
1621     if (last->op_type != type)
1622         return append_elem(type, (OP*)first, (OP*)last);
1623
1624     first->op_last->op_sibling = last->op_first;
1625     first->op_last = last->op_last;
1626     first->op_children += last->op_children;
1627     if (first->op_children)
1628         last->op_flags |= OPf_KIDS;
1629
1630     Safefree(last);
1631     return (OP*)first;
1632 }
1633
1634 OP *
1635 prepend_elem(type, first, last)
1636 I32 type;
1637 OP* first;
1638 OP* last;
1639 {
1640     if (!first)
1641         return last;
1642
1643     if (!last)
1644         return first;
1645
1646     if (last->op_type == type) {
1647         if (type == OP_LIST) {  /* already a PUSHMARK there */
1648             first->op_sibling = ((LISTOP*)last)->op_first->op_sibling;
1649             ((LISTOP*)last)->op_first->op_sibling = first;
1650         }
1651         else {
1652             if (!(last->op_flags & OPf_KIDS)) {
1653                 ((LISTOP*)last)->op_last = first;
1654                 last->op_flags |= OPf_KIDS;
1655             }
1656             first->op_sibling = ((LISTOP*)last)->op_first;
1657             ((LISTOP*)last)->op_first = first;
1658         }
1659         ((LISTOP*)last)->op_children++;
1660         return last;
1661     }
1662
1663     return newLISTOP(type, 0, first, last);
1664 }
1665
1666 /* Constructors */
1667
1668 OP *
1669 newNULLLIST()
1670 {
1671     return newOP(OP_STUB, 0);
1672 }
1673
1674 OP *
1675 force_list(op)
1676 OP* op;
1677 {
1678     if (!op || op->op_type != OP_LIST)
1679         op = newLISTOP(OP_LIST, 0, op, Nullop);
1680     null(op);
1681     return op;
1682 }
1683
1684 OP *
1685 newLISTOP(type, flags, first, last)
1686 I32 type;
1687 I32 flags;
1688 OP* first;
1689 OP* last;
1690 {
1691     LISTOP *listop;
1692
1693     Newz(1101, listop, 1, LISTOP);
1694
1695     listop->op_type = type;
1696     listop->op_ppaddr = ppaddr[type];
1697     listop->op_children = (first != 0) + (last != 0);
1698     listop->op_flags = flags;
1699
1700     if (!last && first)
1701         last = first;
1702     else if (!first && last)
1703         first = last;
1704     else if (first)
1705         first->op_sibling = last;
1706     listop->op_first = first;
1707     listop->op_last = last;
1708     if (type == OP_LIST) {
1709         OP* pushop;
1710         pushop = newOP(OP_PUSHMARK, 0);
1711         pushop->op_sibling = first;
1712         listop->op_first = pushop;
1713         listop->op_flags |= OPf_KIDS;
1714         if (!last)
1715             listop->op_last = pushop;
1716     }
1717     else if (listop->op_children)
1718         listop->op_flags |= OPf_KIDS;
1719
1720     return (OP*)listop;
1721 }
1722
1723 OP *
1724 newOP(type, flags)
1725 I32 type;
1726 I32 flags;
1727 {
1728     OP *op;
1729     Newz(1101, op, 1, OP);
1730     op->op_type = type;
1731     op->op_ppaddr = ppaddr[type];
1732     op->op_flags = flags;
1733
1734     op->op_next = op;
1735     op->op_private = 0 + (flags >> 8);
1736     if (opargs[type] & OA_RETSCALAR)
1737         scalar(op);
1738     if (opargs[type] & OA_TARGET)
1739         op->op_targ = pad_alloc(type, SVs_PADTMP);
1740     return CHECKOP(type, op);
1741 }
1742
1743 OP *
1744 newUNOP(type, flags, first)
1745 I32 type;
1746 I32 flags;
1747 OP* first;
1748 {
1749     UNOP *unop;
1750
1751     if (!first)
1752         first = newOP(OP_STUB, 0); 
1753     if (opargs[type] & OA_MARK)
1754         first = force_list(first);
1755
1756     Newz(1101, unop, 1, UNOP);
1757     unop->op_type = type;
1758     unop->op_ppaddr = ppaddr[type];
1759     unop->op_first = first;
1760     unop->op_flags = flags | OPf_KIDS;
1761     unop->op_private = 1 | (flags >> 8);
1762
1763     unop = (UNOP*) CHECKOP(type, unop);
1764     if (unop->op_next)
1765         return (OP*)unop;
1766
1767     return fold_constants((OP *) unop);
1768 }
1769
1770 OP *
1771 newBINOP(type, flags, first, last)
1772 I32 type;
1773 I32 flags;
1774 OP* first;
1775 OP* last;
1776 {
1777     BINOP *binop;
1778     Newz(1101, binop, 1, BINOP);
1779
1780     if (!first)
1781         first = newOP(OP_NULL, 0);
1782
1783     binop->op_type = type;
1784     binop->op_ppaddr = ppaddr[type];
1785     binop->op_first = first;
1786     binop->op_flags = flags | OPf_KIDS;
1787     if (!last) {
1788         last = first;
1789         binop->op_private = 1 | (flags >> 8);
1790     }
1791     else {
1792         binop->op_private = 2 | (flags >> 8);
1793         first->op_sibling = last;
1794     }
1795
1796     binop = (BINOP*)CHECKOP(type, binop);
1797     if (binop->op_next)
1798         return (OP*)binop;
1799
1800     binop->op_last = last = binop->op_first->op_sibling;
1801
1802     return fold_constants((OP *)binop);
1803 }
1804
1805 OP *
1806 pmtrans(op, expr, repl)
1807 OP *op;
1808 OP *expr;
1809 OP *repl;
1810 {
1811     SV *tstr = ((SVOP*)expr)->op_sv;
1812     SV *rstr = ((SVOP*)repl)->op_sv;
1813     STRLEN tlen;
1814     STRLEN rlen;
1815     register U8 *t = (U8*)SvPV(tstr, tlen);
1816     register U8 *r = (U8*)SvPV(rstr, rlen);
1817     register I32 i;
1818     register I32 j;
1819     I32 delete;
1820     I32 complement;
1821     register short *tbl;
1822
1823     tbl = (short*)cPVOP->op_pv;
1824     complement  = op->op_private & OPpTRANS_COMPLEMENT;
1825     delete      = op->op_private & OPpTRANS_DELETE;
1826     /* squash   = op->op_private & OPpTRANS_SQUASH; */
1827
1828     if (complement) {
1829         Zero(tbl, 256, short);
1830         for (i = 0; i < tlen; i++)
1831             tbl[t[i]] = -1;
1832         for (i = 0, j = 0; i < 256; i++) {
1833             if (!tbl[i]) {
1834                 if (j >= rlen) {
1835                     if (delete)
1836                         tbl[i] = -2;
1837                     else if (rlen)
1838                         tbl[i] = r[j-1];
1839                     else
1840                         tbl[i] = i;
1841                 }
1842                 else
1843                     tbl[i] = r[j++];
1844             }
1845         }
1846     }
1847     else {
1848         if (!rlen && !delete) {
1849             r = t; rlen = tlen;
1850         }
1851         for (i = 0; i < 256; i++)
1852             tbl[i] = -1;
1853         for (i = 0, j = 0; i < tlen; i++,j++) {
1854             if (j >= rlen) {
1855                 if (delete) {
1856                     if (tbl[t[i]] == -1)
1857                         tbl[t[i]] = -2;
1858                     continue;
1859                 }
1860                 --j;
1861             }
1862             if (tbl[t[i]] == -1)
1863                 tbl[t[i]] = r[j];
1864         }
1865     }
1866     op_free(expr);
1867     op_free(repl);
1868
1869     return op;
1870 }
1871
1872 OP *
1873 newPMOP(type, flags)
1874 I32 type;
1875 I32 flags;
1876 {
1877     PMOP *pmop;
1878
1879     Newz(1101, pmop, 1, PMOP);
1880     pmop->op_type = type;
1881     pmop->op_ppaddr = ppaddr[type];
1882     pmop->op_flags = flags;
1883     pmop->op_private = 0 | (flags >> 8);
1884
1885     if (hints & HINT_LOCALE)
1886         pmop->op_pmpermflags = (pmop->op_pmflags |= PMf_LOCALE);
1887
1888     /* link into pm list */
1889     if (type != OP_TRANS && curstash) {
1890         pmop->op_pmnext = HvPMROOT(curstash);
1891         HvPMROOT(curstash) = pmop;
1892     }
1893
1894     return (OP*)pmop;
1895 }
1896
1897 OP *
1898 pmruntime(op, expr, repl)
1899 OP *op;
1900 OP *expr;
1901 OP *repl;
1902 {
1903     PMOP *pm;
1904     LOGOP *rcop;
1905
1906     if (op->op_type == OP_TRANS)
1907         return pmtrans(op, expr, repl);
1908
1909     pm = (PMOP*)op;
1910
1911     if (expr->op_type == OP_CONST) {
1912         STRLEN plen;
1913         SV *pat = ((SVOP*)expr)->op_sv;
1914         char *p = SvPV(pat, plen);
1915         if ((op->op_flags & OPf_SPECIAL) && strEQ(p, " ")) {
1916             sv_setpvn(pat, "\\s+", 3);
1917             p = SvPV(pat, plen);
1918             pm->op_pmflags |= PMf_SKIPWHITE;
1919         }
1920         pm->op_pmregexp = pregcomp(p, p + plen, pm);
1921         if (strEQ("\\s+", pm->op_pmregexp->precomp)) 
1922             pm->op_pmflags |= PMf_WHITE;
1923         hoistmust(pm);
1924         op_free(expr);
1925     }
1926     else {
1927         if (pm->op_pmflags & PMf_KEEP)
1928             expr = newUNOP(OP_REGCMAYBE,0,expr);
1929
1930         Newz(1101, rcop, 1, LOGOP);
1931         rcop->op_type = OP_REGCOMP;
1932         rcop->op_ppaddr = ppaddr[OP_REGCOMP];
1933         rcop->op_first = scalar(expr);
1934         rcop->op_flags |= OPf_KIDS;
1935         rcop->op_private = 1;
1936         rcop->op_other = op;
1937
1938         /* establish postfix order */
1939         if (pm->op_pmflags & PMf_KEEP) {
1940             LINKLIST(expr);
1941             rcop->op_next = expr;
1942             ((UNOP*)expr)->op_first->op_next = (OP*)rcop;
1943         }
1944         else {
1945             rcop->op_next = LINKLIST(expr);
1946             expr->op_next = (OP*)rcop;
1947         }
1948
1949         prepend_elem(op->op_type, scalar((OP*)rcop), op);
1950     }
1951
1952     if (repl) {
1953         OP *curop;
1954         if (pm->op_pmflags & PMf_EVAL)
1955             curop = 0;
1956         else if (repl->op_type == OP_CONST)
1957             curop = repl;
1958         else {
1959             OP *lastop = 0;
1960             for (curop = LINKLIST(repl); curop!=repl; curop = LINKLIST(curop)) {
1961                 if (opargs[curop->op_type] & OA_DANGEROUS) {
1962                     if (curop->op_type == OP_GV) {
1963                         GV *gv = ((GVOP*)curop)->op_gv;
1964                         if (strchr("&`'123456789+", *GvENAME(gv)))
1965                             break;
1966                     }
1967                     else if (curop->op_type == OP_RV2CV)
1968                         break;
1969                     else if (curop->op_type == OP_RV2SV ||
1970                              curop->op_type == OP_RV2AV ||
1971                              curop->op_type == OP_RV2HV ||
1972                              curop->op_type == OP_RV2GV) {
1973                         if (lastop && lastop->op_type != OP_GV) /*funny deref?*/
1974                             break;
1975                     }
1976                     else if (curop->op_type == OP_PADSV ||
1977                              curop->op_type == OP_PADAV ||
1978                              curop->op_type == OP_PADHV ||
1979                              curop->op_type == OP_PADANY) {
1980                              /* is okay */
1981                     }
1982                     else
1983                         break;
1984                 }
1985                 lastop = curop;
1986             }
1987         }
1988         if (curop == repl) {
1989             pm->op_pmflags |= PMf_CONST;        /* const for long enough */
1990             pm->op_pmpermflags |= PMf_CONST;    /* const for long enough */
1991             prepend_elem(op->op_type, scalar(repl), op);
1992         }
1993         else {
1994             Newz(1101, rcop, 1, LOGOP);
1995             rcop->op_type = OP_SUBSTCONT;
1996             rcop->op_ppaddr = ppaddr[OP_SUBSTCONT];
1997             rcop->op_first = scalar(repl);
1998             rcop->op_flags |= OPf_KIDS;
1999             rcop->op_private = 1;
2000             rcop->op_other = op;
2001
2002             /* establish postfix order */
2003             rcop->op_next = LINKLIST(repl);
2004             repl->op_next = (OP*)rcop;
2005
2006             pm->op_pmreplroot = scalar((OP*)rcop);
2007             pm->op_pmreplstart = LINKLIST(rcop);
2008             rcop->op_next = 0;
2009         }
2010     }
2011
2012     return (OP*)pm;
2013 }
2014
2015 OP *
2016 newSVOP(type, flags, sv)
2017 I32 type;
2018 I32 flags;
2019 SV *sv;
2020 {
2021     SVOP *svop;
2022     Newz(1101, svop, 1, SVOP);
2023     svop->op_type = type;
2024     svop->op_ppaddr = ppaddr[type];
2025     svop->op_sv = sv;
2026     svop->op_next = (OP*)svop;
2027     svop->op_flags = flags;
2028     if (opargs[type] & OA_RETSCALAR)
2029         scalar((OP*)svop);
2030     if (opargs[type] & OA_TARGET)
2031         svop->op_targ = pad_alloc(type, SVs_PADTMP);
2032     return CHECKOP(type, svop);
2033 }
2034
2035 OP *
2036 newGVOP(type, flags, gv)
2037 I32 type;
2038 I32 flags;
2039 GV *gv;
2040 {
2041     GVOP *gvop;
2042     Newz(1101, gvop, 1, GVOP);
2043     gvop->op_type = type;
2044     gvop->op_ppaddr = ppaddr[type];
2045     gvop->op_gv = (GV*)SvREFCNT_inc(gv);
2046     gvop->op_next = (OP*)gvop;
2047     gvop->op_flags = flags;
2048     if (opargs[type] & OA_RETSCALAR)
2049         scalar((OP*)gvop);
2050     if (opargs[type] & OA_TARGET)
2051         gvop->op_targ = pad_alloc(type, SVs_PADTMP);
2052     return CHECKOP(type, gvop);
2053 }
2054
2055 OP *
2056 newPVOP(type, flags, pv)
2057 I32 type;
2058 I32 flags;
2059 char *pv;
2060 {
2061     PVOP *pvop;
2062     Newz(1101, pvop, 1, PVOP);
2063     pvop->op_type = type;
2064     pvop->op_ppaddr = ppaddr[type];
2065     pvop->op_pv = pv;
2066     pvop->op_next = (OP*)pvop;
2067     pvop->op_flags = flags;
2068     if (opargs[type] & OA_RETSCALAR)
2069         scalar((OP*)pvop);
2070     if (opargs[type] & OA_TARGET)
2071         pvop->op_targ = pad_alloc(type, SVs_PADTMP);
2072     return CHECKOP(type, pvop);
2073 }
2074
2075 void
2076 package(op)
2077 OP *op;
2078 {
2079     SV *sv;
2080
2081     save_hptr(&curstash);
2082     save_item(curstname);
2083     if (op) {
2084         STRLEN len;
2085         char *name;
2086         sv = cSVOP->op_sv;
2087         name = SvPV(sv, len);
2088         curstash = gv_stashpvn(name,len,TRUE);
2089         sv_setpvn(curstname, name, len);
2090         op_free(op);
2091     }
2092     else {
2093         sv_setpv(curstname,"<none>");
2094         curstash = Nullhv;
2095     }
2096     copline = NOLINE;
2097     expect = XSTATE;
2098 }
2099
2100 void
2101 utilize(aver, floor, version, id, arg)
2102 int aver;
2103 I32 floor;
2104 OP *version;
2105 OP *id;
2106 OP *arg;
2107 {
2108     OP *pack;
2109     OP *meth;
2110     OP *rqop;
2111     OP *imop;
2112     OP *veop;
2113
2114     if (id->op_type != OP_CONST)
2115         croak("Module name must be constant");
2116
2117     veop = Nullop;
2118
2119     if(version != Nullop) {
2120         SV *vesv = ((SVOP*)version)->op_sv;
2121
2122         if (arg == Nullop && !SvNIOK(vesv)) {
2123             arg = version;
2124         }
2125         else {
2126             OP *pack;
2127             OP *meth;
2128
2129             if (version->op_type != OP_CONST || !SvNIOK(vesv))
2130                 croak("Version number must be constant number");
2131
2132             /* Make copy of id so we don't free it twice */
2133             pack = newSVOP(OP_CONST, 0, newSVsv(((SVOP*)id)->op_sv));
2134
2135             /* Fake up a method call to VERSION */
2136             meth = newSVOP(OP_CONST, 0, newSVpv("VERSION", 7));
2137             veop = convert(OP_ENTERSUB, OPf_STACKED|OPf_SPECIAL,
2138                             append_elem(OP_LIST,
2139                             prepend_elem(OP_LIST, pack, list(version)),
2140                             newUNOP(OP_METHOD, 0, meth)));
2141         }
2142     }
2143      
2144     /* Fake up an import/unimport */
2145     if (arg && arg->op_type == OP_STUB)
2146         imop = arg;             /* no import on explicit () */
2147     else if(SvNIOK(((SVOP*)id)->op_sv)) {
2148         imop = Nullop;          /* use 5.0; */
2149     }
2150     else {
2151         /* Make copy of id so we don't free it twice */
2152         pack = newSVOP(OP_CONST, 0, newSVsv(((SVOP*)id)->op_sv));
2153         meth = newSVOP(OP_CONST, 0,
2154             aver
2155                 ? newSVpv("import", 6)
2156                 : newSVpv("unimport", 8)
2157             );
2158         imop = convert(OP_ENTERSUB, OPf_STACKED|OPf_SPECIAL,
2159                     append_elem(OP_LIST,
2160                         prepend_elem(OP_LIST, pack, list(arg)),
2161                         newUNOP(OP_METHOD, 0, meth)));
2162     }
2163
2164     /* Fake up a require */
2165     rqop = newUNOP(OP_REQUIRE, 0, id);
2166
2167     /* Fake up the BEGIN {}, which does its thing immediately. */
2168     newSUB(floor,
2169         newSVOP(OP_CONST, 0, newSVpv("BEGIN", 5)),
2170         Nullop,
2171         append_elem(OP_LINESEQ,
2172             append_elem(OP_LINESEQ,
2173                 newSTATEOP(0, Nullch, rqop),
2174                 newSTATEOP(0, Nullch, veop)),
2175             newSTATEOP(0, Nullch, imop) ));
2176
2177     copline = NOLINE;
2178     expect = XSTATE;
2179 }
2180
2181 OP *
2182 newSLICEOP(flags, subscript, listval)
2183 I32 flags;
2184 OP *subscript;
2185 OP *listval;
2186 {
2187     return newBINOP(OP_LSLICE, flags,
2188             list(force_list(subscript)),
2189             list(force_list(listval)) );
2190 }
2191
2192 static I32
2193 list_assignment(op)
2194 register OP *op;
2195 {
2196     if (!op)
2197         return TRUE;
2198
2199     if (op->op_type == OP_NULL && op->op_flags & OPf_KIDS)
2200         op = cUNOP->op_first;
2201
2202     if (op->op_type == OP_COND_EXPR) {
2203         I32 t = list_assignment(cCONDOP->op_first->op_sibling);
2204         I32 f = list_assignment(cCONDOP->op_first->op_sibling->op_sibling);
2205
2206         if (t && f)
2207             return TRUE;
2208         if (t || f)
2209             yyerror("Assignment to both a list and a scalar");
2210         return FALSE;
2211     }
2212
2213     if (op->op_type == OP_LIST || op->op_flags & OPf_PARENS ||
2214         op->op_type == OP_RV2AV || op->op_type == OP_RV2HV ||
2215         op->op_type == OP_ASLICE || op->op_type == OP_HSLICE)
2216         return TRUE;
2217
2218     if (op->op_type == OP_PADAV || op->op_type == OP_PADHV)
2219         return TRUE;
2220
2221     if (op->op_type == OP_RV2SV)
2222         return FALSE;
2223
2224     return FALSE;
2225 }
2226
2227 OP *
2228 newASSIGNOP(flags, left, optype, right)
2229 I32 flags;
2230 OP *left;
2231 I32 optype;
2232 OP *right;
2233 {
2234     OP *op;
2235
2236     if (optype) {
2237         if (optype == OP_ANDASSIGN || optype == OP_ORASSIGN) {
2238             return newLOGOP(optype, 0,
2239                 mod(scalar(left), optype),
2240                 newUNOP(OP_SASSIGN, 0, scalar(right)));
2241         }
2242         else {
2243             return newBINOP(optype, OPf_STACKED,
2244                 mod(scalar(left), optype), scalar(right));
2245         }
2246     }
2247
2248     if (list_assignment(left)) {
2249         modcount = 0;
2250         eval_start = right;     /* Grandfathering $[ assignment here.  Bletch.*/
2251         left = mod(left, OP_AASSIGN);
2252         if (eval_start)
2253             eval_start = 0;
2254         else {
2255             op_free(left);
2256             op_free(right);
2257             return Nullop;
2258         }
2259         op = newBINOP(OP_AASSIGN, flags,
2260                 list(force_list(right)),
2261                 list(force_list(left)) );
2262         op->op_private = 0 | (flags >> 8);
2263         if (!(left->op_private & OPpLVAL_INTRO)) {
2264             static int generation = 100;
2265             OP *curop;
2266             OP *lastop = op;
2267             generation++;
2268             for (curop = LINKLIST(op); curop != op; curop = LINKLIST(curop)) {
2269                 if (opargs[curop->op_type] & OA_DANGEROUS) {
2270                     if (curop->op_type == OP_GV) {
2271                         GV *gv = ((GVOP*)curop)->op_gv;
2272                         if (gv == defgv || SvCUR(gv) == generation)
2273                             break;
2274                         SvCUR(gv) = generation;
2275                     }
2276                     else if (curop->op_type == OP_PADSV ||
2277                              curop->op_type == OP_PADAV ||
2278                              curop->op_type == OP_PADHV ||
2279                              curop->op_type == OP_PADANY) {
2280                         SV **svp = AvARRAY(comppad_name);
2281                         SV *sv = svp[curop->op_targ];
2282                         if (SvCUR(sv) == generation)
2283                             break;
2284                         SvCUR(sv) = generation; /* (SvCUR not used any more) */
2285                     }
2286                     else if (curop->op_type == OP_RV2CV)
2287                         break;
2288                     else if (curop->op_type == OP_RV2SV ||
2289                              curop->op_type == OP_RV2AV ||
2290                              curop->op_type == OP_RV2HV ||
2291                              curop->op_type == OP_RV2GV) {
2292                         if (lastop->op_type != OP_GV)   /* funny deref? */
2293                             break;
2294                     }
2295                     else
2296                         break;
2297                 }
2298                 lastop = curop;
2299             }
2300             if (curop != op)
2301                 op->op_private = OPpASSIGN_COMMON;
2302         }
2303         if (right && right->op_type == OP_SPLIT) {
2304             OP* tmpop;
2305             if ((tmpop = ((LISTOP*)right)->op_first) &&
2306                 tmpop->op_type == OP_PUSHRE)
2307             {
2308                 PMOP *pm = (PMOP*)tmpop;
2309                 if (left->op_type == OP_RV2AV &&
2310                     !(left->op_private & OPpLVAL_INTRO) &&
2311                     !(op->op_private & OPpASSIGN_COMMON) )
2312                 {
2313                     tmpop = ((UNOP*)left)->op_first;
2314                     if (tmpop->op_type == OP_GV && !pm->op_pmreplroot) {
2315                         pm->op_pmreplroot = (OP*)((GVOP*)tmpop)->op_gv;
2316                         pm->op_pmflags |= PMf_ONCE;
2317                         tmpop = ((UNOP*)op)->op_first;  /* to list (nulled) */
2318                         tmpop = ((UNOP*)tmpop)->op_first; /* to pushmark */
2319                         tmpop->op_sibling = Nullop;     /* don't free split */
2320                         right->op_next = tmpop->op_next;  /* fix starting loc */
2321                         op_free(op);                    /* blow off assign */
2322                         right->op_flags &= ~(OPf_KNOW|OPf_LIST);
2323                                 /* "I don't know and I don't care." */
2324                         return right;
2325                     }
2326                 }
2327                 else {
2328                     if (modcount < 10000 &&
2329                       ((LISTOP*)right)->op_last->op_type == OP_CONST)
2330                     {
2331                         SV *sv = ((SVOP*)((LISTOP*)right)->op_last)->op_sv;
2332                         if (SvIVX(sv) == 0)
2333                             sv_setiv(sv, modcount+1);
2334                     }
2335                 }
2336             }
2337         }
2338         return op;
2339     }
2340     if (!right)
2341         right = newOP(OP_UNDEF, 0);
2342     if (right->op_type == OP_READLINE) {
2343         right->op_flags |= OPf_STACKED;
2344         return newBINOP(OP_NULL, flags, mod(scalar(left), OP_SASSIGN), scalar(right));
2345     }
2346     else {
2347         eval_start = right;     /* Grandfathering $[ assignment here.  Bletch.*/
2348         op = newBINOP(OP_SASSIGN, flags,
2349             scalar(right), mod(scalar(left), OP_SASSIGN) );
2350         if (eval_start)
2351             eval_start = 0;
2352         else {
2353             op_free(op);
2354             return Nullop;
2355         }
2356     }
2357     return op;
2358 }
2359
2360 OP *
2361 newSTATEOP(flags, label, op)
2362 I32 flags;
2363 char *label;
2364 OP *op;
2365 {
2366     U32 seq = intro_my();
2367     register COP *cop;
2368
2369     Newz(1101, cop, 1, COP);
2370     if (perldb && curcop->cop_line && curstash != debstash) {
2371         cop->op_type = OP_DBSTATE;
2372         cop->op_ppaddr = ppaddr[ OP_DBSTATE ];
2373     }
2374     else {
2375         cop->op_type = OP_NEXTSTATE;
2376         cop->op_ppaddr = ppaddr[ OP_NEXTSTATE ];
2377     }
2378     cop->op_flags = flags;
2379     cop->op_private = 0 | (flags >> 8);
2380 #ifdef NATIVE_HINTS
2381     cop->op_private |= NATIVE_HINTS;
2382 #endif
2383     cop->op_next = (OP*)cop;
2384
2385     if (label) {
2386         cop->cop_label = label;
2387         hints |= HINT_BLOCK_SCOPE;
2388     }
2389     cop->cop_seq = seq;
2390     cop->cop_arybase = curcop->cop_arybase;
2391
2392     if (copline == NOLINE)
2393         cop->cop_line = curcop->cop_line;
2394     else {
2395         cop->cop_line = copline;
2396         copline = NOLINE;
2397     }
2398     cop->cop_filegv = (GV*)SvREFCNT_inc(curcop->cop_filegv);
2399     cop->cop_stash = curstash;
2400
2401     if (perldb && curstash != debstash) {
2402         SV **svp = av_fetch(GvAV(curcop->cop_filegv),(I32)cop->cop_line, FALSE);
2403         if (svp && *svp != &sv_undef && !SvIOK(*svp)) {
2404             (void)SvIOK_on(*svp);
2405             SvIVX(*svp) = 1;
2406             SvSTASH(*svp) = (HV*)cop;
2407         }
2408     }
2409
2410     return prepend_elem(OP_LINESEQ, (OP*)cop, op);
2411 }
2412
2413 /* "Introduce" my variables to visible status. */
2414 U32
2415 intro_my()
2416 {
2417     SV **svp;
2418     SV *sv;
2419     I32 i;
2420
2421     if (! min_intro_pending)
2422         return cop_seqmax;
2423
2424     svp = AvARRAY(comppad_name);
2425     for (i = min_intro_pending; i <= max_intro_pending; i++) {
2426         if ((sv = svp[i]) && sv != &sv_undef && !SvIVX(sv)) {
2427             SvIVX(sv) = 999999999;      /* Don't know scope end yet. */
2428             SvNVX(sv) = (double)cop_seqmax;
2429         }
2430     }
2431     min_intro_pending = 0;
2432     comppad_name_fill = max_intro_pending;      /* Needn't search higher */
2433     return cop_seqmax++;
2434 }
2435
2436 OP *
2437 newLOGOP(type, flags, first, other)
2438 I32 type;
2439 I32 flags;
2440 OP* first;
2441 OP* other;
2442 {
2443     LOGOP *logop;
2444     OP *op;
2445
2446     if (type == OP_XOR)         /* Not short circuit, but here by precedence. */
2447         return newBINOP(type, flags, scalar(first), scalar(other));
2448
2449     scalarboolean(first);
2450     /* optimize "!a && b" to "a || b", and "!a || b" to "a && b" */
2451     if (first->op_type == OP_NOT && (first->op_flags & OPf_SPECIAL)) {
2452         if (type == OP_AND || type == OP_OR) {
2453             if (type == OP_AND)
2454                 type = OP_OR;
2455             else
2456                 type = OP_AND;
2457             op = first;
2458             first = cUNOP->op_first;
2459             if (op->op_next)
2460                 first->op_next = op->op_next;
2461             cUNOP->op_first = Nullop;
2462             op_free(op);
2463         }
2464     }
2465     if (first->op_type == OP_CONST) {
2466         if (dowarn && (first->op_private & OPpCONST_BARE))
2467             warn("Probable precedence problem on %s", op_desc[type]);
2468         if ((type == OP_AND) == (SvTRUE(((SVOP*)first)->op_sv))) {
2469             op_free(first);
2470             return other;
2471         }
2472         else {
2473             op_free(other);
2474             return first;
2475         }
2476     }
2477     else if (first->op_type == OP_WANTARRAY) {
2478         if (type == OP_AND)
2479             list(other);
2480         else
2481             scalar(other);
2482     }
2483     else if (dowarn && (first->op_flags & OPf_KIDS)) {
2484         OP *k1 = ((UNOP*)first)->op_first;
2485         OP *k2 = k1->op_sibling;
2486         OPCODE warnop = 0;
2487         switch (first->op_type)
2488         {
2489         case OP_NULL:
2490             if (k2 && k2->op_type == OP_READLINE
2491                   && (k2->op_flags & OPf_STACKED)
2492                   && (k1->op_type == OP_RV2SV || k1->op_type == OP_PADSV))
2493                 warnop = k2->op_type;
2494             break;
2495
2496         case OP_SASSIGN:
2497             if (k1->op_type == OP_READDIR || k1->op_type == OP_GLOB)
2498                 warnop = k1->op_type;
2499             break;
2500         }
2501         if (warnop) {
2502             line_t oldline = curcop->cop_line;
2503             curcop->cop_line = copline;
2504             warn("Value of %s construct can be \"0\"; test with defined()",
2505                  op_desc[warnop]);
2506                 curcop->cop_line = oldline;
2507         }
2508     }
2509
2510     if (!other)
2511         return first;
2512
2513     if (type == OP_ANDASSIGN || type == OP_ORASSIGN)
2514         other->op_private |= OPpASSIGN_BACKWARDS;  /* other is an OP_SASSIGN */
2515
2516     Newz(1101, logop, 1, LOGOP);
2517
2518     logop->op_type = type;
2519     logop->op_ppaddr = ppaddr[type];
2520     logop->op_first = first;
2521     logop->op_flags = flags | OPf_KIDS;
2522     logop->op_other = LINKLIST(other);
2523     logop->op_private = 1 | (flags >> 8);
2524
2525     /* establish postfix order */
2526     logop->op_next = LINKLIST(first);
2527     first->op_next = (OP*)logop;
2528     first->op_sibling = other;
2529
2530     op = newUNOP(OP_NULL, 0, (OP*)logop);
2531     other->op_next = op;
2532
2533     return op;
2534 }
2535
2536 OP *
2537 newCONDOP(flags, first, trueop, falseop)
2538 I32 flags;
2539 OP* first;
2540 OP* trueop;
2541 OP* falseop;
2542 {
2543     CONDOP *condop;
2544     OP *op;
2545
2546     if (!falseop)
2547         return newLOGOP(OP_AND, 0, first, trueop);
2548     if (!trueop)
2549         return newLOGOP(OP_OR, 0, first, falseop);
2550
2551     scalarboolean(first);
2552     if (first->op_type == OP_CONST) {
2553         if (SvTRUE(((SVOP*)first)->op_sv)) {
2554             op_free(first);
2555             op_free(falseop);
2556             return trueop;
2557         }
2558         else {
2559             op_free(first);
2560             op_free(trueop);
2561             return falseop;
2562         }
2563     }
2564     else if (first->op_type == OP_WANTARRAY) {
2565         list(trueop);
2566         scalar(falseop);
2567     }
2568     Newz(1101, condop, 1, CONDOP);
2569
2570     condop->op_type = OP_COND_EXPR;
2571     condop->op_ppaddr = ppaddr[OP_COND_EXPR];
2572     condop->op_first = first;
2573     condop->op_flags = flags | OPf_KIDS;
2574     condop->op_true = LINKLIST(trueop);
2575     condop->op_false = LINKLIST(falseop);
2576     condop->op_private = 1 | (flags >> 8);
2577
2578     /* establish postfix order */
2579     condop->op_next = LINKLIST(first);
2580     first->op_next = (OP*)condop;
2581
2582     first->op_sibling = trueop;
2583     trueop->op_sibling = falseop;
2584     op = newUNOP(OP_NULL, 0, (OP*)condop);
2585
2586     trueop->op_next = op;
2587     falseop->op_next = op;
2588
2589     return op;
2590 }
2591
2592 OP *
2593 newRANGE(flags, left, right)
2594 I32 flags;
2595 OP *left;
2596 OP *right;
2597 {
2598     CONDOP *condop;
2599     OP *flip;
2600     OP *flop;
2601     OP *op;
2602
2603     Newz(1101, condop, 1, CONDOP);
2604
2605     condop->op_type = OP_RANGE;
2606     condop->op_ppaddr = ppaddr[OP_RANGE];
2607     condop->op_first = left;
2608     condop->op_flags = OPf_KIDS;
2609     condop->op_true = LINKLIST(left);
2610     condop->op_false = LINKLIST(right);
2611     condop->op_private = 1 | (flags >> 8);
2612
2613     left->op_sibling = right;
2614
2615     condop->op_next = (OP*)condop;
2616     flip = newUNOP(OP_FLIP, flags, (OP*)condop);
2617     flop = newUNOP(OP_FLOP, 0, flip);
2618     op = newUNOP(OP_NULL, 0, flop);
2619     linklist(flop);
2620
2621     left->op_next = flip;
2622     right->op_next = flop;
2623
2624     condop->op_targ = pad_alloc(OP_RANGE, SVs_PADMY);
2625     sv_upgrade(PAD_SV(condop->op_targ), SVt_PVNV);
2626     flip->op_targ = pad_alloc(OP_RANGE, SVs_PADMY);
2627     sv_upgrade(PAD_SV(flip->op_targ), SVt_PVNV);
2628
2629     flip->op_private =  left->op_type == OP_CONST ? OPpFLIP_LINENUM : 0;
2630     flop->op_private = right->op_type == OP_CONST ? OPpFLIP_LINENUM : 0;
2631
2632     flip->op_next = op;
2633     if (!flip->op_private || !flop->op_private)
2634         linklist(op);           /* blow off optimizer unless constant */
2635
2636     return op;
2637 }
2638
2639 OP *
2640 newLOOPOP(flags, debuggable, expr, block)
2641 I32 flags;
2642 I32 debuggable;
2643 OP *expr;
2644 OP *block;
2645 {
2646     OP* listop;
2647     OP* op;
2648     int once = block && block->op_flags & OPf_SPECIAL &&
2649       (block->op_type == OP_ENTERSUB || block->op_type == OP_NULL);
2650
2651     if (expr) {
2652         if (once && expr->op_type == OP_CONST && !SvTRUE(((SVOP*)expr)->op_sv))
2653             return block;       /* do {} while 0 does once */
2654         if (expr->op_type == OP_READLINE || expr->op_type == OP_GLOB) {
2655             expr = newUNOP(OP_DEFINED, 0,
2656                 newASSIGNOP(0, newSVREF(newGVOP(OP_GV, 0, defgv)), 0, expr) );
2657         }
2658     }
2659
2660     listop = append_elem(OP_LINESEQ, block, newOP(OP_UNSTACK, 0));
2661     op = newLOGOP(OP_AND, 0, expr, listop);
2662
2663     ((LISTOP*)listop)->op_last->op_next = LINKLIST(op);
2664
2665     if (once && op != listop)
2666         op->op_next = ((LOGOP*)cUNOP->op_first)->op_other;
2667
2668     if (op == listop)
2669         op = newUNOP(OP_NULL, 0, op);   /* or do {} while 1 loses outer block */
2670
2671     op->op_flags |= flags;
2672     op = scope(op);
2673     op->op_flags |= OPf_SPECIAL;        /* suppress POPBLOCK curpm restoration*/
2674     return op;
2675 }
2676
2677 OP *
2678 newWHILEOP(flags, debuggable, loop, expr, block, cont)
2679 I32 flags;
2680 I32 debuggable;
2681 LOOP *loop;
2682 OP *expr;
2683 OP *block;
2684 OP *cont;
2685 {
2686     OP *redo;
2687     OP *next = 0;
2688     OP *listop;
2689     OP *op;
2690     OP *condop;
2691
2692     if (expr && (expr->op_type == OP_READLINE || expr->op_type == OP_GLOB)) {
2693         expr = newUNOP(OP_DEFINED, 0,
2694             newASSIGNOP(0, newSVREF(newGVOP(OP_GV, 0, defgv)), 0, expr) );
2695     }
2696
2697     if (!block)
2698         block = newOP(OP_NULL, 0);
2699
2700     if (cont)
2701         next = LINKLIST(cont);
2702     if (expr)
2703         cont = append_elem(OP_LINESEQ, cont, newOP(OP_UNSTACK, 0));
2704
2705     listop = append_list(OP_LINESEQ, (LISTOP*)block, (LISTOP*)cont);
2706     redo = LINKLIST(listop);
2707
2708     if (expr) {
2709         op = newLOGOP(OP_AND, 0, expr, scalar(listop));
2710         if (op == expr && op->op_type == OP_CONST && !SvTRUE(cSVOP->op_sv)) {
2711             op_free(expr);              /* oops, it's a while (0) */
2712             op_free((OP*)loop);
2713             return Nullop;              /* (listop already freed by newLOGOP) */
2714         }
2715         ((LISTOP*)listop)->op_last->op_next = condop = 
2716             (op == listop ? redo : LINKLIST(op));
2717         if (!next)
2718             next = condop;
2719     }
2720     else
2721         op = listop;
2722
2723     if (!loop) {
2724         Newz(1101,loop,1,LOOP);
2725         loop->op_type = OP_ENTERLOOP;
2726         loop->op_ppaddr = ppaddr[OP_ENTERLOOP];
2727         loop->op_private = 0;
2728         loop->op_next = (OP*)loop;
2729     }
2730
2731     op = newBINOP(OP_LEAVELOOP, 0, (OP*)loop, op);
2732
2733     loop->op_redoop = redo;
2734     loop->op_lastop = op;
2735
2736     if (next)
2737         loop->op_nextop = next;
2738     else
2739         loop->op_nextop = op;
2740
2741     op->op_flags |= flags;
2742     op->op_private |= (flags >> 8);
2743     return op;
2744 }
2745
2746 OP *
2747 #ifndef CAN_PROTOTYPE
2748 newFOROP(flags,label,forline,sv,expr,block,cont)
2749 I32 flags;
2750 char *label;
2751 line_t forline;
2752 OP* sv;
2753 OP* expr;
2754 OP*block;
2755 OP*cont;
2756 #else
2757 newFOROP(I32 flags,char *label,line_t forline,OP *sv,OP *expr,OP *block,OP *cont)
2758 #endif /* CAN_PROTOTYPE */
2759 {
2760     LOOP *loop;
2761     int padoff = 0;
2762     I32 iterflags = 0;
2763
2764     copline = forline;
2765     if (sv) {
2766         if (sv->op_type == OP_RV2SV) {  /* symbol table variable */
2767             sv->op_type = OP_RV2GV;
2768             sv->op_ppaddr = ppaddr[OP_RV2GV];
2769         }
2770         else if (sv->op_type == OP_PADSV) { /* private variable */
2771             padoff = sv->op_targ;
2772             op_free(sv);
2773             sv = Nullop;
2774         }
2775         else
2776             croak("Can't use %s for loop variable", op_desc[sv->op_type]);
2777     }
2778     else {
2779         sv = newGVOP(OP_GV, 0, defgv);
2780     }
2781     if (expr->op_type == OP_RV2AV || expr->op_type == OP_PADAV) {
2782         expr = scalar(ref(expr, OP_ITER));
2783         iterflags |= OPf_STACKED;
2784     }
2785     loop = (LOOP*)list(convert(OP_ENTERITER, iterflags,
2786         append_elem(OP_LIST, mod(force_list(expr), OP_GREPSTART),
2787                     scalar(sv))));
2788     assert(!loop->op_next);
2789     Renew(loop, 1, LOOP);
2790     loop->op_targ = padoff;
2791     return newSTATEOP(0, label, newWHILEOP(flags, 1, loop,
2792         newOP(OP_ITER, 0), block, cont));
2793 }
2794
2795 OP*
2796 newLOOPEX(type, label)
2797 I32 type;
2798 OP* label;
2799 {
2800     OP *op;
2801     if (type != OP_GOTO || label->op_type == OP_CONST) {
2802         op = newPVOP(type, 0, savepv(
2803                 label->op_type == OP_CONST
2804                     ? SvPVx(((SVOP*)label)->op_sv, na)
2805                     : "" ));
2806         op_free(label);
2807     }
2808     else {
2809         if (label->op_type == OP_ENTERSUB)
2810             label = newUNOP(OP_REFGEN, 0, mod(label, OP_REFGEN));
2811         op = newUNOP(type, OPf_STACKED, label);
2812     }
2813     hints |= HINT_BLOCK_SCOPE;
2814     return op;
2815 }
2816
2817 void
2818 cv_undef(cv)
2819 CV *cv;
2820 {
2821     if (!CvXSUB(cv) && CvROOT(cv)) {
2822         if (CvDEPTH(cv))
2823             croak("Can't undef active subroutine");
2824         ENTER;
2825
2826         SAVESPTR(curpad);
2827         curpad = 0;
2828
2829         if (!CvCLONED(cv))
2830             op_free(CvROOT(cv));
2831         CvROOT(cv) = Nullop;
2832         LEAVE;
2833     }
2834     CvFLAGS(cv) = 0;
2835     SvREFCNT_dec(CvGV(cv));
2836     CvGV(cv) = Nullgv;
2837     SvREFCNT_dec(CvOUTSIDE(cv));
2838     CvOUTSIDE(cv) = Nullcv;
2839     if (CvPADLIST(cv)) {
2840         /* may be during global destruction */
2841         if (SvREFCNT(CvPADLIST(cv))) {
2842             I32 i = AvFILL(CvPADLIST(cv));
2843             while (i >= 0) {
2844                 SV** svp = av_fetch(CvPADLIST(cv), i--, FALSE);
2845                 if (svp)
2846                     SvREFCNT_dec(*svp);
2847             }
2848             SvREFCNT_dec((SV*)CvPADLIST(cv));
2849         }
2850         CvPADLIST(cv) = Nullav;
2851     }
2852 }
2853
2854 #ifdef DEBUG_CLOSURES
2855 static void
2856 cv_dump(cv)
2857 CV* cv;
2858 {
2859     CV *outside = CvOUTSIDE(cv);
2860     AV* padlist = CvPADLIST(cv);
2861     AV* pad_name;
2862     AV* pad;
2863     SV** pname;
2864     SV** ppad;
2865     I32 ix;
2866
2867     PerlIO_printf(Perl_debug_log, "\tCV=0x%p (%s), OUTSIDE=0x%p (%s)\n",
2868                   cv,
2869                   (CvANON(cv) ? "ANON"
2870                    : (cv == main_cv) ? "MAIN"
2871                    : CvUNIQUE(outside) ? "UNIQUE"
2872                    : CvGV(cv) ? GvNAME(CvGV(cv)) : "UNDEFINED"),
2873                   outside,
2874                   (!outside ? "null"
2875                    : CvANON(outside) ? "ANON"
2876                    : (outside == main_cv) ? "MAIN"
2877                    : CvUNIQUE(outside) ? "UNIQUE"
2878                    : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
2879
2880     if (!padlist)
2881         return;
2882
2883     pad_name = (AV*)*av_fetch(padlist, 0, FALSE);
2884     pad = (AV*)*av_fetch(padlist, 1, FALSE);
2885     pname = AvARRAY(pad_name);
2886     ppad = AvARRAY(pad);
2887
2888     for (ix = 1; ix <= AvFILL(pad); ix++) {
2889         if (SvPOK(pname[ix]))
2890             PerlIO_printf(Perl_debug_log, "\t%4d. 0x%p (%s\"%s\" %ld-%ld)\n",
2891                           ix, ppad[ix],
2892                           SvFAKE(pname[ix]) ? "FAKE " : "",
2893                           SvPVX(pname[ix]),
2894                           (long)I_32(SvNVX(pname[ix])),
2895                           (long)SvIVX(pname[ix]));
2896     }
2897 }
2898 #endif /* DEBUG_CLOSURES */
2899
2900 static CV *
2901 cv_clone2(proto, outside)
2902 CV* proto;
2903 CV* outside;
2904 {
2905     AV* av;
2906     I32 ix;
2907     AV* protopadlist = CvPADLIST(proto);
2908     AV* protopad_name = (AV*)*av_fetch(protopadlist, 0, FALSE);
2909     AV* protopad = (AV*)*av_fetch(protopadlist, 1, FALSE);
2910     SV** pname = AvARRAY(protopad_name);
2911     SV** ppad = AvARRAY(protopad);
2912     AV* comppadlist;
2913     CV* cv;
2914
2915     assert(!CvUNIQUE(proto));
2916
2917     ENTER;
2918     SAVESPTR(curpad);
2919     SAVESPTR(comppad);
2920     SAVESPTR(compcv);
2921
2922     cv = compcv = (CV*)NEWSV(1104,0);
2923     sv_upgrade((SV *)cv, SvTYPE(proto));
2924     CvCLONED_on(cv);
2925     if (CvANON(proto))
2926         CvANON_on(cv);
2927
2928     CvFILEGV(cv)        = CvFILEGV(proto);
2929     CvGV(cv)            = (GV*)SvREFCNT_inc(CvGV(proto));
2930     CvSTASH(cv)         = CvSTASH(proto);
2931     CvROOT(cv)          = CvROOT(proto);
2932     CvSTART(cv)         = CvSTART(proto);
2933     if (outside)
2934         CvOUTSIDE(cv)   = (CV*)SvREFCNT_inc(outside);
2935
2936     comppad = newAV();
2937
2938     comppadlist = newAV();
2939     AvREAL_off(comppadlist);
2940     av_store(comppadlist, 0, SvREFCNT_inc((SV*)protopad_name));
2941     av_store(comppadlist, 1, (SV*)comppad);
2942     CvPADLIST(cv) = comppadlist;
2943     av_fill(comppad, AvFILL(protopad));
2944     curpad = AvARRAY(comppad);
2945
2946     av = newAV();           /* will be @_ */
2947     av_extend(av, 0);
2948     av_store(comppad, 0, (SV*)av);
2949     AvFLAGS(av) = AVf_REIFY;
2950
2951     for (ix = AvFILL(protopad); ix > 0; ix--) {
2952         SV* sv;
2953         if (pname[ix] != &sv_undef) {
2954             char *name = SvPVX(pname[ix]);    /* XXX */
2955             if (SvFLAGS(pname[ix]) & SVf_FAKE) {   /* lexical from outside? */
2956                 I32 off = pad_findlex(name, ix, SvIVX(pname[ix]),
2957                                       CvOUTSIDE(cv), cxstack_ix);
2958                 if (!off)
2959                     curpad[ix] = SvREFCNT_inc(ppad[ix]);
2960                 else if (off != ix)
2961                     croak("panic: cv_clone: %s", name);
2962             }
2963             else {                              /* our own lexical */
2964                 if (*name == '&') {
2965                     /* anon code -- we'll come back for it */
2966                     sv = SvREFCNT_inc(ppad[ix]);
2967                 }
2968                 else if (*name == '@')
2969                     sv = (SV*)newAV();
2970                 else if (*name == '%')
2971                     sv = (SV*)newHV();
2972                 else
2973                     sv = NEWSV(0,0);
2974                 if (!SvPADBUSY(sv))
2975                     SvPADMY_on(sv);
2976                 curpad[ix] = sv;
2977             }
2978         }
2979         else {
2980             sv = NEWSV(0,0);
2981             SvPADTMP_on(sv);
2982             curpad[ix] = sv;
2983         }
2984     }
2985
2986     /* Now that vars are all in place, clone nested closures. */
2987
2988     for (ix = AvFILL(protopad); ix > 0; ix--) {
2989         if (pname[ix] != &sv_undef
2990             && !(SvFLAGS(pname[ix]) & SVf_FAKE)
2991             && *SvPVX(pname[ix]) == '&'
2992             && CvCLONE(ppad[ix]))
2993         {
2994             CV *kid = cv_clone2((CV*)ppad[ix], cv);
2995             SvREFCNT_dec(ppad[ix]);
2996             CvCLONE_on(kid);
2997             SvPADMY_on(kid);
2998             curpad[ix] = (SV*)kid;
2999         }
3000     }
3001
3002 #ifdef DEBUG_CLOSURES
3003     PerlIO_printf(Perl_debug_log, "Cloned inside:\n");
3004     cv_dump(outside);
3005     PerlIO_printf(Perl_debug_log, "  from:\n");
3006     cv_dump(proto);
3007     PerlIO_printf(Perl_debug_log, "   to:\n");
3008     cv_dump(cv);
3009 #endif
3010
3011     LEAVE;
3012     return cv;
3013 }
3014
3015 CV *
3016 cv_clone(proto)
3017 CV* proto;
3018 {
3019     return cv_clone2(proto, CvOUTSIDE(proto));
3020 }
3021
3022 SV *
3023 cv_const_sv(cv)
3024 CV *cv;
3025 {
3026     OP *o;
3027     SV *sv = Nullsv;
3028     
3029     if(cv && SvPOK(cv) && !SvCUR(cv)) {
3030         for (o = CvSTART(cv); o; o = o->op_next) {
3031             OPCODE type = o->op_type;
3032         
3033             if (type == OP_NEXTSTATE || type == OP_NULL || type == OP_PUSHMARK)
3034                 continue;
3035             if (type == OP_LEAVESUB || type == OP_RETURN)
3036                 break;
3037             if (type != OP_CONST || sv)
3038                 return Nullsv;
3039
3040             sv = ((SVOP*)o)->op_sv;
3041         }
3042     }
3043     return sv;
3044 }
3045
3046 CV *
3047 newSUB(floor,op,proto,block)
3048 I32 floor;
3049 OP *op;
3050 OP *proto;
3051 OP *block;
3052 {
3053     char *name = op ? SvPVx(cSVOP->op_sv, na) : Nullch;
3054     GV *gv = gv_fetchpv(name ? name : "__ANON__", GV_ADDMULTI, SVt_PVCV);
3055     register CV *cv;
3056     AV *av;
3057     I32 ix;
3058
3059     if (op)
3060         SAVEFREEOP(op);
3061     if (cv = (name ? GvCV(gv) : Nullcv)) {
3062         if (GvCVGEN(gv)) {
3063             /* just a cached method */
3064             SvREFCNT_dec(cv);
3065             cv = 0;
3066         }
3067         else if (CvROOT(cv) || CvXSUB(cv) || GvASSUMECV(gv)) {
3068             /* already defined (or promised) */
3069
3070             SV* const_sv = cv_const_sv(cv);
3071             char *p = proto ? SvPVx(((SVOP*)proto)->op_sv, na) : Nullch;
3072
3073             if((!proto != !SvPOK(cv)) || (p && strNE(SvPV((SV*)cv,na), p))) {
3074                 warn("Prototype mismatch: (%s) vs (%s)",
3075                         SvPOK(cv) ? SvPV((SV*)cv,na) : "none",
3076                         p ? p : "none");
3077             }
3078             if (const_sv || dowarn) {
3079                 line_t oldline = curcop->cop_line;
3080                 curcop->cop_line = copline;
3081                 warn(const_sv ? "Constant subroutine %s redefined"
3082                               : "Subroutine %s redefined",name);
3083                 curcop->cop_line = oldline;
3084             }
3085             SvREFCNT_dec(cv);
3086             cv = 0;
3087         }
3088     }
3089     if (cv) {                           /* must reuse cv if autoloaded */
3090         cv_undef(cv);
3091         CvFLAGS(cv) = CvFLAGS(compcv);
3092         CvOUTSIDE(cv) = CvOUTSIDE(compcv);
3093         CvOUTSIDE(compcv) = 0;
3094         CvPADLIST(cv) = CvPADLIST(compcv);
3095         CvPADLIST(compcv) = 0;
3096         if (SvREFCNT(compcv) > 1) /* XXX Make closures transit through stub. */
3097             CvOUTSIDE(compcv) = (CV*)SvREFCNT_inc((SV*)cv);
3098         SvREFCNT_dec(compcv);
3099     }
3100     else {
3101         cv = compcv;
3102         if (name) {
3103             GvCV(gv) = cv;
3104             GvCVGEN(gv) = 0;
3105             sub_generation++;
3106         }
3107     }
3108     CvGV(cv) = (GV*)SvREFCNT_inc(gv);
3109     CvFILEGV(cv) = curcop->cop_filegv;
3110     CvSTASH(cv) = curstash;
3111
3112     if (proto) {
3113         char *p = SvPVx(((SVOP*)proto)->op_sv, na);
3114         sv_setpv((SV*)cv, p);
3115         op_free(proto);
3116     }
3117
3118     if (error_count) {
3119         op_free(block);
3120         block = Nullop;
3121     }
3122     if (!block) {
3123         copline = NOLINE;
3124         LEAVE_SCOPE(floor);
3125         return cv;
3126     }
3127
3128     av = newAV();                       /* Will be @_ */
3129     av_extend(av, 0);
3130     av_store(comppad, 0, (SV*)av);
3131     AvFLAGS(av) = AVf_REIFY;
3132
3133     for (ix = AvFILL(comppad); ix > 0; ix--) {
3134         if (!SvPADMY(curpad[ix]) && !SvIMMORTAL(curpad[ix]))
3135             SvPADTMP_on(curpad[ix]);
3136     }
3137
3138     if (AvFILL(comppad_name) < AvFILL(comppad))
3139         av_store(comppad_name, AvFILL(comppad), Nullsv);
3140
3141     CvROOT(cv) = newUNOP(OP_LEAVESUB, 0, scalarseq(block));
3142     CvSTART(cv) = LINKLIST(CvROOT(cv));
3143     CvROOT(cv)->op_next = 0;
3144     peep(CvSTART(cv));
3145
3146     if (name) {
3147         char *s;
3148
3149         if (perldb && curstash != debstash) {
3150             SV *sv;
3151             SV *tmpstr = sv_newmortal();
3152             static GV *db_postponed;
3153             CV *cv;
3154             HV *hv;
3155
3156             sprintf(buf, "%s:%ld",
3157                     SvPVX(GvSV(curcop->cop_filegv)), (long)subline);
3158             sv = newSVpv(buf,0);
3159             sv_catpv(sv,"-");
3160             sprintf(buf,"%ld",(long)curcop->cop_line);
3161             sv_catpv(sv,buf);
3162             gv_efullname3(tmpstr, gv, Nullch);
3163             hv_store(GvHV(DBsub), SvPVX(tmpstr), SvCUR(tmpstr), sv, 0);
3164             if (!db_postponed) {
3165                 db_postponed = gv_fetchpv("DB::postponed", TRUE, SVt_PVHV);
3166             }
3167             hv = GvHVn(db_postponed);
3168             if (HvFILL(hv) >= 0 && hv_exists(hv, SvPVX(tmpstr), SvCUR(tmpstr))
3169                 && (cv = GvCV(db_postponed))) {
3170                 dSP;
3171                 PUSHMARK(sp);
3172                 XPUSHs(tmpstr);
3173                 PUTBACK;
3174                 perl_call_sv((SV*)cv, G_DISCARD);
3175             }
3176         }
3177
3178         if ((s = strrchr(name,':')))
3179             s++;
3180         else
3181             s = name;
3182         if (strEQ(s, "BEGIN") && !error_count) {
3183             ENTER;
3184             SAVESPTR(compiling.cop_filegv);
3185             SAVEI16(compiling.cop_line);
3186             SAVEI32(perldb);
3187             save_svref(&rs);
3188             sv_setsv(rs, nrs);
3189
3190             if (!beginav)
3191                 beginav = newAV();
3192             DEBUG_x( dump_sub(gv) );
3193             av_push(beginav, (SV *)cv);
3194             GvCV(gv) = 0;
3195             calllist(beginav);
3196
3197             curcop = &compiling;
3198             LEAVE;
3199         }
3200         else if (strEQ(s, "END") && !error_count) {
3201             if (!endav)
3202                 endav = newAV();
3203             av_unshift(endav, 1);
3204             av_store(endav, 0, (SV *)cv);
3205             GvCV(gv) = 0;
3206         }
3207     }
3208
3209     copline = NOLINE;
3210     LEAVE_SCOPE(floor);
3211     return cv;
3212 }
3213
3214 #ifdef DEPRECATED
3215 CV *
3216 newXSUB(name, ix, subaddr, filename)
3217 char *name;
3218 I32 ix;
3219 I32 (*subaddr)();
3220 char *filename;
3221 {
3222     CV* cv = newXS(name, (void(*)())subaddr, filename);
3223     CvOLDSTYLE_on(cv);
3224     CvXSUBANY(cv).any_i32 = ix;
3225     return cv;
3226 }
3227 #endif
3228
3229 CV *
3230 newXS(name, subaddr, filename)
3231 char *name;
3232 void (*subaddr) _((CV*));
3233 char *filename;
3234 {
3235     GV *gv = gv_fetchpv(name ? name : "__ANON__", GV_ADDMULTI, SVt_PVCV);
3236     register CV *cv;
3237
3238     if (cv = (name ? GvCV(gv) : Nullcv)) {
3239         if (GvCVGEN(gv)) {
3240             /* just a cached method */
3241             SvREFCNT_dec(cv);
3242             cv = 0;
3243         }
3244         else if (CvROOT(cv) || CvXSUB(cv) || GvASSUMECV(gv)) {
3245             /* already defined (or promised) */
3246             if (dowarn) {
3247                 line_t oldline = curcop->cop_line;
3248                 curcop->cop_line = copline;
3249                 warn("Subroutine %s redefined",name);
3250                 curcop->cop_line = oldline;
3251             }
3252             SvREFCNT_dec(cv);
3253             cv = 0;
3254         }
3255     }
3256
3257     if (cv)                             /* must reuse cv if autoloaded */
3258         cv_undef(cv);
3259     else {
3260         cv = (CV*)NEWSV(1105,0);
3261         sv_upgrade((SV *)cv, SVt_PVCV);
3262         if (name) {
3263             GvCV(gv) = cv;
3264             GvCVGEN(gv) = 0;
3265             sub_generation++;
3266         }
3267     }
3268     CvGV(cv) = (GV*)SvREFCNT_inc(gv);
3269     CvFILEGV(cv) = gv_fetchfile(filename);
3270     CvXSUB(cv) = subaddr;
3271
3272     if (name) {
3273         char *s = strrchr(name,':');
3274         if (s)
3275             s++;
3276         else
3277             s = name;
3278         if (strEQ(s, "BEGIN")) {
3279             if (!beginav)
3280                 beginav = newAV();
3281             av_push(beginav, (SV *)cv);
3282             GvCV(gv) = 0;
3283         }
3284         else if (strEQ(s, "END")) {
3285             if (!endav)
3286                 endav = newAV();
3287             av_unshift(endav, 1);
3288             av_store(endav, 0, (SV *)cv);
3289             GvCV(gv) = 0;
3290         }
3291     }
3292     else
3293         CvANON_on(cv);
3294
3295     return cv;
3296 }
3297
3298 void
3299 newFORM(floor,op,block)
3300 I32 floor;
3301 OP *op;
3302 OP *block;
3303 {
3304     register CV *cv;
3305     char *name;
3306     GV *gv;
3307     I32 ix;
3308
3309     if (op)
3310         name = SvPVx(cSVOP->op_sv, na);
3311     else
3312         name = "STDOUT";
3313     gv = gv_fetchpv(name,TRUE, SVt_PVFM);
3314     GvMULTI_on(gv);
3315     if (cv = GvFORM(gv)) {
3316         if (dowarn) {
3317             line_t oldline = curcop->cop_line;
3318
3319             curcop->cop_line = copline;
3320             warn("Format %s redefined",name);
3321             curcop->cop_line = oldline;
3322         }
3323         SvREFCNT_dec(cv);
3324     }
3325     cv = compcv;
3326     GvFORM(gv) = cv;
3327     CvGV(cv) = (GV*)SvREFCNT_inc(gv);
3328     CvFILEGV(cv) = curcop->cop_filegv;
3329
3330     for (ix = AvFILL(comppad); ix > 0; ix--) {
3331         if (!SvPADMY(curpad[ix]) && !SvIMMORTAL(curpad[ix]))
3332             SvPADTMP_on(curpad[ix]);
3333     }
3334
3335     CvROOT(cv) = newUNOP(OP_LEAVEWRITE, 0, scalarseq(block));
3336     CvSTART(cv) = LINKLIST(CvROOT(cv));
3337     CvROOT(cv)->op_next = 0;
3338     peep(CvSTART(cv));
3339     op_free(op);
3340     copline = NOLINE;
3341     LEAVE_SCOPE(floor);
3342 }
3343
3344 OP *
3345 newANONLIST(op)
3346 OP* op;
3347 {
3348     return newUNOP(OP_REFGEN, 0,
3349         mod(list(convert(OP_ANONLIST, 0, op)), OP_REFGEN));
3350 }
3351
3352 OP *
3353 newANONHASH(op)
3354 OP* op;
3355 {
3356     return newUNOP(OP_REFGEN, 0,
3357         mod(list(convert(OP_ANONHASH, 0, op)), OP_REFGEN));
3358 }
3359
3360 OP *
3361 newANONSUB(floor, proto, block)
3362 I32 floor;
3363 OP *proto;
3364 OP *block;
3365 {
3366     return newUNOP(OP_REFGEN, 0,
3367         newSVOP(OP_ANONCODE, 0, (SV*)newSUB(floor, 0, proto, block)));
3368 }
3369
3370 OP *
3371 oopsAV(o)
3372 OP *o;
3373 {
3374     switch (o->op_type) {
3375     case OP_PADSV:
3376         o->op_type = OP_PADAV;
3377         o->op_ppaddr = ppaddr[OP_PADAV];
3378         return ref(newUNOP(OP_RV2AV, 0, scalar(o)), OP_RV2AV);
3379         
3380     case OP_RV2SV:
3381         o->op_type = OP_RV2AV;
3382         o->op_ppaddr = ppaddr[OP_RV2AV];
3383         ref(o, OP_RV2AV);
3384         break;
3385
3386     default:
3387         warn("oops: oopsAV");
3388         break;
3389     }
3390     return o;
3391 }
3392
3393 OP *
3394 oopsHV(o)
3395 OP *o;
3396 {
3397     switch (o->op_type) {
3398     case OP_PADSV:
3399     case OP_PADAV:
3400         o->op_type = OP_PADHV;
3401         o->op_ppaddr = ppaddr[OP_PADHV];
3402         return ref(newUNOP(OP_RV2HV, 0, scalar(o)), OP_RV2HV);
3403
3404     case OP_RV2SV:
3405     case OP_RV2AV:
3406         o->op_type = OP_RV2HV;
3407         o->op_ppaddr = ppaddr[OP_RV2HV];
3408         ref(o, OP_RV2HV);
3409         break;
3410
3411     default:
3412         warn("oops: oopsHV");
3413         break;
3414     }
3415     return o;
3416 }
3417
3418 OP *
3419 newAVREF(o)
3420 OP *o;
3421 {
3422     if (o->op_type == OP_PADANY) {
3423         o->op_type = OP_PADAV;
3424         o->op_ppaddr = ppaddr[OP_PADAV];
3425         return o;
3426     }
3427     return newUNOP(OP_RV2AV, 0, scalar(o));
3428 }
3429
3430 OP *
3431 newGVREF(type,o)
3432 I32 type;
3433 OP *o;
3434 {
3435     if (type == OP_MAPSTART)
3436         return newUNOP(OP_NULL, 0, o);
3437     return ref(newUNOP(OP_RV2GV, OPf_REF, o), type);
3438 }
3439
3440 OP *
3441 newHVREF(o)
3442 OP *o;
3443 {
3444     if (o->op_type == OP_PADANY) {
3445         o->op_type = OP_PADHV;
3446         o->op_ppaddr = ppaddr[OP_PADHV];
3447         return o;
3448     }
3449     return newUNOP(OP_RV2HV, 0, scalar(o));
3450 }
3451
3452 OP *
3453 oopsCV(o)
3454 OP *o;
3455 {
3456     croak("NOT IMPL LINE %d",__LINE__);
3457     /* STUB */
3458     return o;
3459 }
3460
3461 OP *
3462 newCVREF(flags, o)
3463 I32 flags;
3464 OP *o;
3465 {
3466     return newUNOP(OP_RV2CV, flags, scalar(o));
3467 }
3468
3469 OP *
3470 newSVREF(o)
3471 OP *o;
3472 {
3473     if (o->op_type == OP_PADANY) {
3474         o->op_type = OP_PADSV;
3475         o->op_ppaddr = ppaddr[OP_PADSV];
3476         return o;
3477     }
3478     return newUNOP(OP_RV2SV, 0, scalar(o));
3479 }
3480
3481 /* Check routines. */
3482
3483 OP *
3484 ck_anoncode(op)
3485 OP *op;
3486 {
3487     PADOFFSET ix;
3488     SV* name;
3489
3490     name = NEWSV(1106,0);
3491     sv_upgrade(name, SVt_PVNV);
3492     sv_setpvn(name, "&", 1);
3493     SvIVX(name) = -1;
3494     SvNVX(name) = 1;
3495     ix = pad_alloc(op->op_type, SVs_PADMY);
3496     av_store(comppad_name, ix, name);
3497     av_store(comppad, ix, cSVOP->op_sv);
3498     SvPADMY_on(cSVOP->op_sv);
3499     cSVOP->op_sv = Nullsv;
3500     cSVOP->op_targ = ix;
3501     return op;
3502 }
3503
3504 OP *
3505 ck_bitop(op)
3506 OP *op;
3507 {
3508     op->op_private = hints;
3509     return op;
3510 }
3511
3512 OP *
3513 ck_concat(op)
3514 OP *op;
3515 {
3516     if (cUNOP->op_first->op_type == OP_CONCAT)
3517         op->op_flags |= OPf_STACKED;
3518     return op;
3519 }
3520
3521 OP *
3522 ck_spair(op)
3523 OP *op;
3524 {
3525     if (op->op_flags & OPf_KIDS) {
3526         OP* newop;
3527         OP* kid;
3528         OPCODE type = op->op_type;
3529         op = modkids(ck_fun(op), type);
3530         kid = cUNOP->op_first;
3531         newop = kUNOP->op_first->op_sibling;
3532         if (newop &&
3533             (newop->op_sibling ||
3534              !(opargs[newop->op_type] & OA_RETSCALAR) ||
3535              newop->op_type == OP_PADAV || newop->op_type == OP_PADHV ||
3536              newop->op_type == OP_RV2AV || newop->op_type == OP_RV2HV)) {
3537             
3538             return op;
3539         }
3540         op_free(kUNOP->op_first);
3541         kUNOP->op_first = newop;
3542     }
3543     op->op_ppaddr = ppaddr[++op->op_type];
3544     return ck_fun(op);
3545 }
3546
3547 OP *
3548 ck_delete(op)
3549 OP *op;
3550 {
3551     op = ck_fun(op);
3552     op->op_private = 0;
3553     if (op->op_flags & OPf_KIDS) {
3554         OP *kid = cUNOP->op_first;
3555         if (kid->op_type == OP_HSLICE)
3556             op->op_private |= OPpSLICE;
3557         else if (kid->op_type != OP_HELEM)
3558             croak("%s argument is not a HASH element or slice",
3559                   op_desc[op->op_type]);
3560         null(kid);
3561     }
3562     return op;
3563 }
3564
3565 OP *
3566 ck_eof(op)
3567 OP *op;
3568 {
3569     I32 type = op->op_type;
3570
3571     if (op->op_flags & OPf_KIDS) {
3572         if (cLISTOP->op_first->op_type == OP_STUB) {
3573             op_free(op);
3574             op = newUNOP(type, OPf_SPECIAL,
3575                 newGVOP(OP_GV, 0, gv_fetchpv("main'ARGV", TRUE, SVt_PVAV)));
3576         }
3577         return ck_fun(op);
3578     }
3579     return op;
3580 }
3581
3582 OP *
3583 ck_eval(op)
3584 OP *op;
3585 {
3586     hints |= HINT_BLOCK_SCOPE;
3587     if (op->op_flags & OPf_KIDS) {
3588         SVOP *kid = (SVOP*)cUNOP->op_first;
3589
3590         if (!kid) {
3591             op->op_flags &= ~OPf_KIDS;
3592             null(op);
3593         }
3594         else if (kid->op_type == OP_LINESEQ) {
3595             LOGOP *enter;
3596
3597             kid->op_next = op->op_next;
3598             cUNOP->op_first = 0;
3599             op_free(op);
3600
3601             Newz(1101, enter, 1, LOGOP);
3602             enter->op_type = OP_ENTERTRY;
3603             enter->op_ppaddr = ppaddr[OP_ENTERTRY];
3604             enter->op_private = 0;
3605
3606             /* establish postfix order */
3607             enter->op_next = (OP*)enter;
3608
3609             op = prepend_elem(OP_LINESEQ, (OP*)enter, (OP*)kid);
3610             op->op_type = OP_LEAVETRY;
3611             op->op_ppaddr = ppaddr[OP_LEAVETRY];
3612             enter->op_other = op;
3613             return op;
3614         }
3615     }
3616     else {
3617         op_free(op);
3618         op = newUNOP(OP_ENTEREVAL, 0, newSVREF(newGVOP(OP_GV, 0, defgv)));
3619     }
3620     op->op_targ = (PADOFFSET)hints;
3621     return op;
3622 }
3623
3624 OP *
3625 ck_exec(op)
3626 OP *op;
3627 {
3628     OP *kid;
3629     if (op->op_flags & OPf_STACKED) {
3630         op = ck_fun(op);
3631         kid = cUNOP->op_first->op_sibling;
3632         if (kid->op_type == OP_RV2GV)
3633             null(kid);
3634     }
3635     else
3636         op = listkids(op);
3637     return op;
3638 }
3639
3640 OP *
3641 ck_exists(op)
3642 OP *op;
3643 {
3644     op = ck_fun(op);
3645     if (op->op_flags & OPf_KIDS) {
3646         OP *kid = cUNOP->op_first;
3647         if (kid->op_type != OP_HELEM)
3648             croak("%s argument is not a HASH element", op_desc[op->op_type]);
3649         null(kid);
3650     }
3651     return op;
3652 }
3653
3654 OP *
3655 ck_gvconst(o)
3656 register OP *o;
3657 {
3658     o = fold_constants(o);
3659     if (o->op_type == OP_CONST)
3660         o->op_type = OP_GV;
3661     return o;
3662 }
3663
3664 OP *
3665 ck_rvconst(op)
3666 register OP *op;
3667 {
3668     SVOP *kid = (SVOP*)cUNOP->op_first;
3669
3670     op->op_private |= (hints & HINT_STRICT_REFS);
3671     if (kid->op_type == OP_CONST) {
3672         char *name;
3673         int iscv;
3674         GV *gv;
3675
3676         name = SvPV(kid->op_sv, na);
3677         if ((hints & HINT_STRICT_REFS) && (kid->op_private & OPpCONST_BARE)) {
3678             char *badthing = Nullch;
3679             switch (op->op_type) {
3680             case OP_RV2SV:
3681                 badthing = "a SCALAR";
3682                 break;
3683             case OP_RV2AV:
3684                 badthing = "an ARRAY";
3685                 break;
3686             case OP_RV2HV:
3687                 badthing = "a HASH";
3688                 break;
3689             }
3690             if (badthing)
3691                 croak(
3692           "Can't use bareword (\"%s\") as %s ref while \"strict refs\" in use",
3693                       name, badthing);
3694         }
3695         kid->op_type = OP_GV;
3696         iscv = (op->op_type == OP_RV2CV) * 2;
3697         for (gv = 0; !gv; iscv++) {
3698             /*
3699              * This is a little tricky.  We only want to add the symbol if we
3700              * didn't add it in the lexer.  Otherwise we get duplicate strict
3701              * warnings.  But if we didn't add it in the lexer, we must at
3702              * least pretend like we wanted to add it even if it existed before,
3703              * or we get possible typo warnings.  OPpCONST_ENTERED says
3704              * whether the lexer already added THIS instance of this symbol.
3705              */
3706             gv = gv_fetchpv(name,
3707                 iscv | !(kid->op_private & OPpCONST_ENTERED),
3708                 iscv
3709                     ? SVt_PVCV
3710                     : op->op_type == OP_RV2SV
3711                         ? SVt_PV
3712                         : op->op_type == OP_RV2AV
3713                             ? SVt_PVAV
3714                             : op->op_type == OP_RV2HV
3715                                 ? SVt_PVHV
3716                                 : SVt_PVGV);
3717         }
3718         SvREFCNT_dec(kid->op_sv);
3719         kid->op_sv = SvREFCNT_inc(gv);
3720     }
3721     return op;
3722 }
3723
3724 OP *
3725 ck_ftst(op)
3726 OP *op;
3727 {
3728     I32 type = op->op_type;
3729
3730     if (op->op_flags & OPf_REF)
3731         return op;
3732
3733     if (op->op_flags & OPf_KIDS) {
3734         SVOP *kid = (SVOP*)cUNOP->op_first;
3735
3736         if (kid->op_type == OP_CONST && (kid->op_private & OPpCONST_BARE)) {
3737             OP *newop = newGVOP(type, OPf_REF,
3738                 gv_fetchpv(SvPVx(kid->op_sv, na), TRUE, SVt_PVIO));
3739             op_free(op);
3740             return newop;
3741         }
3742     }
3743     else {
3744         op_free(op);
3745         if (type == OP_FTTTY)
3746             return newGVOP(type, OPf_REF, gv_fetchpv("main'STDIN", TRUE,
3747                                 SVt_PVIO));
3748         else
3749             return newUNOP(type, 0, newSVREF(newGVOP(OP_GV, 0, defgv)));
3750     }
3751     return op;
3752 }
3753
3754 OP *
3755 ck_fun(op)
3756 OP *op;
3757 {
3758     register OP *kid;
3759     OP **tokid;
3760     OP *sibl;
3761     I32 numargs = 0;
3762     int type = op->op_type;
3763     register I32 oa = opargs[type] >> OASHIFT;
3764     
3765     if (op->op_flags & OPf_STACKED) {
3766         if ((oa & OA_OPTIONAL) && (oa >> 4) && !((oa >> 4) & OA_OPTIONAL))
3767             oa &= ~OA_OPTIONAL;
3768         else
3769             return no_fh_allowed(op);
3770     }
3771
3772     if (op->op_flags & OPf_KIDS) {
3773         tokid = &cLISTOP->op_first;
3774         kid = cLISTOP->op_first;
3775         if (kid->op_type == OP_PUSHMARK ||
3776             kid->op_type == OP_NULL && kid->op_targ == OP_PUSHMARK)
3777         {
3778             tokid = &kid->op_sibling;
3779             kid = kid->op_sibling;
3780         }
3781         if (!kid && opargs[type] & OA_DEFGV)
3782             *tokid = kid = newSVREF(newGVOP(OP_GV, 0, defgv));
3783
3784         while (oa && kid) {
3785             numargs++;
3786             sibl = kid->op_sibling;
3787             switch (oa & 7) {
3788             case OA_SCALAR:
3789                 scalar(kid);
3790                 break;
3791             case OA_LIST:
3792                 if (oa < 16) {
3793                     kid = 0;
3794                     continue;
3795                 }
3796                 else
3797                     list(kid);
3798                 break;
3799             case OA_AVREF:
3800                 if (kid->op_type == OP_CONST &&
3801                   (kid->op_private & OPpCONST_BARE)) {
3802                     char *name = SvPVx(((SVOP*)kid)->op_sv, na);
3803                     OP *newop = newAVREF(newGVOP(OP_GV, 0,
3804                         gv_fetchpv(name, TRUE, SVt_PVAV) ));
3805                     if (dowarn)
3806                         warn("Array @%s missing the @ in argument %ld of %s()",
3807                             name, (long)numargs, op_desc[type]);
3808                     op_free(kid);
3809                     kid = newop;
3810                     kid->op_sibling = sibl;
3811                     *tokid = kid;
3812                 }
3813                 else if (kid->op_type != OP_RV2AV && kid->op_type != OP_PADAV)
3814                     bad_type(numargs, "array", op_desc[op->op_type], kid);
3815                 mod(kid, type);
3816                 break;
3817             case OA_HVREF:
3818                 if (kid->op_type == OP_CONST &&
3819                   (kid->op_private & OPpCONST_BARE)) {
3820                     char *name = SvPVx(((SVOP*)kid)->op_sv, na);
3821                     OP *newop = newHVREF(newGVOP(OP_GV, 0,
3822                         gv_fetchpv(name, TRUE, SVt_PVHV) ));
3823                     if (dowarn)
3824                         warn("Hash %%%s missing the %% in argument %ld of %s()",
3825                             name, (long)numargs, op_desc[type]);
3826                     op_free(kid);
3827                     kid = newop;
3828                     kid->op_sibling = sibl;
3829                     *tokid = kid;
3830                 }
3831                 else if (kid->op_type != OP_RV2HV && kid->op_type != OP_PADHV)
3832                     bad_type(numargs, "hash", op_desc[op->op_type], kid);
3833                 mod(kid, type);
3834                 break;
3835             case OA_CVREF:
3836                 {
3837                     OP *newop = newUNOP(OP_NULL, 0, kid);
3838                     kid->op_sibling = 0;
3839                     linklist(kid);
3840                     newop->op_next = newop;
3841                     kid = newop;
3842                     kid->op_sibling = sibl;
3843                     *tokid = kid;
3844                 }
3845                 break;
3846             case OA_FILEREF:
3847                 if (kid->op_type != OP_GV) {
3848                     if (kid->op_type == OP_CONST &&
3849                       (kid->op_private & OPpCONST_BARE)) {
3850                         OP *newop = newGVOP(OP_GV, 0,
3851                             gv_fetchpv(SvPVx(((SVOP*)kid)->op_sv, na), TRUE,
3852                                         SVt_PVIO) );
3853                         op_free(kid);
3854                         kid = newop;
3855                     }
3856                     else {
3857                         kid->op_sibling = 0;
3858                         kid = newUNOP(OP_RV2GV, 0, scalar(kid));
3859                     }
3860                     kid->op_sibling = sibl;
3861                     *tokid = kid;
3862                 }
3863                 scalar(kid);
3864                 break;
3865             case OA_SCALARREF:
3866                 mod(scalar(kid), type);
3867                 break;
3868             }
3869             oa >>= 4;
3870             tokid = &kid->op_sibling;
3871             kid = kid->op_sibling;
3872         }
3873         op->op_private |= numargs;
3874         if (kid)
3875             return too_many_arguments(op,op_desc[op->op_type]);
3876         listkids(op);
3877     }
3878     else if (opargs[type] & OA_DEFGV) {
3879         op_free(op);
3880         return newUNOP(type, 0, newSVREF(newGVOP(OP_GV, 0, defgv)));
3881     }
3882
3883     if (oa) {
3884         while (oa & OA_OPTIONAL)
3885             oa >>= 4;
3886         if (oa && oa != OA_LIST)
3887             return too_few_arguments(op,op_desc[op->op_type]);
3888     }
3889     return op;
3890 }
3891
3892 OP *
3893 ck_glob(op)
3894 OP *op;
3895 {
3896     GV *gv = gv_fetchpv("glob", FALSE, SVt_PVCV);
3897
3898     if (gv && GvIMPORTED_CV(gv)) {
3899         op->op_type = OP_LIST;
3900         op->op_ppaddr = ppaddr[OP_LIST];
3901         op = newUNOP(OP_ENTERSUB, OPf_STACKED,
3902                      append_elem(OP_LIST, op, 
3903                                  scalar(newUNOP(OP_RV2CV, 0,
3904                                                 newGVOP(OP_GV, 0, gv)))));
3905         return ck_subr(op);
3906     }
3907     if ((op->op_flags & OPf_KIDS) && !cLISTOP->op_first->op_sibling)
3908         append_elem(OP_GLOB, op, newSVREF(newGVOP(OP_GV, 0, defgv)));
3909     gv = newGVgen("main");
3910     gv_IOadd(gv);
3911     append_elem(OP_GLOB, op, newGVOP(OP_GV, 0, gv));
3912     scalarkids(op);
3913     return ck_fun(op);
3914 }
3915
3916 OP *
3917 ck_grep(op)
3918 OP *op;
3919 {
3920     LOGOP *gwop;
3921     OP *kid;
3922     OPCODE type = op->op_type == OP_GREPSTART ? OP_GREPWHILE : OP_MAPWHILE;
3923
3924     op->op_ppaddr = ppaddr[OP_GREPSTART];
3925     Newz(1101, gwop, 1, LOGOP);
3926     
3927     if (op->op_flags & OPf_STACKED) {
3928         OP* k;
3929         op = ck_sort(op);
3930         kid = cLISTOP->op_first->op_sibling;
3931         for (k = cLISTOP->op_first->op_sibling->op_next; k; k = k->op_next) {
3932             kid = k;
3933         }
3934         kid->op_next = (OP*)gwop;
3935         op->op_flags &= ~OPf_STACKED;
3936     }
3937     kid = cLISTOP->op_first->op_sibling;
3938     if (type == OP_MAPWHILE)
3939         list(kid);
3940     else
3941         scalar(kid);
3942     op = ck_fun(op);
3943     if (error_count)
3944         return op;
3945     kid = cLISTOP->op_first->op_sibling; 
3946     if (kid->op_type != OP_NULL)
3947         croak("panic: ck_grep");
3948     kid = kUNOP->op_first;
3949
3950     gwop->op_type = type;
3951     gwop->op_ppaddr = ppaddr[type];
3952     gwop->op_first = listkids(op);
3953     gwop->op_flags |= OPf_KIDS;
3954     gwop->op_private = 1;
3955     gwop->op_other = LINKLIST(kid);
3956     gwop->op_targ = pad_alloc(type, SVs_PADTMP);
3957     kid->op_next = (OP*)gwop;
3958
3959     kid = cLISTOP->op_first->op_sibling;
3960     if (!kid || !kid->op_sibling)
3961         return too_few_arguments(op,op_desc[op->op_type]);
3962     for (kid = kid->op_sibling; kid; kid = kid->op_sibling)
3963         mod(kid, OP_GREPSTART);
3964
3965     return (OP*)gwop;
3966 }
3967
3968 OP *
3969 ck_index(op)
3970 OP *op;
3971 {
3972     if (op->op_flags & OPf_KIDS) {
3973         OP *kid = cLISTOP->op_first->op_sibling;        /* get past pushmark */
3974         if (kid && kid->op_type == OP_CONST)
3975             fbm_compile(((SVOP*)kid)->op_sv);
3976     }
3977     return ck_fun(op);
3978 }
3979
3980 OP *
3981 ck_lengthconst(op)
3982 OP *op;
3983 {
3984     /* XXX length optimization goes here */
3985     return ck_fun(op);
3986 }
3987
3988 OP *
3989 ck_lfun(op)
3990 OP *op;
3991 {
3992     OPCODE type = op->op_type;
3993     return modkids(ck_fun(op), type);
3994 }
3995
3996 OP *
3997 ck_rfun(op)
3998 OP *op;
3999 {
4000     OPCODE type = op->op_type;
4001     return refkids(ck_fun(op), type);
4002 }
4003
4004 OP *
4005 ck_listiob(op)
4006 OP *op;
4007 {
4008     register OP *kid;
4009     
4010     kid = cLISTOP->op_first;
4011     if (!kid) {
4012         op = force_list(op);
4013         kid = cLISTOP->op_first;
4014     }
4015     if (kid->op_type == OP_PUSHMARK)
4016         kid = kid->op_sibling;
4017     if (kid && op->op_flags & OPf_STACKED)
4018         kid = kid->op_sibling;
4019     else if (kid && !kid->op_sibling) {         /* print HANDLE; */
4020         if (kid->op_type == OP_CONST && kid->op_private & OPpCONST_BARE) {
4021             op->op_flags |= OPf_STACKED;        /* make it a filehandle */
4022             kid = newUNOP(OP_RV2GV, OPf_REF, scalar(kid));
4023             cLISTOP->op_first->op_sibling = kid;
4024             cLISTOP->op_last = kid;
4025             kid = kid->op_sibling;
4026         }
4027     }
4028         
4029     if (!kid)
4030         append_elem(op->op_type, op, newSVREF(newGVOP(OP_GV, 0, defgv)) );
4031
4032     op = listkids(op);
4033
4034     op->op_private = 0;
4035 #ifdef USE_LOCALE
4036     if (hints & HINT_LOCALE)
4037         op->op_private |= OPpLOCALE;
4038 #endif
4039
4040     return op;
4041 }
4042
4043 OP *
4044 ck_fun_locale(op)
4045 OP *op;
4046 {
4047     op = ck_fun(op);
4048
4049     op->op_private = 0;
4050 #ifdef USE_LOCALE
4051     if (hints & HINT_LOCALE)
4052         op->op_private |= OPpLOCALE;
4053 #endif
4054
4055     return op;
4056 }
4057
4058 OP *
4059 ck_scmp(op)
4060 OP *op;
4061 {
4062     op->op_private = 0;
4063 #ifdef USE_LOCALE
4064     if (hints & HINT_LOCALE)
4065         op->op_private |= OPpLOCALE;
4066 #endif
4067
4068     return op;
4069 }
4070
4071 OP *
4072 ck_match(op)
4073 OP *op;
4074 {
4075     cPMOP->op_pmflags |= PMf_RUNTIME;
4076     cPMOP->op_pmpermflags |= PMf_RUNTIME;
4077     return op;
4078 }
4079
4080 OP *
4081 ck_null(op)
4082 OP *op;
4083 {
4084     return op;
4085 }
4086
4087 OP *
4088 ck_repeat(op)
4089 OP *op;
4090 {
4091     if (cBINOP->op_first->op_flags & OPf_PARENS) {
4092         op->op_private |= OPpREPEAT_DOLIST;
4093         cBINOP->op_first = force_list(cBINOP->op_first);
4094     }
4095     else
4096         scalar(op);
4097     return op;
4098 }
4099
4100 OP *
4101 ck_require(op)
4102 OP *op;
4103 {
4104     if (op->op_flags & OPf_KIDS) {      /* Shall we supply missing .pm? */
4105         SVOP *kid = (SVOP*)cUNOP->op_first;
4106
4107         if (kid->op_type == OP_CONST && (kid->op_private & OPpCONST_BARE)) {
4108             char *s;
4109             for (s = SvPVX(kid->op_sv); *s; s++) {
4110                 if (*s == ':' && s[1] == ':') {
4111                     *s = '/';
4112                     Move(s+2, s+1, strlen(s+2)+1, char);
4113                     --SvCUR(kid->op_sv);
4114                 }
4115             }
4116             sv_catpvn(kid->op_sv, ".pm", 3);
4117         }
4118     }
4119     return ck_fun(op);
4120 }
4121
4122 OP *
4123 ck_retarget(op)
4124 OP *op;
4125 {
4126     croak("NOT IMPL LINE %d",__LINE__);
4127     /* STUB */
4128     return op;
4129 }
4130
4131 OP *
4132 ck_select(op)
4133 OP *op;
4134 {
4135     OP* kid;
4136     if (op->op_flags & OPf_KIDS) {
4137         kid = cLISTOP->op_first->op_sibling;    /* get past pushmark */
4138         if (kid && kid->op_sibling) {
4139             op->op_type = OP_SSELECT;
4140             op->op_ppaddr = ppaddr[OP_SSELECT];
4141             op = ck_fun(op);
4142             return fold_constants(op);
4143         }
4144     }
4145     op = ck_fun(op);
4146     kid = cLISTOP->op_first->op_sibling;    /* get past pushmark */
4147     if (kid && kid->op_type == OP_RV2GV)
4148         kid->op_private &= ~HINT_STRICT_REFS;
4149     return op;
4150 }
4151
4152 OP *
4153 ck_shift(op)
4154 OP *op;
4155 {
4156     I32 type = op->op_type;
4157
4158     if (!(op->op_flags & OPf_KIDS)) {
4159         op_free(op);
4160         return newUNOP(type, 0,
4161             scalar(newUNOP(OP_RV2AV, 0,
4162                 scalar(newGVOP(OP_GV, 0, subline 
4163                                ? defgv 
4164                                : gv_fetchpv("ARGV", TRUE, SVt_PVAV) )))));
4165     }
4166     return scalar(modkids(ck_fun(op), type));
4167 }
4168
4169 OP *
4170 ck_sort(op)
4171 OP *op;
4172 {
4173     op->op_private = 0;
4174 #ifdef USE_LOCALE
4175     if (hints & HINT_LOCALE)
4176         op->op_private |= OPpLOCALE;
4177 #endif
4178
4179     if (op->op_flags & OPf_STACKED) {
4180         OP *kid = cLISTOP->op_first->op_sibling;        /* get past pushmark */
4181         OP *k;
4182         kid = kUNOP->op_first;                          /* get past rv2gv */
4183
4184         if (kid->op_type == OP_SCOPE || kid->op_type == OP_LEAVE) {
4185             linklist(kid);
4186             if (kid->op_type == OP_SCOPE) {
4187                 k = kid->op_next;
4188                 kid->op_next = 0;
4189             }
4190             else if (kid->op_type == OP_LEAVE) {
4191                 if (op->op_type == OP_SORT) {
4192                     null(kid);                  /* wipe out leave */
4193                     kid->op_next = kid;
4194
4195                     for (k = kLISTOP->op_first->op_next; k; k = k->op_next) {
4196                         if (k->op_next == kid)
4197                             k->op_next = 0;
4198                     }
4199                 }
4200                 else
4201                     kid->op_next = 0;           /* just disconnect the leave */
4202                 k = kLISTOP->op_first;
4203             }
4204             peep(k);
4205
4206             kid = cLISTOP->op_first->op_sibling;        /* get past pushmark */
4207             null(kid);                                  /* wipe out rv2gv */
4208             if (op->op_type == OP_SORT)
4209                 kid->op_next = kid;
4210             else
4211                 kid->op_next = k;
4212             op->op_flags |= OPf_SPECIAL;
4213         }
4214     }
4215
4216     return op;
4217 }
4218
4219 OP *
4220 ck_split(op)
4221 OP *op;
4222 {
4223     register OP *kid;
4224     PMOP* pm;
4225     
4226     if (op->op_flags & OPf_STACKED)
4227         return no_fh_allowed(op);
4228
4229     kid = cLISTOP->op_first;
4230     if (kid->op_type != OP_NULL)
4231         croak("panic: ck_split");
4232     kid = kid->op_sibling;
4233     op_free(cLISTOP->op_first);
4234     cLISTOP->op_first = kid;
4235     if (!kid) {
4236         cLISTOP->op_first = kid = newSVOP(OP_CONST, 0, newSVpv(" ", 1));
4237         cLISTOP->op_last = kid; /* There was only one element previously */
4238     }
4239
4240     if (kid->op_type != OP_MATCH) {
4241         OP *sibl = kid->op_sibling;
4242         kid->op_sibling = 0;
4243         kid = pmruntime( newPMOP(OP_MATCH, OPf_SPECIAL), kid, Nullop);
4244         if (cLISTOP->op_first == cLISTOP->op_last)
4245             cLISTOP->op_last = kid;
4246         cLISTOP->op_first = kid;
4247         kid->op_sibling = sibl;
4248     }
4249     pm = (PMOP*)kid;
4250     if (pm->op_pmshort && !(pm->op_pmflags & PMf_ALL)) {
4251         SvREFCNT_dec(pm->op_pmshort);   /* can't use substring to optimize */
4252         pm->op_pmshort = 0;
4253     }
4254
4255     kid->op_type = OP_PUSHRE;
4256     kid->op_ppaddr = ppaddr[OP_PUSHRE];
4257     scalar(kid);
4258
4259     if (!kid->op_sibling)
4260         append_elem(OP_SPLIT, op, newSVREF(newGVOP(OP_GV, 0, defgv)) );
4261
4262     kid = kid->op_sibling;
4263     scalar(kid);
4264
4265     if (!kid->op_sibling)
4266         append_elem(OP_SPLIT, op, newSVOP(OP_CONST, 0, newSViv(0)));
4267
4268     kid = kid->op_sibling;
4269     scalar(kid);
4270
4271     if (kid->op_sibling)
4272         return too_many_arguments(op,op_desc[op->op_type]);
4273
4274     return op;
4275 }
4276
4277 OP *
4278 ck_subr(op)
4279 OP *op;
4280 {
4281     OP *prev = ((cUNOP->op_first->op_sibling)
4282              ? cUNOP : ((UNOP*)cUNOP->op_first))->op_first;
4283     OP *o = prev->op_sibling;
4284     OP *cvop;
4285     char *proto = 0;
4286     CV *cv = 0;
4287     int optional = 0;
4288     I32 arg = 0;
4289
4290     for (cvop = o; cvop->op_sibling; cvop = cvop->op_sibling) ;
4291     if (cvop->op_type == OP_RV2CV) {
4292         SVOP* tmpop;
4293         op->op_private |= (cvop->op_private & OPpENTERSUB_AMPER);
4294         null(cvop);             /* disable rv2cv */
4295         tmpop = (SVOP*)((UNOP*)cvop)->op_first;
4296         if (tmpop->op_type == OP_GV) {
4297             cv = GvCVu(tmpop->op_sv);
4298             if (cv && SvPOK(cv) && !(op->op_private & OPpENTERSUB_AMPER))
4299                 proto = SvPV((SV*)cv,na);
4300         }
4301     }
4302     op->op_private |= (hints & HINT_STRICT_REFS);
4303     if (perldb && curstash != debstash)
4304         op->op_private |= OPpENTERSUB_DB;
4305     while (o != cvop) {
4306         if (proto) {
4307             switch (*proto) {
4308             case '\0':
4309                 return too_many_arguments(op, CvNAME(cv));
4310             case ';':
4311                 optional = 1;
4312                 proto++;
4313                 continue;
4314             case '$':
4315                 proto++;
4316                 arg++;
4317                 scalar(o);
4318                 break;
4319             case '%':
4320             case '@':
4321                 list(o);
4322                 arg++;
4323                 break;
4324             case '&':
4325                 proto++;
4326                 arg++;
4327                 if (o->op_type != OP_REFGEN && o->op_type != OP_UNDEF)
4328                     bad_type(arg, "block", CvNAME(cv), o);
4329                 break;
4330             case '*':
4331                 proto++;
4332                 arg++;
4333                 if (o->op_type == OP_RV2GV)
4334                     goto wrapref;
4335                 {
4336                     OP* kid = o;
4337                     o = newUNOP(OP_RV2GV, 0, kid);
4338                     o->op_sibling = kid->op_sibling;
4339                     kid->op_sibling = 0;
4340                     prev->op_sibling = o;
4341                 }
4342                 goto wrapref;
4343             case '\\':
4344                 proto++;
4345                 arg++;
4346                 switch (*proto++) {
4347                 case '*':
4348                     if (o->op_type != OP_RV2GV)
4349                         bad_type(arg, "symbol", CvNAME(cv), o);
4350                     goto wrapref;
4351                 case '&':
4352                     if (o->op_type != OP_RV2CV)
4353                         bad_type(arg, "sub", CvNAME(cv), o);
4354                     goto wrapref;
4355                 case '$':
4356                     if (o->op_type != OP_RV2SV && o->op_type != OP_PADSV)
4357                         bad_type(arg, "scalar", CvNAME(cv), o);
4358                     goto wrapref;
4359                 case '@':
4360                     if (o->op_type != OP_RV2AV && o->op_type != OP_PADAV)
4361                         bad_type(arg, "array", CvNAME(cv), o);
4362                     goto wrapref;
4363                 case '%':
4364                     if (o->op_type != OP_RV2HV && o->op_type != OP_PADHV)
4365                         bad_type(arg, "hash", CvNAME(cv), o);
4366                   wrapref:
4367                     {
4368                         OP* kid = o;
4369                         o = newUNOP(OP_REFGEN, 0, kid);
4370                         o->op_sibling = kid->op_sibling;
4371                         kid->op_sibling = 0;
4372                         prev->op_sibling = o;
4373                     }
4374                     break;
4375                 default: goto oops;
4376                 }
4377                 break;
4378             case ' ':
4379                 proto++;
4380                 continue;
4381             default:
4382               oops:
4383                 croak("Malformed prototype for %s: %s",
4384                         CvNAME(cv),SvPV((SV*)cv,na));
4385             }
4386         }
4387         else
4388             list(o);
4389         mod(o, OP_ENTERSUB);
4390         prev = o;
4391         o = o->op_sibling;
4392     }
4393     if (proto && !optional && *proto == '$')
4394         return too_few_arguments(op, CvNAME(cv));
4395     return op;
4396 }
4397
4398 OP *
4399 ck_svconst(op)
4400 OP *op;
4401 {
4402     SvREADONLY_on(cSVOP->op_sv);
4403     return op;
4404 }
4405
4406 OP *
4407 ck_trunc(op)
4408 OP *op;
4409 {
4410     if (op->op_flags & OPf_KIDS) {
4411         SVOP *kid = (SVOP*)cUNOP->op_first;
4412
4413         if (kid->op_type == OP_NULL)
4414             kid = (SVOP*)kid->op_sibling;
4415         if (kid &&
4416           kid->op_type == OP_CONST && (kid->op_private & OPpCONST_BARE))
4417             op->op_flags |= OPf_SPECIAL;
4418     }
4419     return ck_fun(op);
4420 }
4421
4422 /* A peephole optimizer.  We visit the ops in the order they're to execute. */
4423
4424 void
4425 peep(o)
4426 register OP* o;
4427 {
4428     register OP* oldop = 0;
4429     if (!o || o->op_seq)
4430         return;
4431     ENTER;
4432     SAVESPTR(op);
4433     SAVESPTR(curcop);
4434     for (; o; o = o->op_next) {
4435         if (o->op_seq)
4436             break;
4437         if (!op_seqmax)
4438             op_seqmax++;
4439         op = o;
4440         switch (o->op_type) {
4441         case OP_NEXTSTATE:
4442         case OP_DBSTATE:
4443             curcop = ((COP*)o);         /* for warnings */
4444             o->op_seq = op_seqmax++;
4445             break;
4446
4447         case OP_CONCAT:
4448         case OP_CONST:
4449         case OP_JOIN:
4450         case OP_UC:
4451         case OP_UCFIRST:
4452         case OP_LC:
4453         case OP_LCFIRST:
4454         case OP_QUOTEMETA:
4455             if (o->op_next->op_type == OP_STRINGIFY)
4456                 null(o->op_next);
4457             o->op_seq = op_seqmax++;
4458             break;
4459         case OP_STUB:
4460             if ((o->op_flags & (OPf_KNOW|OPf_LIST)) != (OPf_KNOW|OPf_LIST)) {
4461                 o->op_seq = op_seqmax++;
4462                 break;  /* Scalar stub must produce undef.  List stub is noop */
4463             }
4464             goto nothin;
4465         case OP_NULL:
4466             if (o->op_targ == OP_NEXTSTATE || o->op_targ == OP_DBSTATE)
4467                 curcop = ((COP*)op);
4468             goto nothin;
4469         case OP_SCALAR:
4470         case OP_LINESEQ:
4471         case OP_SCOPE:
4472           nothin:
4473             if (oldop && o->op_next) {
4474                 oldop->op_next = o->op_next;
4475                 continue;
4476             }
4477             o->op_seq = op_seqmax++;
4478             break;
4479
4480         case OP_GV:
4481             if (o->op_next->op_type == OP_RV2SV) {
4482                 if (!(o->op_next->op_private & OPpDEREF)) {
4483                     null(o->op_next);
4484                     o->op_private |= o->op_next->op_private & OPpLVAL_INTRO;
4485                     o->op_next = o->op_next->op_next;
4486                     o->op_type = OP_GVSV;
4487                     o->op_ppaddr = ppaddr[OP_GVSV];
4488                 }
4489             }
4490             else if (o->op_next->op_type == OP_RV2AV) {
4491                 OP* pop = o->op_next->op_next;
4492                 IV i;
4493                 if (pop->op_type == OP_CONST &&
4494                     (op = pop->op_next) &&
4495                     pop->op_next->op_type == OP_AELEM &&
4496                     !(pop->op_next->op_private & (OPpDEREF|OPpLVAL_INTRO)) &&
4497                     (i = SvIV(((SVOP*)pop)->op_sv) - compiling.cop_arybase)
4498                                 <= 255 &&
4499                     i >= 0)
4500                 {
4501                     SvREFCNT_dec(((SVOP*)pop)->op_sv);
4502                     null(o->op_next);
4503                     null(pop->op_next);
4504                     null(pop);
4505                     o->op_flags |= pop->op_next->op_flags & OPf_MOD;
4506                     o->op_next = pop->op_next->op_next;
4507                     o->op_type = OP_AELEMFAST;
4508                     o->op_ppaddr = ppaddr[OP_AELEMFAST];
4509                     o->op_private = (U8)i;
4510                     GvAVn(((GVOP*)o)->op_gv);
4511                 }
4512             }
4513             o->op_seq = op_seqmax++;
4514             break;
4515
4516         case OP_MAPWHILE:
4517         case OP_GREPWHILE:
4518         case OP_AND:
4519         case OP_OR:
4520             o->op_seq = op_seqmax++;
4521             peep(cLOGOP->op_other);
4522             break;
4523
4524         case OP_COND_EXPR:
4525             o->op_seq = op_seqmax++;
4526             peep(cCONDOP->op_true);
4527             peep(cCONDOP->op_false);
4528             break;
4529
4530         case OP_ENTERLOOP:
4531             o->op_seq = op_seqmax++;
4532             peep(cLOOP->op_redoop);
4533             peep(cLOOP->op_nextop);
4534             peep(cLOOP->op_lastop);
4535             break;
4536
4537         case OP_MATCH:
4538         case OP_SUBST:
4539             o->op_seq = op_seqmax++;
4540             peep(cPMOP->op_pmreplstart);
4541             break;
4542
4543         case OP_EXEC:
4544             o->op_seq = op_seqmax++;
4545             if (dowarn && o->op_next && o->op_next->op_type == OP_NEXTSTATE) {
4546                 if (o->op_next->op_sibling &&
4547                         o->op_next->op_sibling->op_type != OP_DIE) {
4548                     line_t oldline = curcop->cop_line;
4549
4550                     curcop->cop_line = ((COP*)o->op_next)->cop_line;
4551                     warn("Statement unlikely to be reached");
4552                     warn("(Maybe you meant system() when you said exec()?)\n");
4553                     curcop->cop_line = oldline;
4554                 }
4555             }
4556             break;
4557         default:
4558             o->op_seq = op_seqmax++;
4559             break;
4560         }
4561         oldop = o;
4562     }
4563     LEAVE;
4564 }