b7f560b435f581a741e547ba26eb0556cb07b187
[p5sagit/p5-mst-13.2.git] / op.c
1 /*    op.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  * "You see: Mr. Drogo, he married poor Miss Primula Brandybuck.  She was
13  * our Mr. Bilbo's first cousin on the mother's side (her mother being the
14  * youngest of the Old Took's daughters); and Mr. Drogo was his second
15  * cousin.  So Mr. Frodo is his first *and* second cousin, once removed
16  * either way, as the saying is, if you follow me."  --the Gaffer
17  */
18
19 /* This file contains the functions that create, manipulate and optimize
20  * the OP structures that hold a compiled perl program.
21  *
22  * A Perl program is compiled into a tree of OPs. Each op contains
23  * structural pointers (eg to its siblings and the next op in the
24  * execution sequence), a pointer to the function that would execute the
25  * op, plus any data specific to that op. For example, an OP_CONST op
26  * points to the pp_const() function and to an SV containing the constant
27  * value. When pp_const() is executed, its job is to push that SV onto the
28  * stack.
29  *
30  * OPs are mainly created by the newFOO() functions, which are mainly
31  * called from the parser (in perly.y) as the code is parsed. For example
32  * the Perl code $a + $b * $c would cause the equivalent of the following
33  * to be called (oversimplifying a bit):
34  *
35  *  newBINOP(OP_ADD, flags,
36  *      newSVREF($a),
37  *      newBINOP(OP_MULTIPLY, flags, newSVREF($b), newSVREF($c))
38  *  )
39  *
40  * Note that during the build of miniperl, a temporary copy of this file
41  * is made, called opmini.c.
42  */
43
44 /*
45 Perl's compiler is essentially a 3-pass compiler with interleaved phases:
46
47     A bottom-up pass
48     A top-down pass
49     An execution-order pass
50
51 The bottom-up pass is represented by all the "newOP" routines and
52 the ck_ routines.  The bottom-upness is actually driven by yacc.
53 So at the point that a ck_ routine fires, we have no idea what the
54 context is, either upward in the syntax tree, or either forward or
55 backward in the execution order.  (The bottom-up parser builds that
56 part of the execution order it knows about, but if you follow the "next"
57 links around, you'll find it's actually a closed loop through the
58 top level node.
59
60 Whenever the bottom-up parser gets to a node that supplies context to
61 its components, it invokes that portion of the top-down pass that applies
62 to that part of the subtree (and marks the top node as processed, so
63 if a node further up supplies context, it doesn't have to take the
64 plunge again).  As a particular subcase of this, as the new node is
65 built, it takes all the closed execution loops of its subcomponents
66 and links them into a new closed loop for the higher level node.  But
67 it's still not the real execution order.
68
69 The actual execution order is not known till we get a grammar reduction
70 to a top-level unit like a subroutine or file that will be called by
71 "name" rather than via a "next" pointer.  At that point, we can call
72 into peep() to do that code's portion of the 3rd pass.  It has to be
73 recursive, but it's recursive on basic blocks, not on tree nodes.
74 */
75
76 #include "EXTERN.h"
77 #define PERL_IN_OP_C
78 #include "perl.h"
79 #include "keywords.h"
80
81 #define CALL_PEEP(o) CALL_FPTR(PL_peepp)(aTHX_ o)
82
83 #if defined(PL_OP_SLAB_ALLOC)
84
85 #ifndef PERL_SLAB_SIZE
86 #define PERL_SLAB_SIZE 2048
87 #endif
88
89 void *
90 Perl_Slab_Alloc(pTHX_ int m, size_t sz)
91 {
92     /*
93      * To make incrementing use count easy PL_OpSlab is an I32 *
94      * To make inserting the link to slab PL_OpPtr is I32 **
95      * So compute size in units of sizeof(I32 *) as that is how Pl_OpPtr increments
96      * Add an overhead for pointer to slab and round up as a number of pointers
97      */
98     sz = (sz + 2*sizeof(I32 *) -1)/sizeof(I32 *);
99     if ((PL_OpSpace -= sz) < 0) {
100         PL_OpPtr = (I32 **) PerlMemShared_malloc(PERL_SLAB_SIZE*sizeof(I32*)); 
101         if (!PL_OpPtr) {
102             return NULL;
103         }
104         Zero(PL_OpPtr,PERL_SLAB_SIZE,I32 **);
105         /* We reserve the 0'th I32 sized chunk as a use count */
106         PL_OpSlab = (I32 *) PL_OpPtr;
107         /* Reduce size by the use count word, and by the size we need.
108          * Latter is to mimic the '-=' in the if() above
109          */
110         PL_OpSpace = PERL_SLAB_SIZE - (sizeof(I32)+sizeof(I32 **)-1)/sizeof(I32 **) - sz;
111         /* Allocation pointer starts at the top.
112            Theory: because we build leaves before trunk allocating at end
113            means that at run time access is cache friendly upward
114          */
115         PL_OpPtr += PERL_SLAB_SIZE;
116     }
117     assert( PL_OpSpace >= 0 );
118     /* Move the allocation pointer down */
119     PL_OpPtr   -= sz;
120     assert( PL_OpPtr > (I32 **) PL_OpSlab );
121     *PL_OpPtr   = PL_OpSlab;    /* Note which slab it belongs to */
122     (*PL_OpSlab)++;             /* Increment use count of slab */
123     assert( PL_OpPtr+sz <= ((I32 **) PL_OpSlab + PERL_SLAB_SIZE) );
124     assert( *PL_OpSlab > 0 );
125     return (void *)(PL_OpPtr + 1);
126 }
127
128 void
129 Perl_Slab_Free(pTHX_ void *op)
130 {
131     I32 **ptr = (I32 **) op;
132     I32 *slab = ptr[-1];
133     assert( ptr-1 > (I32 **) slab );
134     assert( ptr < ( (I32 **) slab + PERL_SLAB_SIZE) );
135     assert( *slab > 0 );
136     if (--(*slab) == 0) {
137 #  ifdef NETWARE
138 #    define PerlMemShared PerlMem
139 #  endif
140         
141     PerlMemShared_free(slab);
142         if (slab == PL_OpSlab) {
143             PL_OpSpace = 0;
144         }
145     }
146 }
147 #endif
148 /*
149  * In the following definition, the ", Nullop" is just to make the compiler
150  * think the expression is of the right type: croak actually does a Siglongjmp.
151  */
152 #define CHECKOP(type,o) \
153     ((PL_op_mask && PL_op_mask[type])                                   \
154      ? ( op_free((OP*)o),                                       \
155          Perl_croak(aTHX_ "'%s' trapped by operation mask", PL_op_desc[type]),  \
156          Nullop )                                               \
157      : CALL_FPTR(PL_check[type])(aTHX_ (OP*)o))
158
159 #define RETURN_UNLIMITED_NUMBER (PERL_INT_MAX / 2)
160
161 STATIC const char*
162 S_gv_ename(pTHX_ GV *gv)
163 {
164     SV* tmpsv = sv_newmortal();
165     gv_efullname3(tmpsv, gv, Nullch);
166     return SvPV_nolen_const(tmpsv);
167 }
168
169 STATIC OP *
170 S_no_fh_allowed(pTHX_ OP *o)
171 {
172     yyerror(Perl_form(aTHX_ "Missing comma after first argument to %s function",
173                  OP_DESC(o)));
174     return o;
175 }
176
177 STATIC OP *
178 S_too_few_arguments(pTHX_ OP *o, const char *name)
179 {
180     yyerror(Perl_form(aTHX_ "Not enough arguments for %s", name));
181     return o;
182 }
183
184 STATIC OP *
185 S_too_many_arguments(pTHX_ OP *o, const char *name)
186 {
187     yyerror(Perl_form(aTHX_ "Too many arguments for %s", name));
188     return o;
189 }
190
191 STATIC void
192 S_bad_type(pTHX_ I32 n, const char *t, const char *name, const OP *kid)
193 {
194     yyerror(Perl_form(aTHX_ "Type of arg %d to %s must be %s (not %s)",
195                  (int)n, name, t, OP_DESC(kid)));
196 }
197
198 STATIC void
199 S_no_bareword_allowed(pTHX_ const OP *o)
200 {
201     qerror(Perl_mess(aTHX_
202                      "Bareword \"%"SVf"\" not allowed while \"strict subs\" in use",
203                      cSVOPo_sv));
204 }
205
206 /* "register" allocation */
207
208 PADOFFSET
209 Perl_allocmy(pTHX_ char *name)
210 {
211     PADOFFSET off;
212
213     /* complain about "my $<special_var>" etc etc */
214     if (!(PL_in_my == KEY_our ||
215           isALPHA(name[1]) ||
216           (USE_UTF8_IN_NAMES && UTF8_IS_START(name[1])) ||
217           (name[1] == '_' && (*name == '$' || (int)strlen(name) > 2))))
218     {
219         if (!isPRINT(name[1]) || strchr("\t\n\r\f", name[1])) {
220             /* 1999-02-27 mjd@plover.com */
221             char *p;
222             p = strchr(name, '\0');
223             /* The next block assumes the buffer is at least 205 chars
224                long.  At present, it's always at least 256 chars. */
225             if (p-name > 200) {
226                 strcpy(name+200, "...");
227                 p = name+199;
228             }
229             else {
230                 p[1] = '\0';
231             }
232             /* Move everything else down one character */
233             for (; p-name > 2; p--)
234                 *p = *(p-1);
235             name[2] = toCTRL(name[1]);
236             name[1] = '^';
237         }
238         yyerror(Perl_form(aTHX_ "Can't use global %s in \"my\"",name));
239     }
240
241     /* check for duplicate declaration */
242     pad_check_dup(name,
243                 (bool)(PL_in_my == KEY_our),
244                 (PL_curstash ? PL_curstash : PL_defstash)
245     );
246
247     if (PL_in_my_stash && *name != '$') {
248         yyerror(Perl_form(aTHX_
249                     "Can't declare class for non-scalar %s in \"%s\"",
250                      name, PL_in_my == KEY_our ? "our" : "my"));
251     }
252
253     /* allocate a spare slot and store the name in that slot */
254
255     off = pad_add_name(name,
256                     PL_in_my_stash,
257                     (PL_in_my == KEY_our 
258                         /* $_ is always in main::, even with our */
259                         ? (PL_curstash && !strEQ(name,"$_") ? PL_curstash : PL_defstash)
260                         : Nullhv
261                     ),
262                     0 /*  not fake */
263     );
264     return off;
265 }
266
267 /* Destructor */
268
269 void
270 Perl_op_free(pTHX_ OP *o)
271 {
272     dVAR;
273     OPCODE type;
274     PADOFFSET refcnt;
275
276     if (!o || o->op_static)
277         return;
278
279     if (o->op_private & OPpREFCOUNTED) {
280         switch (o->op_type) {
281         case OP_LEAVESUB:
282         case OP_LEAVESUBLV:
283         case OP_LEAVEEVAL:
284         case OP_LEAVE:
285         case OP_SCOPE:
286         case OP_LEAVEWRITE:
287             OP_REFCNT_LOCK;
288             refcnt = OpREFCNT_dec(o);
289             OP_REFCNT_UNLOCK;
290             if (refcnt)
291                 return;
292             break;
293         default:
294             break;
295         }
296     }
297
298     if (o->op_flags & OPf_KIDS) {
299         register OP *kid, *nextkid;
300         for (kid = cUNOPo->op_first; kid; kid = nextkid) {
301             nextkid = kid->op_sibling; /* Get before next freeing kid */
302             op_free(kid);
303         }
304     }
305     type = o->op_type;
306     if (type == OP_NULL)
307         type = (OPCODE)o->op_targ;
308
309     /* COP* is not cleared by op_clear() so that we may track line
310      * numbers etc even after null() */
311     if (type == OP_NEXTSTATE || type == OP_SETSTATE || type == OP_DBSTATE)
312         cop_free((COP*)o);
313
314     op_clear(o);
315     FreeOp(o);
316 #ifdef DEBUG_LEAKING_SCALARS
317     if (PL_op == o)
318         PL_op = Nullop;
319 #endif
320 }
321
322 void
323 Perl_op_clear(pTHX_ OP *o)
324 {
325
326     dVAR;
327     switch (o->op_type) {
328     case OP_NULL:       /* Was holding old type, if any. */
329     case OP_ENTEREVAL:  /* Was holding hints. */
330         o->op_targ = 0;
331         break;
332     default:
333         if (!(o->op_flags & OPf_REF)
334             || (PL_check[o->op_type] != MEMBER_TO_FPTR(Perl_ck_ftst)))
335             break;
336         /* FALL THROUGH */
337     case OP_GVSV:
338     case OP_GV:
339     case OP_AELEMFAST:
340         if (! (o->op_type == OP_AELEMFAST && o->op_flags & OPf_SPECIAL)) {
341             /* not an OP_PADAV replacement */
342 #ifdef USE_ITHREADS
343             if (cPADOPo->op_padix > 0) {
344                 /* No GvIN_PAD_off(cGVOPo_gv) here, because other references
345                  * may still exist on the pad */
346                 pad_swipe(cPADOPo->op_padix, TRUE);
347                 cPADOPo->op_padix = 0;
348             }
349 #else
350             SvREFCNT_dec(cSVOPo->op_sv);
351             cSVOPo->op_sv = Nullsv;
352 #endif
353         }
354         break;
355     case OP_METHOD_NAMED:
356     case OP_CONST:
357         SvREFCNT_dec(cSVOPo->op_sv);
358         cSVOPo->op_sv = Nullsv;
359 #ifdef USE_ITHREADS
360         /** Bug #15654
361           Even if op_clear does a pad_free for the target of the op,
362           pad_free doesn't actually remove the sv that exists in the pad;
363           instead it lives on. This results in that it could be reused as 
364           a target later on when the pad was reallocated.
365         **/
366         if(o->op_targ) {
367           pad_swipe(o->op_targ,1);
368           o->op_targ = 0;
369         }
370 #endif
371         break;
372     case OP_GOTO:
373     case OP_NEXT:
374     case OP_LAST:
375     case OP_REDO:
376         if (o->op_flags & (OPf_SPECIAL|OPf_STACKED|OPf_KIDS))
377             break;
378         /* FALL THROUGH */
379     case OP_TRANS:
380         if (o->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF)) {
381             SvREFCNT_dec(cSVOPo->op_sv);
382             cSVOPo->op_sv = Nullsv;
383         }
384         else {
385             Safefree(cPVOPo->op_pv);
386             cPVOPo->op_pv = Nullch;
387         }
388         break;
389     case OP_SUBST:
390         op_free(cPMOPo->op_pmreplroot);
391         goto clear_pmop;
392     case OP_PUSHRE:
393 #ifdef USE_ITHREADS
394         if (INT2PTR(PADOFFSET, cPMOPo->op_pmreplroot)) {
395             /* No GvIN_PAD_off here, because other references may still
396              * exist on the pad */
397             pad_swipe(INT2PTR(PADOFFSET, cPMOPo->op_pmreplroot), TRUE);
398         }
399 #else
400         SvREFCNT_dec((SV*)cPMOPo->op_pmreplroot);
401 #endif
402         /* FALL THROUGH */
403     case OP_MATCH:
404     case OP_QR:
405 clear_pmop:
406         {
407             HV *pmstash = PmopSTASH(cPMOPo);
408             if (pmstash && SvREFCNT(pmstash)) {
409                 MAGIC *mg = mg_find((SV*)pmstash, PERL_MAGIC_symtab);
410                 if (mg) {
411                     PMOP *pmop = (PMOP*) mg->mg_obj;
412                     PMOP *lastpmop = NULL;
413                     while (pmop) {
414                         if (cPMOPo == pmop) {
415                             if (lastpmop)
416                                 lastpmop->op_pmnext = pmop->op_pmnext;
417                             else
418                                 mg->mg_obj = (SV*) pmop->op_pmnext;
419                             break;
420                         }
421                         lastpmop = pmop;
422                         pmop = pmop->op_pmnext;
423                     }
424                 }
425             }
426             PmopSTASH_free(cPMOPo);
427         }
428         cPMOPo->op_pmreplroot = Nullop;
429         /* we use the "SAFE" version of the PM_ macros here
430          * since sv_clean_all might release some PMOPs
431          * after PL_regex_padav has been cleared
432          * and the clearing of PL_regex_padav needs to
433          * happen before sv_clean_all
434          */
435         ReREFCNT_dec(PM_GETRE_SAFE(cPMOPo));
436         PM_SETRE_SAFE(cPMOPo, (REGEXP*)NULL);
437 #ifdef USE_ITHREADS
438         if(PL_regex_pad) {        /* We could be in destruction */
439             av_push((AV*) PL_regex_pad[0],(SV*) PL_regex_pad[(cPMOPo)->op_pmoffset]);
440             SvREPADTMP_on(PL_regex_pad[(cPMOPo)->op_pmoffset]);
441             PM_SETRE(cPMOPo, (cPMOPo)->op_pmoffset);
442         }
443 #endif
444
445         break;
446     }
447
448     if (o->op_targ > 0) {
449         pad_free(o->op_targ);
450         o->op_targ = 0;
451     }
452 }
453
454 STATIC void
455 S_cop_free(pTHX_ COP* cop)
456 {
457     Safefree(cop->cop_label);   /* FIXME: treaddead ??? */
458     CopFILE_free(cop);
459     CopSTASH_free(cop);
460     if (! specialWARN(cop->cop_warnings))
461         SvREFCNT_dec(cop->cop_warnings);
462     if (! specialCopIO(cop->cop_io)) {
463 #ifdef USE_ITHREADS
464 #if 0
465         STRLEN len;
466         char *s = SvPV(cop->cop_io,len);
467         Perl_warn(aTHX_ "io='%.*s'",(int) len,s); /* ??? --jhi */
468 #endif
469 #else
470         SvREFCNT_dec(cop->cop_io);
471 #endif
472     }
473 }
474
475 void
476 Perl_op_null(pTHX_ OP *o)
477 {
478     dVAR;
479     if (o->op_type == OP_NULL)
480         return;
481     op_clear(o);
482     o->op_targ = o->op_type;
483     o->op_type = OP_NULL;
484     o->op_ppaddr = PL_ppaddr[OP_NULL];
485 }
486
487 void
488 Perl_op_refcnt_lock(pTHX)
489 {
490     dVAR;
491     OP_REFCNT_LOCK;
492 }
493
494 void
495 Perl_op_refcnt_unlock(pTHX)
496 {
497     dVAR;
498     OP_REFCNT_UNLOCK;
499 }
500
501 /* Contextualizers */
502
503 #define LINKLIST(o) ((o)->op_next ? (o)->op_next : linklist((OP*)o))
504
505 OP *
506 Perl_linklist(pTHX_ OP *o)
507 {
508
509     if (o->op_next)
510         return o->op_next;
511
512     /* establish postfix order */
513     if (cUNOPo->op_first) {
514         register OP *kid;
515         o->op_next = LINKLIST(cUNOPo->op_first);
516         for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
517             if (kid->op_sibling)
518                 kid->op_next = LINKLIST(kid->op_sibling);
519             else
520                 kid->op_next = o;
521         }
522     }
523     else
524         o->op_next = o;
525
526     return o->op_next;
527 }
528
529 OP *
530 Perl_scalarkids(pTHX_ OP *o)
531 {
532     if (o && o->op_flags & OPf_KIDS) {
533         OP *kid;
534         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
535             scalar(kid);
536     }
537     return o;
538 }
539
540 STATIC OP *
541 S_scalarboolean(pTHX_ OP *o)
542 {
543     if (o->op_type == OP_SASSIGN && cBINOPo->op_first->op_type == OP_CONST) {
544         if (ckWARN(WARN_SYNTAX)) {
545             const line_t oldline = CopLINE(PL_curcop);
546
547             if (PL_copline != NOLINE)
548                 CopLINE_set(PL_curcop, PL_copline);
549             Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Found = in conditional, should be ==");
550             CopLINE_set(PL_curcop, oldline);
551         }
552     }
553     return scalar(o);
554 }
555
556 OP *
557 Perl_scalar(pTHX_ OP *o)
558 {
559     dVAR;
560     OP *kid;
561
562     /* assumes no premature commitment */
563     if (!o || (o->op_flags & OPf_WANT) || PL_error_count
564          || o->op_type == OP_RETURN)
565     {
566         return o;
567     }
568
569     o->op_flags = (o->op_flags & ~OPf_WANT) | OPf_WANT_SCALAR;
570
571     switch (o->op_type) {
572     case OP_REPEAT:
573         scalar(cBINOPo->op_first);
574         break;
575     case OP_OR:
576     case OP_AND:
577     case OP_COND_EXPR:
578         for (kid = cUNOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
579             scalar(kid);
580         break;
581     case OP_SPLIT:
582         if ((kid = cLISTOPo->op_first) && kid->op_type == OP_PUSHRE) {
583             if (!kPMOP->op_pmreplroot)
584                 deprecate_old("implicit split to @_");
585         }
586         /* FALL THROUGH */
587     case OP_MATCH:
588     case OP_QR:
589     case OP_SUBST:
590     case OP_NULL:
591     default:
592         if (o->op_flags & OPf_KIDS) {
593             for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling)
594                 scalar(kid);
595         }
596         break;
597     case OP_LEAVE:
598     case OP_LEAVETRY:
599         kid = cLISTOPo->op_first;
600         scalar(kid);
601         while ((kid = kid->op_sibling)) {
602             if (kid->op_sibling)
603                 scalarvoid(kid);
604             else
605                 scalar(kid);
606         }
607         WITH_THR(PL_curcop = &PL_compiling);
608         break;
609     case OP_SCOPE:
610     case OP_LINESEQ:
611     case OP_LIST:
612         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling) {
613             if (kid->op_sibling)
614                 scalarvoid(kid);
615             else
616                 scalar(kid);
617         }
618         WITH_THR(PL_curcop = &PL_compiling);
619         break;
620     case OP_SORT:
621         if (ckWARN(WARN_VOID))
622             Perl_warner(aTHX_ packWARN(WARN_VOID), "Useless use of sort in scalar context");
623     }
624     return o;
625 }
626
627 OP *
628 Perl_scalarvoid(pTHX_ OP *o)
629 {
630     dVAR;
631     OP *kid;
632     const char* useless = 0;
633     SV* sv;
634     U8 want;
635
636     if (o->op_type == OP_NEXTSTATE
637         || o->op_type == OP_SETSTATE
638         || o->op_type == OP_DBSTATE
639         || (o->op_type == OP_NULL && (o->op_targ == OP_NEXTSTATE
640                                       || o->op_targ == OP_SETSTATE
641                                       || o->op_targ == OP_DBSTATE)))
642         PL_curcop = (COP*)o;            /* for warning below */
643
644     /* assumes no premature commitment */
645     want = o->op_flags & OPf_WANT;
646     if ((want && want != OPf_WANT_SCALAR) || PL_error_count
647          || o->op_type == OP_RETURN)
648     {
649         return o;
650     }
651
652     if ((o->op_private & OPpTARGET_MY)
653         && (PL_opargs[o->op_type] & OA_TARGLEX))/* OPp share the meaning */
654     {
655         return scalar(o);                       /* As if inside SASSIGN */
656     }
657
658     o->op_flags = (o->op_flags & ~OPf_WANT) | OPf_WANT_VOID;
659
660     switch (o->op_type) {
661     default:
662         if (!(PL_opargs[o->op_type] & OA_FOLDCONST))
663             break;
664         /* FALL THROUGH */
665     case OP_REPEAT:
666         if (o->op_flags & OPf_STACKED)
667             break;
668         goto func_ops;
669     case OP_SUBSTR:
670         if (o->op_private == 4)
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_VEC:
689     case OP_INDEX:
690     case OP_RINDEX:
691     case OP_SPRINTF:
692     case OP_AELEM:
693     case OP_AELEMFAST:
694     case OP_ASLICE:
695     case OP_HELEM:
696     case OP_HSLICE:
697     case OP_UNPACK:
698     case OP_PACK:
699     case OP_JOIN:
700     case OP_LSLICE:
701     case OP_ANONLIST:
702     case OP_ANONHASH:
703     case OP_SORT:
704     case OP_REVERSE:
705     case OP_RANGE:
706     case OP_FLIP:
707     case OP_FLOP:
708     case OP_CALLER:
709     case OP_FILENO:
710     case OP_EOF:
711     case OP_TELL:
712     case OP_GETSOCKNAME:
713     case OP_GETPEERNAME:
714     case OP_READLINK:
715     case OP_TELLDIR:
716     case OP_GETPPID:
717     case OP_GETPGRP:
718     case OP_GETPRIORITY:
719     case OP_TIME:
720     case OP_TMS:
721     case OP_LOCALTIME:
722     case OP_GMTIME:
723     case OP_GHBYNAME:
724     case OP_GHBYADDR:
725     case OP_GHOSTENT:
726     case OP_GNBYNAME:
727     case OP_GNBYADDR:
728     case OP_GNETENT:
729     case OP_GPBYNAME:
730     case OP_GPBYNUMBER:
731     case OP_GPROTOENT:
732     case OP_GSBYNAME:
733     case OP_GSBYPORT:
734     case OP_GSERVENT:
735     case OP_GPWNAM:
736     case OP_GPWUID:
737     case OP_GGRNAM:
738     case OP_GGRGID:
739     case OP_GETLOGIN:
740     case OP_PROTOTYPE:
741       func_ops:
742         if (!(o->op_private & (OPpLVAL_INTRO|OPpOUR_INTRO)))
743             useless = OP_DESC(o);
744         break;
745
746     case OP_NOT:
747        kid = cUNOPo->op_first;
748        if (kid->op_type != OP_MATCH && kid->op_type != OP_SUBST &&
749            kid->op_type != OP_TRANS) {
750                 goto func_ops;
751        }
752        useless = "negative pattern binding (!~)";
753        break;
754
755     case OP_RV2GV:
756     case OP_RV2SV:
757     case OP_RV2AV:
758     case OP_RV2HV:
759         if (!(o->op_private & (OPpLVAL_INTRO|OPpOUR_INTRO)) &&
760                 (!o->op_sibling || o->op_sibling->op_type != OP_READLINE))
761             useless = "a variable";
762         break;
763
764     case OP_CONST:
765         sv = cSVOPo_sv;
766         if (cSVOPo->op_private & OPpCONST_STRICT)
767             no_bareword_allowed(o);
768         else {
769             if (ckWARN(WARN_VOID)) {
770                 useless = "a constant";
771                 /* don't warn on optimised away booleans, eg 
772                  * use constant Foo, 5; Foo || print; */
773                 if (cSVOPo->op_private & OPpCONST_SHORTCIRCUIT)
774                     useless = 0;
775                 /* the constants 0 and 1 are permitted as they are
776                    conventionally used as dummies in constructs like
777                         1 while some_condition_with_side_effects;  */
778                 else if (SvNIOK(sv) && (SvNV(sv) == 0.0 || SvNV(sv) == 1.0))
779                     useless = 0;
780                 else if (SvPOK(sv)) {
781                   /* perl4's way of mixing documentation and code
782                      (before the invention of POD) was based on a
783                      trick to mix nroff and perl code. The trick was
784                      built upon these three nroff macros being used in
785                      void context. The pink camel has the details in
786                      the script wrapman near page 319. */
787                     if (strnEQ(SvPVX_const(sv), "di", 2) ||
788                         strnEQ(SvPVX_const(sv), "ds", 2) ||
789                         strnEQ(SvPVX_const(sv), "ig", 2))
790                             useless = 0;
791                 }
792             }
793         }
794         op_null(o);             /* don't execute or even remember it */
795         break;
796
797     case OP_POSTINC:
798         o->op_type = OP_PREINC;         /* pre-increment is faster */
799         o->op_ppaddr = PL_ppaddr[OP_PREINC];
800         break;
801
802     case OP_POSTDEC:
803         o->op_type = OP_PREDEC;         /* pre-decrement is faster */
804         o->op_ppaddr = PL_ppaddr[OP_PREDEC];
805         break;
806
807     case OP_OR:
808     case OP_AND:
809     case OP_DOR:
810     case OP_COND_EXPR:
811         for (kid = cUNOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
812             scalarvoid(kid);
813         break;
814
815     case OP_NULL:
816         if (o->op_flags & OPf_STACKED)
817             break;
818         /* FALL THROUGH */
819     case OP_NEXTSTATE:
820     case OP_DBSTATE:
821     case OP_ENTERTRY:
822     case OP_ENTER:
823         if (!(o->op_flags & OPf_KIDS))
824             break;
825         /* FALL THROUGH */
826     case OP_SCOPE:
827     case OP_LEAVE:
828     case OP_LEAVETRY:
829     case OP_LEAVELOOP:
830     case OP_LINESEQ:
831     case OP_LIST:
832         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
833             scalarvoid(kid);
834         break;
835     case OP_ENTEREVAL:
836         scalarkids(o);
837         break;
838     case OP_REQUIRE:
839         /* all requires must return a boolean value */
840         o->op_flags &= ~OPf_WANT;
841         /* FALL THROUGH */
842     case OP_SCALAR:
843         return scalar(o);
844     case OP_SPLIT:
845         if ((kid = cLISTOPo->op_first) && kid->op_type == OP_PUSHRE) {
846             if (!kPMOP->op_pmreplroot)
847                 deprecate_old("implicit split to @_");
848         }
849         break;
850     }
851     if (useless && ckWARN(WARN_VOID))
852         Perl_warner(aTHX_ packWARN(WARN_VOID), "Useless use of %s in void context", useless);
853     return o;
854 }
855
856 OP *
857 Perl_listkids(pTHX_ OP *o)
858 {
859     if (o && o->op_flags & OPf_KIDS) {
860         OP *kid;
861         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
862             list(kid);
863     }
864     return o;
865 }
866
867 OP *
868 Perl_list(pTHX_ OP *o)
869 {
870     dVAR;
871     OP *kid;
872
873     /* assumes no premature commitment */
874     if (!o || (o->op_flags & OPf_WANT) || PL_error_count
875          || o->op_type == OP_RETURN)
876     {
877         return o;
878     }
879
880     if ((o->op_private & OPpTARGET_MY)
881         && (PL_opargs[o->op_type] & OA_TARGLEX))/* OPp share the meaning */
882     {
883         return o;                               /* As if inside SASSIGN */
884     }
885
886     o->op_flags = (o->op_flags & ~OPf_WANT) | OPf_WANT_LIST;
887
888     switch (o->op_type) {
889     case OP_FLOP:
890     case OP_REPEAT:
891         list(cBINOPo->op_first);
892         break;
893     case OP_OR:
894     case OP_AND:
895     case OP_COND_EXPR:
896         for (kid = cUNOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
897             list(kid);
898         break;
899     default:
900     case OP_MATCH:
901     case OP_QR:
902     case OP_SUBST:
903     case OP_NULL:
904         if (!(o->op_flags & OPf_KIDS))
905             break;
906         if (!o->op_next && cUNOPo->op_first->op_type == OP_FLOP) {
907             list(cBINOPo->op_first);
908             return gen_constant_list(o);
909         }
910     case OP_LIST:
911         listkids(o);
912         break;
913     case OP_LEAVE:
914     case OP_LEAVETRY:
915         kid = cLISTOPo->op_first;
916         list(kid);
917         while ((kid = kid->op_sibling)) {
918             if (kid->op_sibling)
919                 scalarvoid(kid);
920             else
921                 list(kid);
922         }
923         WITH_THR(PL_curcop = &PL_compiling);
924         break;
925     case OP_SCOPE:
926     case OP_LINESEQ:
927         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling) {
928             if (kid->op_sibling)
929                 scalarvoid(kid);
930             else
931                 list(kid);
932         }
933         WITH_THR(PL_curcop = &PL_compiling);
934         break;
935     case OP_REQUIRE:
936         /* all requires must return a boolean value */
937         o->op_flags &= ~OPf_WANT;
938         return scalar(o);
939     }
940     return o;
941 }
942
943 OP *
944 Perl_scalarseq(pTHX_ OP *o)
945 {
946     if (o) {
947         if (o->op_type == OP_LINESEQ ||
948              o->op_type == OP_SCOPE ||
949              o->op_type == OP_LEAVE ||
950              o->op_type == OP_LEAVETRY)
951         {
952             OP *kid;
953             for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling) {
954                 if (kid->op_sibling) {
955                     scalarvoid(kid);
956                 }
957             }
958             PL_curcop = &PL_compiling;
959         }
960         o->op_flags &= ~OPf_PARENS;
961         if (PL_hints & HINT_BLOCK_SCOPE)
962             o->op_flags |= OPf_PARENS;
963     }
964     else
965         o = newOP(OP_STUB, 0);
966     return o;
967 }
968
969 STATIC OP *
970 S_modkids(pTHX_ OP *o, I32 type)
971 {
972     if (o && o->op_flags & OPf_KIDS) {
973         OP *kid;
974         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
975             mod(kid, type);
976     }
977     return o;
978 }
979
980 /* Propagate lvalue ("modifiable") context to an op and it's children.
981  * 'type' represents the context type, roughly based on the type of op that
982  * would do the modifying, although local() is represented by OP_NULL.
983  * It's responsible for detecting things that can't be modified,  flag
984  * things that need to behave specially in an lvalue context (e.g., "$$x = 5"
985  * might have to vivify a reference in $x), and so on.
986  *
987  * For example, "$a+1 = 2" would cause mod() to be called with o being
988  * OP_ADD and type being OP_SASSIGN, and would output an error.
989  */
990
991 OP *
992 Perl_mod(pTHX_ OP *o, I32 type)
993 {
994     dVAR;
995     OP *kid;
996     /* -1 = error on localize, 0 = ignore localize, 1 = ok to localize */
997     int localize = -1;
998
999     if (!o || PL_error_count)
1000         return o;
1001
1002     if ((o->op_private & OPpTARGET_MY)
1003         && (PL_opargs[o->op_type] & OA_TARGLEX))/* OPp share the meaning */
1004     {
1005         return o;
1006     }
1007
1008     switch (o->op_type) {
1009     case OP_UNDEF:
1010         localize = 0;
1011         PL_modcount++;
1012         return o;
1013     case OP_CONST:
1014         if (!(o->op_private & (OPpCONST_ARYBASE)))
1015             goto nomod;
1016         if (PL_eval_start && PL_eval_start->op_type == OP_CONST) {
1017             PL_compiling.cop_arybase = (I32)SvIV(cSVOPx(PL_eval_start)->op_sv);
1018             PL_eval_start = 0;
1019         }
1020         else if (!type) {
1021             SAVEI32(PL_compiling.cop_arybase);
1022             PL_compiling.cop_arybase = 0;
1023         }
1024         else if (type == OP_REFGEN)
1025             goto nomod;
1026         else
1027             Perl_croak(aTHX_ "That use of $[ is unsupported");
1028         break;
1029     case OP_STUB:
1030         if (o->op_flags & OPf_PARENS)
1031             break;
1032         goto nomod;
1033     case OP_ENTERSUB:
1034         if ((type == OP_UNDEF || type == OP_REFGEN) &&
1035             !(o->op_flags & OPf_STACKED)) {
1036             o->op_type = OP_RV2CV;              /* entersub => rv2cv */
1037             o->op_ppaddr = PL_ppaddr[OP_RV2CV];
1038             assert(cUNOPo->op_first->op_type == OP_NULL);
1039             op_null(((LISTOP*)cUNOPo->op_first)->op_first);/* disable pushmark */
1040             break;
1041         }
1042         else if (o->op_private & OPpENTERSUB_NOMOD)
1043             return o;
1044         else {                          /* lvalue subroutine call */
1045             o->op_private |= OPpLVAL_INTRO;
1046             PL_modcount = RETURN_UNLIMITED_NUMBER;
1047             if (type == OP_GREPSTART || type == OP_ENTERSUB || type == OP_REFGEN) {
1048                 /* Backward compatibility mode: */
1049                 o->op_private |= OPpENTERSUB_INARGS;
1050                 break;
1051             }
1052             else {                      /* Compile-time error message: */
1053                 OP *kid = cUNOPo->op_first;
1054                 CV *cv;
1055                 OP *okid;
1056
1057                 if (kid->op_type == OP_PUSHMARK)
1058                     goto skip_kids;
1059                 if (kid->op_type != OP_NULL || kid->op_targ != OP_LIST)
1060                     Perl_croak(aTHX_
1061                                "panic: unexpected lvalue entersub "
1062                                "args: type/targ %ld:%"UVuf,
1063                                (long)kid->op_type, (UV)kid->op_targ);
1064                 kid = kLISTOP->op_first;
1065               skip_kids:
1066                 while (kid->op_sibling)
1067                     kid = kid->op_sibling;
1068                 if (!(kid->op_type == OP_NULL && kid->op_targ == OP_RV2CV)) {
1069                     /* Indirect call */
1070                     if (kid->op_type == OP_METHOD_NAMED
1071                         || kid->op_type == OP_METHOD)
1072                     {
1073                         UNOP *newop;
1074
1075                         NewOp(1101, newop, 1, UNOP);
1076                         newop->op_type = OP_RV2CV;
1077                         newop->op_ppaddr = PL_ppaddr[OP_RV2CV];
1078                         newop->op_first = Nullop;
1079                         newop->op_next = (OP*)newop;
1080                         kid->op_sibling = (OP*)newop;
1081                         newop->op_private |= OPpLVAL_INTRO;
1082                         break;
1083                     }
1084
1085                     if (kid->op_type != OP_RV2CV)
1086                         Perl_croak(aTHX_
1087                                    "panic: unexpected lvalue entersub "
1088                                    "entry via type/targ %ld:%"UVuf,
1089                                    (long)kid->op_type, (UV)kid->op_targ);
1090                     kid->op_private |= OPpLVAL_INTRO;
1091                     break;      /* Postpone until runtime */
1092                 }
1093
1094                 okid = kid;
1095                 kid = kUNOP->op_first;
1096                 if (kid->op_type == OP_NULL && kid->op_targ == OP_RV2SV)
1097                     kid = kUNOP->op_first;
1098                 if (kid->op_type == OP_NULL)
1099                     Perl_croak(aTHX_
1100                                "Unexpected constant lvalue entersub "
1101                                "entry via type/targ %ld:%"UVuf,
1102                                (long)kid->op_type, (UV)kid->op_targ);
1103                 if (kid->op_type != OP_GV) {
1104                     /* Restore RV2CV to check lvalueness */
1105                   restore_2cv:
1106                     if (kid->op_next && kid->op_next != kid) { /* Happens? */
1107                         okid->op_next = kid->op_next;
1108                         kid->op_next = okid;
1109                     }
1110                     else
1111                         okid->op_next = Nullop;
1112                     okid->op_type = OP_RV2CV;
1113                     okid->op_targ = 0;
1114                     okid->op_ppaddr = PL_ppaddr[OP_RV2CV];
1115                     okid->op_private |= OPpLVAL_INTRO;
1116                     break;
1117                 }
1118
1119                 cv = GvCV(kGVOP_gv);
1120                 if (!cv)
1121                     goto restore_2cv;
1122                 if (CvLVALUE(cv))
1123                     break;
1124             }
1125         }
1126         /* FALL THROUGH */
1127     default:
1128       nomod:
1129         /* grep, foreach, subcalls, refgen */
1130         if (type == OP_GREPSTART || type == OP_ENTERSUB || type == OP_REFGEN)
1131             break;
1132         yyerror(Perl_form(aTHX_ "Can't modify %s in %s",
1133                      (o->op_type == OP_NULL && (o->op_flags & OPf_SPECIAL)
1134                       ? "do block"
1135                       : (o->op_type == OP_ENTERSUB
1136                         ? "non-lvalue subroutine call"
1137                         : OP_DESC(o))),
1138                      type ? PL_op_desc[type] : "local"));
1139         return o;
1140
1141     case OP_PREINC:
1142     case OP_PREDEC:
1143     case OP_POW:
1144     case OP_MULTIPLY:
1145     case OP_DIVIDE:
1146     case OP_MODULO:
1147     case OP_REPEAT:
1148     case OP_ADD:
1149     case OP_SUBTRACT:
1150     case OP_CONCAT:
1151     case OP_LEFT_SHIFT:
1152     case OP_RIGHT_SHIFT:
1153     case OP_BIT_AND:
1154     case OP_BIT_XOR:
1155     case OP_BIT_OR:
1156     case OP_I_MULTIPLY:
1157     case OP_I_DIVIDE:
1158     case OP_I_MODULO:
1159     case OP_I_ADD:
1160     case OP_I_SUBTRACT:
1161         if (!(o->op_flags & OPf_STACKED))
1162             goto nomod;
1163         PL_modcount++;
1164         break;
1165
1166     case OP_COND_EXPR:
1167         localize = 1;
1168         for (kid = cUNOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
1169             mod(kid, type);
1170         break;
1171
1172     case OP_RV2AV:
1173     case OP_RV2HV:
1174         if (type == OP_REFGEN && o->op_flags & OPf_PARENS) {
1175            PL_modcount = RETURN_UNLIMITED_NUMBER;
1176             return o;           /* Treat \(@foo) like ordinary list. */
1177         }
1178         /* FALL THROUGH */
1179     case OP_RV2GV:
1180         if (scalar_mod_type(o, type))
1181             goto nomod;
1182         ref(cUNOPo->op_first, o->op_type);
1183         /* FALL THROUGH */
1184     case OP_ASLICE:
1185     case OP_HSLICE:
1186         if (type == OP_LEAVESUBLV)
1187             o->op_private |= OPpMAYBE_LVSUB;
1188         localize = 1;
1189         /* FALL THROUGH */
1190     case OP_AASSIGN:
1191     case OP_NEXTSTATE:
1192     case OP_DBSTATE:
1193        PL_modcount = RETURN_UNLIMITED_NUMBER;
1194         break;
1195     case OP_RV2SV:
1196         ref(cUNOPo->op_first, o->op_type);
1197         localize = 1;
1198         /* FALL THROUGH */
1199     case OP_GV:
1200     case OP_AV2ARYLEN:
1201         PL_hints |= HINT_BLOCK_SCOPE;
1202     case OP_SASSIGN:
1203     case OP_ANDASSIGN:
1204     case OP_ORASSIGN:
1205     case OP_DORASSIGN:
1206         PL_modcount++;
1207         break;
1208
1209     case OP_AELEMFAST:
1210         localize = -1;
1211         PL_modcount++;
1212         break;
1213
1214     case OP_PADAV:
1215     case OP_PADHV:
1216        PL_modcount = RETURN_UNLIMITED_NUMBER;
1217         if (type == OP_REFGEN && o->op_flags & OPf_PARENS)
1218             return o;           /* Treat \(@foo) like ordinary list. */
1219         if (scalar_mod_type(o, type))
1220             goto nomod;
1221         if (type == OP_LEAVESUBLV)
1222             o->op_private |= OPpMAYBE_LVSUB;
1223         /* FALL THROUGH */
1224     case OP_PADSV:
1225         PL_modcount++;
1226         if (!type) /* local() */
1227             Perl_croak(aTHX_ "Can't localize lexical variable %s",
1228                  PAD_COMPNAME_PV(o->op_targ));
1229         break;
1230
1231     case OP_PUSHMARK:
1232         localize = 0;
1233         break;
1234
1235     case OP_KEYS:
1236         if (type != OP_SASSIGN)
1237             goto nomod;
1238         goto lvalue_func;
1239     case OP_SUBSTR:
1240         if (o->op_private == 4) /* don't allow 4 arg substr as lvalue */
1241             goto nomod;
1242         /* FALL THROUGH */
1243     case OP_POS:
1244     case OP_VEC:
1245         if (type == OP_LEAVESUBLV)
1246             o->op_private |= OPpMAYBE_LVSUB;
1247       lvalue_func:
1248         pad_free(o->op_targ);
1249         o->op_targ = pad_alloc(o->op_type, SVs_PADMY);
1250         assert(SvTYPE(PAD_SV(o->op_targ)) == SVt_NULL);
1251         if (o->op_flags & OPf_KIDS)
1252             mod(cBINOPo->op_first->op_sibling, type);
1253         break;
1254
1255     case OP_AELEM:
1256     case OP_HELEM:
1257         ref(cBINOPo->op_first, o->op_type);
1258         if (type == OP_ENTERSUB &&
1259              !(o->op_private & (OPpLVAL_INTRO | OPpDEREF)))
1260             o->op_private |= OPpLVAL_DEFER;
1261         if (type == OP_LEAVESUBLV)
1262             o->op_private |= OPpMAYBE_LVSUB;
1263         localize = 1;
1264         PL_modcount++;
1265         break;
1266
1267     case OP_SCOPE:
1268     case OP_LEAVE:
1269     case OP_ENTER:
1270     case OP_LINESEQ:
1271         localize = 0;
1272         if (o->op_flags & OPf_KIDS)
1273             mod(cLISTOPo->op_last, type);
1274         break;
1275
1276     case OP_NULL:
1277         localize = 0;
1278         if (o->op_flags & OPf_SPECIAL)          /* do BLOCK */
1279             goto nomod;
1280         else if (!(o->op_flags & OPf_KIDS))
1281             break;
1282         if (o->op_targ != OP_LIST) {
1283             mod(cBINOPo->op_first, type);
1284             break;
1285         }
1286         /* FALL THROUGH */
1287     case OP_LIST:
1288         localize = 0;
1289         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
1290             mod(kid, type);
1291         break;
1292
1293     case OP_RETURN:
1294         if (type != OP_LEAVESUBLV)
1295             goto nomod;
1296         break; /* mod()ing was handled by ck_return() */
1297     }
1298
1299     /* [20011101.069] File test operators interpret OPf_REF to mean that
1300        their argument is a filehandle; thus \stat(".") should not set
1301        it. AMS 20011102 */
1302     if (type == OP_REFGEN &&
1303         PL_check[o->op_type] == MEMBER_TO_FPTR(Perl_ck_ftst))
1304         return o;
1305
1306     if (type != OP_LEAVESUBLV)
1307         o->op_flags |= OPf_MOD;
1308
1309     if (type == OP_AASSIGN || type == OP_SASSIGN)
1310         o->op_flags |= OPf_SPECIAL|OPf_REF;
1311     else if (!type) { /* local() */
1312         switch (localize) {
1313         case 1:
1314             o->op_private |= OPpLVAL_INTRO;
1315             o->op_flags &= ~OPf_SPECIAL;
1316             PL_hints |= HINT_BLOCK_SCOPE;
1317             break;
1318         case 0:
1319             break;
1320         case -1:
1321             if (ckWARN(WARN_SYNTAX)) {
1322                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
1323                     "Useless localization of %s", OP_DESC(o));
1324             }
1325         }
1326     }
1327     else if (type != OP_GREPSTART && type != OP_ENTERSUB
1328              && type != OP_LEAVESUBLV)
1329         o->op_flags |= OPf_REF;
1330     return o;
1331 }
1332
1333 STATIC bool
1334 S_scalar_mod_type(pTHX_ const OP *o, I32 type)
1335 {
1336     switch (type) {
1337     case OP_SASSIGN:
1338         if (o->op_type == OP_RV2GV)
1339             return FALSE;
1340         /* FALL THROUGH */
1341     case OP_PREINC:
1342     case OP_PREDEC:
1343     case OP_POSTINC:
1344     case OP_POSTDEC:
1345     case OP_I_PREINC:
1346     case OP_I_PREDEC:
1347     case OP_I_POSTINC:
1348     case OP_I_POSTDEC:
1349     case OP_POW:
1350     case OP_MULTIPLY:
1351     case OP_DIVIDE:
1352     case OP_MODULO:
1353     case OP_REPEAT:
1354     case OP_ADD:
1355     case OP_SUBTRACT:
1356     case OP_I_MULTIPLY:
1357     case OP_I_DIVIDE:
1358     case OP_I_MODULO:
1359     case OP_I_ADD:
1360     case OP_I_SUBTRACT:
1361     case OP_LEFT_SHIFT:
1362     case OP_RIGHT_SHIFT:
1363     case OP_BIT_AND:
1364     case OP_BIT_XOR:
1365     case OP_BIT_OR:
1366     case OP_CONCAT:
1367     case OP_SUBST:
1368     case OP_TRANS:
1369     case OP_READ:
1370     case OP_SYSREAD:
1371     case OP_RECV:
1372     case OP_ANDASSIGN:
1373     case OP_ORASSIGN:
1374         return TRUE;
1375     default:
1376         return FALSE;
1377     }
1378 }
1379
1380 STATIC bool
1381 S_is_handle_constructor(pTHX_ const OP *o, I32 numargs)
1382 {
1383     switch (o->op_type) {
1384     case OP_PIPE_OP:
1385     case OP_SOCKPAIR:
1386         if (numargs == 2)
1387             return TRUE;
1388         /* FALL THROUGH */
1389     case OP_SYSOPEN:
1390     case OP_OPEN:
1391     case OP_SELECT:             /* XXX c.f. SelectSaver.pm */
1392     case OP_SOCKET:
1393     case OP_OPEN_DIR:
1394     case OP_ACCEPT:
1395         if (numargs == 1)
1396             return TRUE;
1397         /* FALL THROUGH */
1398     default:
1399         return FALSE;
1400     }
1401 }
1402
1403 OP *
1404 Perl_refkids(pTHX_ OP *o, I32 type)
1405 {
1406     if (o && o->op_flags & OPf_KIDS) {
1407         OP *kid;
1408         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
1409             ref(kid, type);
1410     }
1411     return o;
1412 }
1413
1414 OP *
1415 Perl_ref(pTHX_ OP *o, I32 type)
1416 {
1417     dVAR;
1418     OP *kid;
1419
1420     if (!o || PL_error_count)
1421         return o;
1422
1423     switch (o->op_type) {
1424     case OP_ENTERSUB:
1425         if ((type == OP_EXISTS || type == OP_DEFINED || type == OP_LOCK) &&
1426             !(o->op_flags & OPf_STACKED)) {
1427             o->op_type = OP_RV2CV;             /* entersub => rv2cv */
1428             o->op_ppaddr = PL_ppaddr[OP_RV2CV];
1429             assert(cUNOPo->op_first->op_type == OP_NULL);
1430             op_null(((LISTOP*)cUNOPo->op_first)->op_first);     /* disable pushmark */
1431             o->op_flags |= OPf_SPECIAL;
1432         }
1433         break;
1434
1435     case OP_COND_EXPR:
1436         for (kid = cUNOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
1437             ref(kid, type);
1438         break;
1439     case OP_RV2SV:
1440         if (type == OP_DEFINED)
1441             o->op_flags |= OPf_SPECIAL;         /* don't create GV */
1442         ref(cUNOPo->op_first, o->op_type);
1443         /* FALL THROUGH */
1444     case OP_PADSV:
1445         if (type == OP_RV2SV || type == OP_RV2AV || type == OP_RV2HV) {
1446             o->op_private |= (type == OP_RV2AV ? OPpDEREF_AV
1447                               : type == OP_RV2HV ? OPpDEREF_HV
1448                               : OPpDEREF_SV);
1449             o->op_flags |= OPf_MOD;
1450         }
1451         break;
1452
1453     case OP_THREADSV:
1454         o->op_flags |= OPf_MOD;         /* XXX ??? */
1455         break;
1456
1457     case OP_RV2AV:
1458     case OP_RV2HV:
1459         o->op_flags |= OPf_REF;
1460         /* FALL THROUGH */
1461     case OP_RV2GV:
1462         if (type == OP_DEFINED)
1463             o->op_flags |= OPf_SPECIAL;         /* don't create GV */
1464         ref(cUNOPo->op_first, o->op_type);
1465         break;
1466
1467     case OP_PADAV:
1468     case OP_PADHV:
1469         o->op_flags |= OPf_REF;
1470         break;
1471
1472     case OP_SCALAR:
1473     case OP_NULL:
1474         if (!(o->op_flags & OPf_KIDS))
1475             break;
1476         ref(cBINOPo->op_first, type);
1477         break;
1478     case OP_AELEM:
1479     case OP_HELEM:
1480         ref(cBINOPo->op_first, o->op_type);
1481         if (type == OP_RV2SV || type == OP_RV2AV || type == OP_RV2HV) {
1482             o->op_private |= (type == OP_RV2AV ? OPpDEREF_AV
1483                               : type == OP_RV2HV ? OPpDEREF_HV
1484                               : OPpDEREF_SV);
1485             o->op_flags |= OPf_MOD;
1486         }
1487         break;
1488
1489     case OP_SCOPE:
1490     case OP_LEAVE:
1491     case OP_ENTER:
1492     case OP_LIST:
1493         if (!(o->op_flags & OPf_KIDS))
1494             break;
1495         ref(cLISTOPo->op_last, type);
1496         break;
1497     default:
1498         break;
1499     }
1500     return scalar(o);
1501
1502 }
1503
1504 STATIC OP *
1505 S_dup_attrlist(pTHX_ OP *o)
1506 {
1507     OP *rop = Nullop;
1508
1509     /* An attrlist is either a simple OP_CONST or an OP_LIST with kids,
1510      * where the first kid is OP_PUSHMARK and the remaining ones
1511      * are OP_CONST.  We need to push the OP_CONST values.
1512      */
1513     if (o->op_type == OP_CONST)
1514         rop = newSVOP(OP_CONST, o->op_flags, SvREFCNT_inc(cSVOPo->op_sv));
1515     else {
1516         assert((o->op_type == OP_LIST) && (o->op_flags & OPf_KIDS));
1517         for (o = cLISTOPo->op_first; o; o=o->op_sibling) {
1518             if (o->op_type == OP_CONST)
1519                 rop = append_elem(OP_LIST, rop,
1520                                   newSVOP(OP_CONST, o->op_flags,
1521                                           SvREFCNT_inc(cSVOPo->op_sv)));
1522         }
1523     }
1524     return rop;
1525 }
1526
1527 STATIC void
1528 S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs, bool for_my)
1529 {
1530     dVAR;
1531     SV *stashsv;
1532
1533     /* fake up C<use attributes $pkg,$rv,@attrs> */
1534     ENTER;              /* need to protect against side-effects of 'use' */
1535     SAVEINT(PL_expect);
1536     stashsv = stash ? newSVhek(HvNAME_HEK(stash)) : &PL_sv_no;
1537
1538 #define ATTRSMODULE "attributes"
1539 #define ATTRSMODULE_PM "attributes.pm"
1540
1541     if (for_my) {
1542         /* Don't force the C<use> if we don't need it. */
1543         SV **svp = hv_fetch(GvHVn(PL_incgv), ATTRSMODULE_PM,
1544                        sizeof(ATTRSMODULE_PM)-1, 0);
1545         if (svp && *svp != &PL_sv_undef)
1546             ;           /* already in %INC */
1547         else
1548             Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT,
1549                              newSVpvn(ATTRSMODULE, sizeof(ATTRSMODULE)-1),
1550                              Nullsv);
1551     }
1552     else {
1553         Perl_load_module(aTHX_ PERL_LOADMOD_IMPORT_OPS,
1554                          newSVpvn(ATTRSMODULE, sizeof(ATTRSMODULE)-1),
1555                          Nullsv,
1556                          prepend_elem(OP_LIST,
1557                                       newSVOP(OP_CONST, 0, stashsv),
1558                                       prepend_elem(OP_LIST,
1559                                                    newSVOP(OP_CONST, 0,
1560                                                            newRV(target)),
1561                                                    dup_attrlist(attrs))));
1562     }
1563     LEAVE;
1564 }
1565
1566 STATIC void
1567 S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp)
1568 {
1569     OP *pack, *imop, *arg;
1570     SV *meth, *stashsv;
1571
1572     if (!attrs)
1573         return;
1574
1575     assert(target->op_type == OP_PADSV ||
1576            target->op_type == OP_PADHV ||
1577            target->op_type == OP_PADAV);
1578
1579     /* Ensure that attributes.pm is loaded. */
1580     apply_attrs(stash, PAD_SV(target->op_targ), attrs, TRUE);
1581
1582     /* Need package name for method call. */
1583     pack = newSVOP(OP_CONST, 0, newSVpvn(ATTRSMODULE, sizeof(ATTRSMODULE)-1));
1584
1585     /* Build up the real arg-list. */
1586     stashsv = stash ? newSVhek(HvNAME_HEK(stash)) : &PL_sv_no;
1587
1588     arg = newOP(OP_PADSV, 0);
1589     arg->op_targ = target->op_targ;
1590     arg = prepend_elem(OP_LIST,
1591                        newSVOP(OP_CONST, 0, stashsv),
1592                        prepend_elem(OP_LIST,
1593                                     newUNOP(OP_REFGEN, 0,
1594                                             mod(arg, OP_REFGEN)),
1595                                     dup_attrlist(attrs)));
1596
1597     /* Fake up a method call to import */
1598     meth = newSVpvn_share("import", 6, 0);
1599     imop = convert(OP_ENTERSUB, OPf_STACKED|OPf_SPECIAL|OPf_WANT_VOID,
1600                    append_elem(OP_LIST,
1601                                prepend_elem(OP_LIST, pack, list(arg)),
1602                                newSVOP(OP_METHOD_NAMED, 0, meth)));
1603     imop->op_private |= OPpENTERSUB_NOMOD;
1604
1605     /* Combine the ops. */
1606     *imopsp = append_elem(OP_LIST, *imopsp, imop);
1607 }
1608
1609 /*
1610 =notfor apidoc apply_attrs_string
1611
1612 Attempts to apply a list of attributes specified by the C<attrstr> and
1613 C<len> arguments to the subroutine identified by the C<cv> argument which
1614 is expected to be associated with the package identified by the C<stashpv>
1615 argument (see L<attributes>).  It gets this wrong, though, in that it
1616 does not correctly identify the boundaries of the individual attribute
1617 specifications within C<attrstr>.  This is not really intended for the
1618 public API, but has to be listed here for systems such as AIX which
1619 need an explicit export list for symbols.  (It's called from XS code
1620 in support of the C<ATTRS:> keyword from F<xsubpp>.)  Patches to fix it
1621 to respect attribute syntax properly would be welcome.
1622
1623 =cut
1624 */
1625
1626 void
1627 Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv,
1628                         const char *attrstr, STRLEN len)
1629 {
1630     OP *attrs = Nullop;
1631
1632     if (!len) {
1633         len = strlen(attrstr);
1634     }
1635
1636     while (len) {
1637         for (; isSPACE(*attrstr) && len; --len, ++attrstr) ;
1638         if (len) {
1639             const char * const sstr = attrstr;
1640             for (; !isSPACE(*attrstr) && len; --len, ++attrstr) ;
1641             attrs = append_elem(OP_LIST, attrs,
1642                                 newSVOP(OP_CONST, 0,
1643                                         newSVpvn(sstr, attrstr-sstr)));
1644         }
1645     }
1646
1647     Perl_load_module(aTHX_ PERL_LOADMOD_IMPORT_OPS,
1648                      newSVpvn(ATTRSMODULE, sizeof(ATTRSMODULE)-1),
1649                      Nullsv, prepend_elem(OP_LIST,
1650                                   newSVOP(OP_CONST, 0, newSVpv(stashpv,0)),
1651                                   prepend_elem(OP_LIST,
1652                                                newSVOP(OP_CONST, 0,
1653                                                        newRV((SV*)cv)),
1654                                                attrs)));
1655 }
1656
1657 STATIC OP *
1658 S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp)
1659 {
1660     I32 type;
1661
1662     if (!o || PL_error_count)
1663         return o;
1664
1665     type = o->op_type;
1666     if (type == OP_LIST) {
1667         OP *kid;
1668         for (kid = cLISTOPo->op_first; kid; kid = kid->op_sibling)
1669             my_kid(kid, attrs, imopsp);
1670     } else if (type == OP_UNDEF) {
1671         return o;
1672     } else if (type == OP_RV2SV ||      /* "our" declaration */
1673                type == OP_RV2AV ||
1674                type == OP_RV2HV) { /* XXX does this let anything illegal in? */
1675         if (cUNOPo->op_first->op_type != OP_GV) { /* MJD 20011224 */
1676             yyerror(Perl_form(aTHX_ "Can't declare %s in %s",
1677                         OP_DESC(o), PL_in_my == KEY_our ? "our" : "my"));
1678         } else if (attrs) {
1679             GV *gv = cGVOPx_gv(cUNOPo->op_first);
1680             PL_in_my = FALSE;
1681             PL_in_my_stash = Nullhv;
1682             apply_attrs(GvSTASH(gv),
1683                         (type == OP_RV2SV ? GvSV(gv) :
1684                          type == OP_RV2AV ? (SV*)GvAV(gv) :
1685                          type == OP_RV2HV ? (SV*)GvHV(gv) : (SV*)gv),
1686                         attrs, FALSE);
1687         }
1688         o->op_private |= OPpOUR_INTRO;
1689         return o;
1690     }
1691     else if (type != OP_PADSV &&
1692              type != OP_PADAV &&
1693              type != OP_PADHV &&
1694              type != OP_PUSHMARK)
1695     {
1696         yyerror(Perl_form(aTHX_ "Can't declare %s in \"%s\"",
1697                           OP_DESC(o),
1698                           PL_in_my == KEY_our ? "our" : "my"));
1699         return o;
1700     }
1701     else if (attrs && type != OP_PUSHMARK) {
1702         HV *stash;
1703
1704         PL_in_my = FALSE;
1705         PL_in_my_stash = Nullhv;
1706
1707         /* check for C<my Dog $spot> when deciding package */
1708         stash = PAD_COMPNAME_TYPE(o->op_targ);
1709         if (!stash)
1710             stash = PL_curstash;
1711         apply_attrs_my(stash, o, attrs, imopsp);
1712     }
1713     o->op_flags |= OPf_MOD;
1714     o->op_private |= OPpLVAL_INTRO;
1715     return o;
1716 }
1717
1718 OP *
1719 Perl_my_attrs(pTHX_ OP *o, OP *attrs)
1720 {
1721     OP *rops = Nullop;
1722     int maybe_scalar = 0;
1723
1724 /* [perl #17376]: this appears to be premature, and results in code such as
1725    C< our(%x); > executing in list mode rather than void mode */
1726 #if 0
1727     if (o->op_flags & OPf_PARENS)
1728         list(o);
1729     else
1730         maybe_scalar = 1;
1731 #else
1732     maybe_scalar = 1;
1733 #endif
1734     if (attrs)
1735         SAVEFREEOP(attrs);
1736     o = my_kid(o, attrs, &rops);
1737     if (rops) {
1738         if (maybe_scalar && o->op_type == OP_PADSV) {
1739             o = scalar(append_list(OP_LIST, (LISTOP*)rops, (LISTOP*)o));
1740             o->op_private |= OPpLVAL_INTRO;
1741         }
1742         else
1743             o = append_list(OP_LIST, (LISTOP*)o, (LISTOP*)rops);
1744     }
1745     PL_in_my = FALSE;
1746     PL_in_my_stash = Nullhv;
1747     return o;
1748 }
1749
1750 OP *
1751 Perl_my(pTHX_ OP *o)
1752 {
1753     return my_attrs(o, Nullop);
1754 }
1755
1756 OP *
1757 Perl_sawparens(pTHX_ OP *o)
1758 {
1759     if (o)
1760         o->op_flags |= OPf_PARENS;
1761     return o;
1762 }
1763
1764 OP *
1765 Perl_bind_match(pTHX_ I32 type, OP *left, OP *right)
1766 {
1767     OP *o;
1768     bool ismatchop = 0;
1769
1770     if ( (left->op_type == OP_RV2AV ||
1771        left->op_type == OP_RV2HV ||
1772        left->op_type == OP_PADAV ||
1773        left->op_type == OP_PADHV)
1774        && ckWARN(WARN_MISC))
1775     {
1776       const char *desc = PL_op_desc[(right->op_type == OP_SUBST ||
1777                             right->op_type == OP_TRANS)
1778                            ? right->op_type : OP_MATCH];
1779       const char *sample = ((left->op_type == OP_RV2AV ||
1780                              left->op_type == OP_PADAV)
1781                             ? "@array" : "%hash");
1782       Perl_warner(aTHX_ packWARN(WARN_MISC),
1783              "Applying %s to %s will act on scalar(%s)",
1784              desc, sample, sample);
1785     }
1786
1787     if (right->op_type == OP_CONST &&
1788         cSVOPx(right)->op_private & OPpCONST_BARE &&
1789         cSVOPx(right)->op_private & OPpCONST_STRICT)
1790     {
1791         no_bareword_allowed(right);
1792     }
1793
1794     ismatchop = right->op_type == OP_MATCH ||
1795                 right->op_type == OP_SUBST ||
1796                 right->op_type == OP_TRANS;
1797     if (ismatchop && right->op_private & OPpTARGET_MY) {
1798         right->op_targ = 0;
1799         right->op_private &= ~OPpTARGET_MY;
1800     }
1801     if (!(right->op_flags & OPf_STACKED) && ismatchop) {
1802         right->op_flags |= OPf_STACKED;
1803         if (right->op_type != OP_MATCH &&
1804             ! (right->op_type == OP_TRANS &&
1805                right->op_private & OPpTRANS_IDENTICAL))
1806             left = mod(left, right->op_type);
1807         if (right->op_type == OP_TRANS)
1808             o = newBINOP(OP_NULL, OPf_STACKED, scalar(left), right);
1809         else
1810             o = prepend_elem(right->op_type, scalar(left), right);
1811         if (type == OP_NOT)
1812             return newUNOP(OP_NOT, 0, scalar(o));
1813         return o;
1814     }
1815     else
1816         return bind_match(type, left,
1817                 pmruntime(newPMOP(OP_MATCH, 0), right, 0));
1818 }
1819
1820 OP *
1821 Perl_invert(pTHX_ OP *o)
1822 {
1823     if (!o)
1824         return o;
1825     /* XXX need to optimize away NOT NOT here?  Or do we let optimizer do it? */
1826     return newUNOP(OP_NOT, OPf_SPECIAL, scalar(o));
1827 }
1828
1829 OP *
1830 Perl_scope(pTHX_ OP *o)
1831 {
1832     dVAR;
1833     if (o) {
1834         if (o->op_flags & OPf_PARENS || PERLDB_NOOPT || PL_tainting) {
1835             o = prepend_elem(OP_LINESEQ, newOP(OP_ENTER, 0), o);
1836             o->op_type = OP_LEAVE;
1837             o->op_ppaddr = PL_ppaddr[OP_LEAVE];
1838         }
1839         else if (o->op_type == OP_LINESEQ) {
1840             OP *kid;
1841             o->op_type = OP_SCOPE;
1842             o->op_ppaddr = PL_ppaddr[OP_SCOPE];
1843             kid = ((LISTOP*)o)->op_first;
1844             if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE)
1845                 op_null(kid);
1846         }
1847         else
1848             o = newLISTOP(OP_SCOPE, 0, o, Nullop);
1849     }
1850     return o;
1851 }
1852
1853 /* XXX kept for BINCOMPAT only */
1854 void
1855 Perl_save_hints(pTHX)
1856 {
1857     Perl_croak(aTHX_ "internal error: obsolete function save_hints() called");
1858 }
1859
1860 int
1861 Perl_block_start(pTHX_ int full)
1862 {
1863     const int retval = PL_savestack_ix;
1864     pad_block_start(full);
1865     SAVEHINTS();
1866     PL_hints &= ~HINT_BLOCK_SCOPE;
1867     SAVESPTR(PL_compiling.cop_warnings);
1868     if (! specialWARN(PL_compiling.cop_warnings)) {
1869         PL_compiling.cop_warnings = newSVsv(PL_compiling.cop_warnings) ;
1870         SAVEFREESV(PL_compiling.cop_warnings) ;
1871     }
1872     SAVESPTR(PL_compiling.cop_io);
1873     if (! specialCopIO(PL_compiling.cop_io)) {
1874         PL_compiling.cop_io = newSVsv(PL_compiling.cop_io) ;
1875         SAVEFREESV(PL_compiling.cop_io) ;
1876     }
1877     return retval;
1878 }
1879
1880 OP*
1881 Perl_block_end(pTHX_ I32 floor, OP *seq)
1882 {
1883     const int needblockscope = PL_hints & HINT_BLOCK_SCOPE;
1884     OP* retval = scalarseq(seq);
1885     LEAVE_SCOPE(floor);
1886     PL_compiling.op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
1887     if (needblockscope)
1888         PL_hints |= HINT_BLOCK_SCOPE; /* propagate out */
1889     pad_leavemy();
1890     return retval;
1891 }
1892
1893 STATIC OP *
1894 S_newDEFSVOP(pTHX)
1895 {
1896     const I32 offset = pad_findmy("$_");
1897     if (offset == NOT_IN_PAD || PAD_COMPNAME_FLAGS(offset) & SVpad_OUR) {
1898         return newSVREF(newGVOP(OP_GV, 0, PL_defgv));
1899     }
1900     else {
1901         OP *o = newOP(OP_PADSV, 0);
1902         o->op_targ = offset;
1903         return o;
1904     }
1905 }
1906
1907 void
1908 Perl_newPROG(pTHX_ OP *o)
1909 {
1910     if (PL_in_eval) {
1911         if (PL_eval_root)
1912                 return;
1913         PL_eval_root = newUNOP(OP_LEAVEEVAL,
1914                                ((PL_in_eval & EVAL_KEEPERR)
1915                                 ? OPf_SPECIAL : 0), o);
1916         PL_eval_start = linklist(PL_eval_root);
1917         PL_eval_root->op_private |= OPpREFCOUNTED;
1918         OpREFCNT_set(PL_eval_root, 1);
1919         PL_eval_root->op_next = 0;
1920         CALL_PEEP(PL_eval_start);
1921     }
1922     else {
1923         if (o->op_type == OP_STUB) {
1924             PL_comppad_name = 0;
1925             PL_compcv = 0;
1926             FreeOp(o);
1927             return;
1928         }
1929         PL_main_root = scope(sawparens(scalarvoid(o)));
1930         PL_curcop = &PL_compiling;
1931         PL_main_start = LINKLIST(PL_main_root);
1932         PL_main_root->op_private |= OPpREFCOUNTED;
1933         OpREFCNT_set(PL_main_root, 1);
1934         PL_main_root->op_next = 0;
1935         CALL_PEEP(PL_main_start);
1936         PL_compcv = 0;
1937
1938         /* Register with debugger */
1939         if (PERLDB_INTER) {
1940             CV *cv = get_cv("DB::postponed", FALSE);
1941             if (cv) {
1942                 dSP;
1943                 PUSHMARK(SP);
1944                 XPUSHs((SV*)CopFILEGV(&PL_compiling));
1945                 PUTBACK;
1946                 call_sv((SV*)cv, G_DISCARD);
1947             }
1948         }
1949     }
1950 }
1951
1952 OP *
1953 Perl_localize(pTHX_ OP *o, I32 lex)
1954 {
1955     if (o->op_flags & OPf_PARENS)
1956 /* [perl #17376]: this appears to be premature, and results in code such as
1957    C< our(%x); > executing in list mode rather than void mode */
1958 #if 0
1959         list(o);
1960 #else
1961         ;
1962 #endif
1963     else {
1964         if ( PL_bufptr > PL_oldbufptr && PL_bufptr[-1] == ','
1965             && ckWARN(WARN_PARENTHESIS))
1966         {
1967             char *s = PL_bufptr;
1968             bool sigil = FALSE;
1969
1970             /* some heuristics to detect a potential error */
1971             while (*s && (strchr(", \t\n", *s)))
1972                 s++;
1973
1974             while (1) {
1975                 if (*s && strchr("@$%*", *s) && *++s
1976                        && (isALNUM(*s) || UTF8_IS_CONTINUED(*s))) {
1977                     s++;
1978                     sigil = TRUE;
1979                     while (*s && (isALNUM(*s) || UTF8_IS_CONTINUED(*s)))
1980                         s++;
1981                     while (*s && (strchr(", \t\n", *s)))
1982                         s++;
1983                 }
1984                 else
1985                     break;
1986             }
1987             if (sigil && (*s == ';' || *s == '=')) {
1988                 Perl_warner(aTHX_ packWARN(WARN_PARENTHESIS),
1989                                 "Parentheses missing around \"%s\" list",
1990                                 lex ? (PL_in_my == KEY_our ? "our" : "my")
1991                                 : "local");
1992             }
1993         }
1994     }
1995     if (lex)
1996         o = my(o);
1997     else
1998         o = mod(o, OP_NULL);            /* a bit kludgey */
1999     PL_in_my = FALSE;
2000     PL_in_my_stash = Nullhv;
2001     return o;
2002 }
2003
2004 OP *
2005 Perl_jmaybe(pTHX_ OP *o)
2006 {
2007     if (o->op_type == OP_LIST) {
2008         OP *o2;
2009         o2 = newSVREF(newGVOP(OP_GV, 0, gv_fetchpv(";", TRUE, SVt_PV))),
2010         o = convert(OP_JOIN, 0, prepend_elem(OP_LIST, o2, o));
2011     }
2012     return o;
2013 }
2014
2015 OP *
2016 Perl_fold_constants(pTHX_ register OP *o)
2017 {
2018     dVAR;
2019     register OP *curop;
2020     I32 type = o->op_type;
2021     SV *sv;
2022
2023     if (PL_opargs[type] & OA_RETSCALAR)
2024         scalar(o);
2025     if (PL_opargs[type] & OA_TARGET && !o->op_targ)
2026         o->op_targ = pad_alloc(type, SVs_PADTMP);
2027
2028     /* integerize op, unless it happens to be C<-foo>.
2029      * XXX should pp_i_negate() do magic string negation instead? */
2030     if ((PL_opargs[type] & OA_OTHERINT) && (PL_hints & HINT_INTEGER)
2031         && !(type == OP_NEGATE && cUNOPo->op_first->op_type == OP_CONST
2032              && (cUNOPo->op_first->op_private & OPpCONST_BARE)))
2033     {
2034         o->op_ppaddr = PL_ppaddr[type = ++(o->op_type)];
2035     }
2036
2037     if (!(PL_opargs[type] & OA_FOLDCONST))
2038         goto nope;
2039
2040     switch (type) {
2041     case OP_NEGATE:
2042         /* XXX might want a ck_negate() for this */
2043         cUNOPo->op_first->op_private &= ~OPpCONST_STRICT;
2044         break;
2045     case OP_SPRINTF:
2046     case OP_UCFIRST:
2047     case OP_LCFIRST:
2048     case OP_UC:
2049     case OP_LC:
2050     case OP_SLT:
2051     case OP_SGT:
2052     case OP_SLE:
2053     case OP_SGE:
2054     case OP_SCMP:
2055         /* XXX what about the numeric ops? */
2056         if (PL_hints & HINT_LOCALE)
2057             goto nope;
2058     }
2059
2060     if (PL_error_count)
2061         goto nope;              /* Don't try to run w/ errors */
2062
2063     for (curop = LINKLIST(o); curop != o; curop = LINKLIST(curop)) {
2064         if ((curop->op_type != OP_CONST ||
2065              (curop->op_private & OPpCONST_BARE)) &&
2066             curop->op_type != OP_LIST &&
2067             curop->op_type != OP_SCALAR &&
2068             curop->op_type != OP_NULL &&
2069             curop->op_type != OP_PUSHMARK)
2070         {
2071             goto nope;
2072         }
2073     }
2074
2075     curop = LINKLIST(o);
2076     o->op_next = 0;
2077     PL_op = curop;
2078     CALLRUNOPS(aTHX);
2079     sv = *(PL_stack_sp--);
2080     if (o->op_targ && sv == PAD_SV(o->op_targ)) /* grab pad temp? */
2081         pad_swipe(o->op_targ,  FALSE);
2082     else if (SvTEMP(sv)) {                      /* grab mortal temp? */
2083         (void)SvREFCNT_inc(sv);
2084         SvTEMP_off(sv);
2085     }
2086     op_free(o);
2087     if (type == OP_RV2GV)
2088         return newGVOP(OP_GV, 0, (GV*)sv);
2089     return newSVOP(OP_CONST, 0, sv);
2090
2091   nope:
2092     return o;
2093 }
2094
2095 OP *
2096 Perl_gen_constant_list(pTHX_ register OP *o)
2097 {
2098     dVAR;
2099     register OP *curop;
2100     const I32 oldtmps_floor = PL_tmps_floor;
2101
2102     list(o);
2103     if (PL_error_count)
2104         return o;               /* Don't attempt to run with errors */
2105
2106     PL_op = curop = LINKLIST(o);
2107     o->op_next = 0;
2108     CALL_PEEP(curop);
2109     pp_pushmark();
2110     CALLRUNOPS(aTHX);
2111     PL_op = curop;
2112     pp_anonlist();
2113     PL_tmps_floor = oldtmps_floor;
2114
2115     o->op_type = OP_RV2AV;
2116     o->op_ppaddr = PL_ppaddr[OP_RV2AV];
2117     o->op_flags &= ~OPf_REF;    /* treat \(1..2) like an ordinary list */
2118     o->op_flags |= OPf_PARENS;  /* and flatten \(1..2,3) */
2119     o->op_opt = 0;              /* needs to be revisited in peep() */
2120     curop = ((UNOP*)o)->op_first;
2121     ((UNOP*)o)->op_first = newSVOP(OP_CONST, 0, SvREFCNT_inc(*PL_stack_sp--));
2122     op_free(curop);
2123     linklist(o);
2124     return list(o);
2125 }
2126
2127 OP *
2128 Perl_convert(pTHX_ I32 type, I32 flags, OP *o)
2129 {
2130     dVAR;
2131     if (!o || o->op_type != OP_LIST)
2132         o = newLISTOP(OP_LIST, 0, o, Nullop);
2133     else
2134         o->op_flags &= ~OPf_WANT;
2135
2136     if (!(PL_opargs[type] & OA_MARK))
2137         op_null(cLISTOPo->op_first);
2138
2139     o->op_type = (OPCODE)type;
2140     o->op_ppaddr = PL_ppaddr[type];
2141     o->op_flags |= flags;
2142
2143     o = CHECKOP(type, o);
2144     if (o->op_type != (unsigned)type)
2145         return o;
2146
2147     return fold_constants(o);
2148 }
2149
2150 /* List constructors */
2151
2152 OP *
2153 Perl_append_elem(pTHX_ I32 type, OP *first, OP *last)
2154 {
2155     if (!first)
2156         return last;
2157
2158     if (!last)
2159         return first;
2160
2161     if (first->op_type != (unsigned)type
2162         || (type == OP_LIST && (first->op_flags & OPf_PARENS)))
2163     {
2164         return newLISTOP(type, 0, first, last);
2165     }
2166
2167     if (first->op_flags & OPf_KIDS)
2168         ((LISTOP*)first)->op_last->op_sibling = last;
2169     else {
2170         first->op_flags |= OPf_KIDS;
2171         ((LISTOP*)first)->op_first = last;
2172     }
2173     ((LISTOP*)first)->op_last = last;
2174     return first;
2175 }
2176
2177 OP *
2178 Perl_append_list(pTHX_ I32 type, LISTOP *first, LISTOP *last)
2179 {
2180     if (!first)
2181         return (OP*)last;
2182
2183     if (!last)
2184         return (OP*)first;
2185
2186     if (first->op_type != (unsigned)type)
2187         return prepend_elem(type, (OP*)first, (OP*)last);
2188
2189     if (last->op_type != (unsigned)type)
2190         return append_elem(type, (OP*)first, (OP*)last);
2191
2192     first->op_last->op_sibling = last->op_first;
2193     first->op_last = last->op_last;
2194     first->op_flags |= (last->op_flags & OPf_KIDS);
2195
2196     FreeOp(last);
2197
2198     return (OP*)first;
2199 }
2200
2201 OP *
2202 Perl_prepend_elem(pTHX_ I32 type, OP *first, OP *last)
2203 {
2204     if (!first)
2205         return last;
2206
2207     if (!last)
2208         return first;
2209
2210     if (last->op_type == (unsigned)type) {
2211         if (type == OP_LIST) {  /* already a PUSHMARK there */
2212             first->op_sibling = ((LISTOP*)last)->op_first->op_sibling;
2213             ((LISTOP*)last)->op_first->op_sibling = first;
2214             if (!(first->op_flags & OPf_PARENS))
2215                 last->op_flags &= ~OPf_PARENS;
2216         }
2217         else {
2218             if (!(last->op_flags & OPf_KIDS)) {
2219                 ((LISTOP*)last)->op_last = first;
2220                 last->op_flags |= OPf_KIDS;
2221             }
2222             first->op_sibling = ((LISTOP*)last)->op_first;
2223             ((LISTOP*)last)->op_first = first;
2224         }
2225         last->op_flags |= OPf_KIDS;
2226         return last;
2227     }
2228
2229     return newLISTOP(type, 0, first, last);
2230 }
2231
2232 /* Constructors */
2233
2234 OP *
2235 Perl_newNULLLIST(pTHX)
2236 {
2237     return newOP(OP_STUB, 0);
2238 }
2239
2240 OP *
2241 Perl_force_list(pTHX_ OP *o)
2242 {
2243     if (!o || o->op_type != OP_LIST)
2244         o = newLISTOP(OP_LIST, 0, o, Nullop);
2245     op_null(o);
2246     return o;
2247 }
2248
2249 OP *
2250 Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP *first, OP *last)
2251 {
2252     dVAR;
2253     LISTOP *listop;
2254
2255     NewOp(1101, listop, 1, LISTOP);
2256
2257     listop->op_type = (OPCODE)type;
2258     listop->op_ppaddr = PL_ppaddr[type];
2259     if (first || last)
2260         flags |= OPf_KIDS;
2261     listop->op_flags = (U8)flags;
2262
2263     if (!last && first)
2264         last = first;
2265     else if (!first && last)
2266         first = last;
2267     else if (first)
2268         first->op_sibling = last;
2269     listop->op_first = first;
2270     listop->op_last = last;
2271     if (type == OP_LIST) {
2272         OP* pushop;
2273         pushop = newOP(OP_PUSHMARK, 0);
2274         pushop->op_sibling = first;
2275         listop->op_first = pushop;
2276         listop->op_flags |= OPf_KIDS;
2277         if (!last)
2278             listop->op_last = pushop;
2279     }
2280
2281     return CHECKOP(type, listop);
2282 }
2283
2284 OP *
2285 Perl_newOP(pTHX_ I32 type, I32 flags)
2286 {
2287     dVAR;
2288     OP *o;
2289     NewOp(1101, o, 1, OP);
2290     o->op_type = (OPCODE)type;
2291     o->op_ppaddr = PL_ppaddr[type];
2292     o->op_flags = (U8)flags;
2293
2294     o->op_next = o;
2295     o->op_private = (U8)(0 | (flags >> 8));
2296     if (PL_opargs[type] & OA_RETSCALAR)
2297         scalar(o);
2298     if (PL_opargs[type] & OA_TARGET)
2299         o->op_targ = pad_alloc(type, SVs_PADTMP);
2300     return CHECKOP(type, o);
2301 }
2302
2303 OP *
2304 Perl_newUNOP(pTHX_ I32 type, I32 flags, OP *first)
2305 {
2306     dVAR;
2307     UNOP *unop;
2308
2309     if (!first)
2310         first = newOP(OP_STUB, 0);
2311     if (PL_opargs[type] & OA_MARK)
2312         first = force_list(first);
2313
2314     NewOp(1101, unop, 1, UNOP);
2315     unop->op_type = (OPCODE)type;
2316     unop->op_ppaddr = PL_ppaddr[type];
2317     unop->op_first = first;
2318     unop->op_flags = flags | OPf_KIDS;
2319     unop->op_private = (U8)(1 | (flags >> 8));
2320     unop = (UNOP*) CHECKOP(type, unop);
2321     if (unop->op_next)
2322         return (OP*)unop;
2323
2324     return fold_constants((OP *) unop);
2325 }
2326
2327 OP *
2328 Perl_newBINOP(pTHX_ I32 type, I32 flags, OP *first, OP *last)
2329 {
2330     dVAR;
2331     BINOP *binop;
2332     NewOp(1101, binop, 1, BINOP);
2333
2334     if (!first)
2335         first = newOP(OP_NULL, 0);
2336
2337     binop->op_type = (OPCODE)type;
2338     binop->op_ppaddr = PL_ppaddr[type];
2339     binop->op_first = first;
2340     binop->op_flags = flags | OPf_KIDS;
2341     if (!last) {
2342         last = first;
2343         binop->op_private = (U8)(1 | (flags >> 8));
2344     }
2345     else {
2346         binop->op_private = (U8)(2 | (flags >> 8));
2347         first->op_sibling = last;
2348     }
2349
2350     binop = (BINOP*)CHECKOP(type, binop);
2351     if (binop->op_next || binop->op_type != (OPCODE)type)
2352         return (OP*)binop;
2353
2354     binop->op_last = binop->op_first->op_sibling;
2355
2356     return fold_constants((OP *)binop);
2357 }
2358
2359 static int uvcompare(const void *a, const void *b) __attribute__nonnull__(1) __attribute__nonnull__(2) __attribute__pure__;
2360 static int uvcompare(const void *a, const void *b)
2361 {
2362     if (*((const UV *)a) < (*(const UV *)b))
2363         return -1;
2364     if (*((const UV *)a) > (*(const UV *)b))
2365         return 1;
2366     if (*((const UV *)a+1) < (*(const UV *)b+1))
2367         return -1;
2368     if (*((const UV *)a+1) > (*(const UV *)b+1))
2369         return 1;
2370     return 0;
2371 }
2372
2373 OP *
2374 Perl_pmtrans(pTHX_ OP *o, OP *expr, OP *repl)
2375 {
2376     SV *tstr = ((SVOP*)expr)->op_sv;
2377     SV *rstr = ((SVOP*)repl)->op_sv;
2378     STRLEN tlen;
2379     STRLEN rlen;
2380     const U8 *t = (U8*)SvPV_const(tstr, tlen);
2381     const U8 *r = (U8*)SvPV_const(rstr, rlen);
2382     register I32 i;
2383     register I32 j;
2384     I32 del;
2385     I32 complement;
2386     I32 squash;
2387     I32 grows = 0;
2388     register short *tbl;
2389
2390     PL_hints |= HINT_BLOCK_SCOPE;
2391     complement  = o->op_private & OPpTRANS_COMPLEMENT;
2392     del         = o->op_private & OPpTRANS_DELETE;
2393     squash      = o->op_private & OPpTRANS_SQUASH;
2394
2395     if (SvUTF8(tstr))
2396         o->op_private |= OPpTRANS_FROM_UTF;
2397
2398     if (SvUTF8(rstr))
2399         o->op_private |= OPpTRANS_TO_UTF;
2400
2401     if (o->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF)) {
2402         SV* listsv = newSVpvn("# comment\n",10);
2403         SV* transv = 0;
2404         const U8* tend = t + tlen;
2405         const U8* rend = r + rlen;
2406         STRLEN ulen;
2407         UV tfirst = 1;
2408         UV tlast = 0;
2409         IV tdiff;
2410         UV rfirst = 1;
2411         UV rlast = 0;
2412         IV rdiff;
2413         IV diff;
2414         I32 none = 0;
2415         U32 max = 0;
2416         I32 bits;
2417         I32 havefinal = 0;
2418         U32 final = 0;
2419         I32 from_utf    = o->op_private & OPpTRANS_FROM_UTF;
2420         I32 to_utf      = o->op_private & OPpTRANS_TO_UTF;
2421         U8* tsave = NULL;
2422         U8* rsave = NULL;
2423
2424         if (!from_utf) {
2425             STRLEN len = tlen;
2426             t = tsave = bytes_to_utf8(t, &len);
2427             tend = t + len;
2428         }
2429         if (!to_utf && rlen) {
2430             STRLEN len = rlen;
2431             r = rsave = bytes_to_utf8(r, &len);
2432             rend = r + len;
2433         }
2434
2435 /* There are several snags with this code on EBCDIC:
2436    1. 0xFF is a legal UTF-EBCDIC byte (there are no illegal bytes).
2437    2. scan_const() in toke.c has encoded chars in native encoding which makes
2438       ranges at least in EBCDIC 0..255 range the bottom odd.
2439 */
2440
2441         if (complement) {
2442             U8 tmpbuf[UTF8_MAXBYTES+1];
2443             UV *cp;
2444             UV nextmin = 0;
2445             Newx(cp, 2*tlen, UV);
2446             i = 0;
2447             transv = newSVpvn("",0);
2448             while (t < tend) {
2449                 cp[2*i] = utf8n_to_uvuni(t, tend-t, &ulen, 0);
2450                 t += ulen;
2451                 if (t < tend && NATIVE_TO_UTF(*t) == 0xff) {
2452                     t++;
2453                     cp[2*i+1] = utf8n_to_uvuni(t, tend-t, &ulen, 0);
2454                     t += ulen;
2455                 }
2456                 else {
2457                  cp[2*i+1] = cp[2*i];
2458                 }
2459                 i++;
2460             }
2461             qsort(cp, i, 2*sizeof(UV), uvcompare);
2462             for (j = 0; j < i; j++) {
2463                 UV  val = cp[2*j];
2464                 diff = val - nextmin;
2465                 if (diff > 0) {
2466                     t = uvuni_to_utf8(tmpbuf,nextmin);
2467                     sv_catpvn(transv, (char*)tmpbuf, t - tmpbuf);
2468                     if (diff > 1) {
2469                         U8  range_mark = UTF_TO_NATIVE(0xff);
2470                         t = uvuni_to_utf8(tmpbuf, val - 1);
2471                         sv_catpvn(transv, (char *)&range_mark, 1);
2472                         sv_catpvn(transv, (char*)tmpbuf, t - tmpbuf);
2473                     }
2474                 }
2475                 val = cp[2*j+1];
2476                 if (val >= nextmin)
2477                     nextmin = val + 1;
2478             }
2479             t = uvuni_to_utf8(tmpbuf,nextmin);
2480             sv_catpvn(transv, (char*)tmpbuf, t - tmpbuf);
2481             {
2482                 U8 range_mark = UTF_TO_NATIVE(0xff);
2483                 sv_catpvn(transv, (char *)&range_mark, 1);
2484             }
2485             t = uvuni_to_utf8_flags(tmpbuf, 0x7fffffff,
2486                                     UNICODE_ALLOW_SUPER);
2487             sv_catpvn(transv, (char*)tmpbuf, t - tmpbuf);
2488             t = (const U8*)SvPVX_const(transv);
2489             tlen = SvCUR(transv);
2490             tend = t + tlen;
2491             Safefree(cp);
2492         }
2493         else if (!rlen && !del) {
2494             r = t; rlen = tlen; rend = tend;
2495         }
2496         if (!squash) {
2497                 if ((!rlen && !del) || t == r ||
2498                     (tlen == rlen && memEQ((char *)t, (char *)r, tlen)))
2499                 {
2500                     o->op_private |= OPpTRANS_IDENTICAL;
2501                 }
2502         }
2503
2504         while (t < tend || tfirst <= tlast) {
2505             /* see if we need more "t" chars */
2506             if (tfirst > tlast) {
2507                 tfirst = (I32)utf8n_to_uvuni(t, tend - t, &ulen, 0);
2508                 t += ulen;
2509                 if (t < tend && NATIVE_TO_UTF(*t) == 0xff) {    /* illegal utf8 val indicates range */
2510                     t++;
2511                     tlast = (I32)utf8n_to_uvuni(t, tend - t, &ulen, 0);
2512                     t += ulen;
2513                 }
2514                 else
2515                     tlast = tfirst;
2516             }
2517
2518             /* now see if we need more "r" chars */
2519             if (rfirst > rlast) {
2520                 if (r < rend) {
2521                     rfirst = (I32)utf8n_to_uvuni(r, rend - r, &ulen, 0);
2522                     r += ulen;
2523                     if (r < rend && NATIVE_TO_UTF(*r) == 0xff) {        /* illegal utf8 val indicates range */
2524                         r++;
2525                         rlast = (I32)utf8n_to_uvuni(r, rend - r, &ulen, 0);
2526                         r += ulen;
2527                     }
2528                     else
2529                         rlast = rfirst;
2530                 }
2531                 else {
2532                     if (!havefinal++)
2533                         final = rlast;
2534                     rfirst = rlast = 0xffffffff;
2535                 }
2536             }
2537
2538             /* now see which range will peter our first, if either. */
2539             tdiff = tlast - tfirst;
2540             rdiff = rlast - rfirst;
2541
2542             if (tdiff <= rdiff)
2543                 diff = tdiff;
2544             else
2545                 diff = rdiff;
2546
2547             if (rfirst == 0xffffffff) {
2548                 diff = tdiff;   /* oops, pretend rdiff is infinite */
2549                 if (diff > 0)
2550                     Perl_sv_catpvf(aTHX_ listsv, "%04lx\t%04lx\tXXXX\n",
2551                                    (long)tfirst, (long)tlast);
2552                 else
2553                     Perl_sv_catpvf(aTHX_ listsv, "%04lx\t\tXXXX\n", (long)tfirst);
2554             }
2555             else {
2556                 if (diff > 0)
2557                     Perl_sv_catpvf(aTHX_ listsv, "%04lx\t%04lx\t%04lx\n",
2558                                    (long)tfirst, (long)(tfirst + diff),
2559                                    (long)rfirst);
2560                 else
2561                     Perl_sv_catpvf(aTHX_ listsv, "%04lx\t\t%04lx\n",
2562                                    (long)tfirst, (long)rfirst);
2563
2564                 if (rfirst + diff > max)
2565                     max = rfirst + diff;
2566                 if (!grows)
2567                     grows = (tfirst < rfirst &&
2568                              UNISKIP(tfirst) < UNISKIP(rfirst + diff));
2569                 rfirst += diff + 1;
2570             }
2571             tfirst += diff + 1;
2572         }
2573
2574         none = ++max;
2575         if (del)
2576             del = ++max;
2577
2578         if (max > 0xffff)
2579             bits = 32;
2580         else if (max > 0xff)
2581             bits = 16;
2582         else
2583             bits = 8;
2584
2585         Safefree(cPVOPo->op_pv);
2586         cSVOPo->op_sv = (SV*)swash_init("utf8", "", listsv, bits, none);
2587         SvREFCNT_dec(listsv);
2588         if (transv)
2589             SvREFCNT_dec(transv);
2590
2591         if (!del && havefinal && rlen)
2592             (void)hv_store((HV*)SvRV((cSVOPo->op_sv)), "FINAL", 5,
2593                            newSVuv((UV)final), 0);
2594
2595         if (grows)
2596             o->op_private |= OPpTRANS_GROWS;
2597
2598         if (tsave)
2599             Safefree(tsave);
2600         if (rsave)
2601             Safefree(rsave);
2602
2603         op_free(expr);
2604         op_free(repl);
2605         return o;
2606     }
2607
2608     tbl = (short*)cPVOPo->op_pv;
2609     if (complement) {
2610         Zero(tbl, 256, short);
2611         for (i = 0; i < (I32)tlen; i++)
2612             tbl[t[i]] = -1;
2613         for (i = 0, j = 0; i < 256; i++) {
2614             if (!tbl[i]) {
2615                 if (j >= (I32)rlen) {
2616                     if (del)
2617                         tbl[i] = -2;
2618                     else if (rlen)
2619                         tbl[i] = r[j-1];
2620                     else
2621                         tbl[i] = (short)i;
2622                 }
2623                 else {
2624                     if (i < 128 && r[j] >= 128)
2625                         grows = 1;
2626                     tbl[i] = r[j++];
2627                 }
2628             }
2629         }
2630         if (!del) {
2631             if (!rlen) {
2632                 j = rlen;
2633                 if (!squash)
2634                     o->op_private |= OPpTRANS_IDENTICAL;
2635             }
2636             else if (j >= (I32)rlen)
2637                 j = rlen - 1;
2638             else
2639                 cPVOPo->op_pv = (char*)Renew(tbl, 0x101+rlen-j, short);
2640             tbl[0x100] = rlen - j;
2641             for (i=0; i < (I32)rlen - j; i++)
2642                 tbl[0x101+i] = r[j+i];
2643         }
2644     }
2645     else {
2646         if (!rlen && !del) {
2647             r = t; rlen = tlen;
2648             if (!squash)
2649                 o->op_private |= OPpTRANS_IDENTICAL;
2650         }
2651         else if (!squash && rlen == tlen && memEQ((char*)t, (char*)r, tlen)) {
2652             o->op_private |= OPpTRANS_IDENTICAL;
2653         }
2654         for (i = 0; i < 256; i++)
2655             tbl[i] = -1;
2656         for (i = 0, j = 0; i < (I32)tlen; i++,j++) {
2657             if (j >= (I32)rlen) {
2658                 if (del) {
2659                     if (tbl[t[i]] == -1)
2660                         tbl[t[i]] = -2;
2661                     continue;
2662                 }
2663                 --j;
2664             }
2665             if (tbl[t[i]] == -1) {
2666                 if (t[i] < 128 && r[j] >= 128)
2667                     grows = 1;
2668                 tbl[t[i]] = r[j];
2669             }
2670         }
2671     }
2672     if (grows)
2673         o->op_private |= OPpTRANS_GROWS;
2674     op_free(expr);
2675     op_free(repl);
2676
2677     return o;
2678 }
2679
2680 OP *
2681 Perl_newPMOP(pTHX_ I32 type, I32 flags)
2682 {
2683     dVAR;
2684     PMOP *pmop;
2685
2686     NewOp(1101, pmop, 1, PMOP);
2687     pmop->op_type = (OPCODE)type;
2688     pmop->op_ppaddr = PL_ppaddr[type];
2689     pmop->op_flags = (U8)flags;
2690     pmop->op_private = (U8)(0 | (flags >> 8));
2691
2692     if (PL_hints & HINT_RE_TAINT)
2693         pmop->op_pmpermflags |= PMf_RETAINT;
2694     if (PL_hints & HINT_LOCALE)
2695         pmop->op_pmpermflags |= PMf_LOCALE;
2696     pmop->op_pmflags = pmop->op_pmpermflags;
2697
2698 #ifdef USE_ITHREADS
2699     {
2700         SV* repointer;
2701         if(av_len((AV*) PL_regex_pad[0]) > -1) {
2702             repointer = av_pop((AV*)PL_regex_pad[0]);
2703             pmop->op_pmoffset = SvIV(repointer);
2704             SvREPADTMP_off(repointer);
2705             sv_setiv(repointer,0);
2706         } else {
2707             repointer = newSViv(0);
2708             av_push(PL_regex_padav,SvREFCNT_inc(repointer));
2709             pmop->op_pmoffset = av_len(PL_regex_padav);
2710             PL_regex_pad = AvARRAY(PL_regex_padav);
2711         }
2712     }
2713 #endif
2714
2715         /* link into pm list */
2716     if (type != OP_TRANS && PL_curstash) {
2717         MAGIC *mg = mg_find((SV*)PL_curstash, PERL_MAGIC_symtab);
2718
2719         if (!mg) {
2720             mg = sv_magicext((SV*)PL_curstash, 0, PERL_MAGIC_symtab, 0, 0, 0);
2721         }
2722         pmop->op_pmnext = (PMOP*)mg->mg_obj;
2723         mg->mg_obj = (SV*)pmop;
2724         PmopSTASH_set(pmop,PL_curstash);
2725     }
2726
2727     return CHECKOP(type, pmop);
2728 }
2729
2730 /* Given some sort of match op o, and an expression expr containing a
2731  * pattern, either compile expr into a regex and attach it to o (if it's
2732  * constant), or convert expr into a runtime regcomp op sequence (if it's
2733  * not)
2734  *
2735  * isreg indicates that the pattern is part of a regex construct, eg
2736  * $x =~ /pattern/ or split /pattern/, as opposed to $x =~ $pattern or
2737  * split "pattern", which aren't. In the former case, expr will be a list
2738  * if the pattern contains more than one term (eg /a$b/) or if it contains
2739  * a replacement, ie s/// or tr///.
2740  */
2741
2742 OP *
2743 Perl_pmruntime(pTHX_ OP *o, OP *expr, bool isreg)
2744 {
2745     dVAR;
2746     PMOP *pm;
2747     LOGOP *rcop;
2748     I32 repl_has_vars = 0;
2749     OP* repl  = Nullop;
2750     bool reglist;
2751
2752     if (o->op_type == OP_SUBST || o->op_type == OP_TRANS) {
2753         /* last element in list is the replacement; pop it */
2754         OP* kid;
2755         repl = cLISTOPx(expr)->op_last;
2756         kid = cLISTOPx(expr)->op_first;
2757         while (kid->op_sibling != repl)
2758             kid = kid->op_sibling;
2759         kid->op_sibling = Nullop;
2760         cLISTOPx(expr)->op_last = kid;
2761     }
2762
2763     if (isreg && expr->op_type == OP_LIST &&
2764         cLISTOPx(expr)->op_first->op_sibling == cLISTOPx(expr)->op_last)
2765     {
2766         /* convert single element list to element */
2767         OP* oe = expr;
2768         expr = cLISTOPx(oe)->op_first->op_sibling;
2769         cLISTOPx(oe)->op_first->op_sibling = Nullop;
2770         cLISTOPx(oe)->op_last = Nullop;
2771         op_free(oe);
2772     }
2773
2774     if (o->op_type == OP_TRANS) {
2775         return pmtrans(o, expr, repl);
2776     }
2777
2778     reglist = isreg && expr->op_type == OP_LIST;
2779     if (reglist)
2780         op_null(expr);
2781
2782     PL_hints |= HINT_BLOCK_SCOPE;
2783     pm = (PMOP*)o;
2784
2785     if (expr->op_type == OP_CONST) {
2786         STRLEN plen;
2787         SV *pat = ((SVOP*)expr)->op_sv;
2788         const char *p = SvPV_const(pat, plen);
2789         if ((o->op_flags & OPf_SPECIAL) && (*p == ' ' && p[1] == '\0')) {
2790             U32 was_readonly = SvREADONLY(pat);
2791
2792             if (was_readonly) {
2793                 if (SvFAKE(pat)) {
2794                     sv_force_normal_flags(pat, 0);
2795                     assert(!SvREADONLY(pat));
2796                     was_readonly = 0;
2797                 } else {
2798                     SvREADONLY_off(pat);
2799                 }
2800             }   
2801
2802             sv_setpvn(pat, "\\s+", 3);
2803
2804             SvFLAGS(pat) |= was_readonly;
2805
2806             p = SvPV_const(pat, plen);
2807             pm->op_pmflags |= PMf_SKIPWHITE;
2808         }
2809         if (DO_UTF8(pat))
2810             pm->op_pmdynflags |= PMdf_UTF8;
2811         /* FIXME - can we make this function take const char * args?  */
2812         PM_SETRE(pm, CALLREGCOMP(aTHX_ (char*)p, (char*)p + plen, pm));
2813         if (strEQ("\\s+", PM_GETRE(pm)->precomp))
2814             pm->op_pmflags |= PMf_WHITE;
2815         op_free(expr);
2816     }
2817     else {
2818         if (pm->op_pmflags & PMf_KEEP || !(PL_hints & HINT_RE_EVAL))
2819             expr = newUNOP((!(PL_hints & HINT_RE_EVAL)
2820                             ? OP_REGCRESET
2821                             : OP_REGCMAYBE),0,expr);
2822
2823         NewOp(1101, rcop, 1, LOGOP);
2824         rcop->op_type = OP_REGCOMP;
2825         rcop->op_ppaddr = PL_ppaddr[OP_REGCOMP];
2826         rcop->op_first = scalar(expr);
2827         rcop->op_flags |= OPf_KIDS
2828                             | ((PL_hints & HINT_RE_EVAL) ? OPf_SPECIAL : 0)
2829                             | (reglist ? OPf_STACKED : 0);
2830         rcop->op_private = 1;
2831         rcop->op_other = o;
2832         if (reglist)
2833             rcop->op_targ = pad_alloc(rcop->op_type, SVs_PADTMP);
2834
2835         /* /$x/ may cause an eval, since $x might be qr/(?{..})/  */
2836         PL_cv_has_eval = 1;
2837
2838         /* establish postfix order */
2839         if (pm->op_pmflags & PMf_KEEP || !(PL_hints & HINT_RE_EVAL)) {
2840             LINKLIST(expr);
2841             rcop->op_next = expr;
2842             ((UNOP*)expr)->op_first->op_next = (OP*)rcop;
2843         }
2844         else {
2845             rcop->op_next = LINKLIST(expr);
2846             expr->op_next = (OP*)rcop;
2847         }
2848
2849         prepend_elem(o->op_type, scalar((OP*)rcop), o);
2850     }
2851
2852     if (repl) {
2853         OP *curop;
2854         if (pm->op_pmflags & PMf_EVAL) {
2855             curop = 0;
2856             if (CopLINE(PL_curcop) < (line_t)PL_multi_end)
2857                 CopLINE_set(PL_curcop, (line_t)PL_multi_end);
2858         }
2859         else if (repl->op_type == OP_CONST)
2860             curop = repl;
2861         else {
2862             OP *lastop = 0;
2863             for (curop = LINKLIST(repl); curop!=repl; curop = LINKLIST(curop)) {
2864                 if (PL_opargs[curop->op_type] & OA_DANGEROUS) {
2865                     if (curop->op_type == OP_GV) {
2866                         GV *gv = cGVOPx_gv(curop);
2867                         repl_has_vars = 1;
2868                         if (strchr("&`'123456789+-\016\022", *GvENAME(gv)))
2869                             break;
2870                     }
2871                     else if (curop->op_type == OP_RV2CV)
2872                         break;
2873                     else if (curop->op_type == OP_RV2SV ||
2874                              curop->op_type == OP_RV2AV ||
2875                              curop->op_type == OP_RV2HV ||
2876                              curop->op_type == OP_RV2GV) {
2877                         if (lastop && lastop->op_type != OP_GV) /*funny deref?*/
2878                             break;
2879                     }
2880                     else if (curop->op_type == OP_PADSV ||
2881                              curop->op_type == OP_PADAV ||
2882                              curop->op_type == OP_PADHV ||
2883                              curop->op_type == OP_PADANY) {
2884                         repl_has_vars = 1;
2885                     }
2886                     else if (curop->op_type == OP_PUSHRE)
2887                         ; /* Okay here, dangerous in newASSIGNOP */
2888                     else
2889                         break;
2890                 }
2891                 lastop = curop;
2892             }
2893         }
2894         if (curop == repl
2895             && !(repl_has_vars
2896                  && (!PM_GETRE(pm)
2897                      || PM_GETRE(pm)->reganch & ROPT_EVAL_SEEN))) {
2898             pm->op_pmflags |= PMf_CONST;        /* const for long enough */
2899             pm->op_pmpermflags |= PMf_CONST;    /* const for long enough */
2900             prepend_elem(o->op_type, scalar(repl), o);
2901         }
2902         else {
2903             if (curop == repl && !PM_GETRE(pm)) { /* Has variables. */
2904                 pm->op_pmflags |= PMf_MAYBE_CONST;
2905                 pm->op_pmpermflags |= PMf_MAYBE_CONST;
2906             }
2907             NewOp(1101, rcop, 1, LOGOP);
2908             rcop->op_type = OP_SUBSTCONT;
2909             rcop->op_ppaddr = PL_ppaddr[OP_SUBSTCONT];
2910             rcop->op_first = scalar(repl);
2911             rcop->op_flags |= OPf_KIDS;
2912             rcop->op_private = 1;
2913             rcop->op_other = o;
2914
2915             /* establish postfix order */
2916             rcop->op_next = LINKLIST(repl);
2917             repl->op_next = (OP*)rcop;
2918
2919             pm->op_pmreplroot = scalar((OP*)rcop);
2920             pm->op_pmreplstart = LINKLIST(rcop);
2921             rcop->op_next = 0;
2922         }
2923     }
2924
2925     return (OP*)pm;
2926 }
2927
2928 OP *
2929 Perl_newSVOP(pTHX_ I32 type, I32 flags, SV *sv)
2930 {
2931     dVAR;
2932     SVOP *svop;
2933     NewOp(1101, svop, 1, SVOP);
2934     svop->op_type = (OPCODE)type;
2935     svop->op_ppaddr = PL_ppaddr[type];
2936     svop->op_sv = sv;
2937     svop->op_next = (OP*)svop;
2938     svop->op_flags = (U8)flags;
2939     if (PL_opargs[type] & OA_RETSCALAR)
2940         scalar((OP*)svop);
2941     if (PL_opargs[type] & OA_TARGET)
2942         svop->op_targ = pad_alloc(type, SVs_PADTMP);
2943     return CHECKOP(type, svop);
2944 }
2945
2946 OP *
2947 Perl_newPADOP(pTHX_ I32 type, I32 flags, SV *sv)
2948 {
2949     dVAR;
2950     PADOP *padop;
2951     NewOp(1101, padop, 1, PADOP);
2952     padop->op_type = (OPCODE)type;
2953     padop->op_ppaddr = PL_ppaddr[type];
2954     padop->op_padix = pad_alloc(type, SVs_PADTMP);
2955     SvREFCNT_dec(PAD_SVl(padop->op_padix));
2956     PAD_SETSV(padop->op_padix, sv);
2957     if (sv)
2958         SvPADTMP_on(sv);
2959     padop->op_next = (OP*)padop;
2960     padop->op_flags = (U8)flags;
2961     if (PL_opargs[type] & OA_RETSCALAR)
2962         scalar((OP*)padop);
2963     if (PL_opargs[type] & OA_TARGET)
2964         padop->op_targ = pad_alloc(type, SVs_PADTMP);
2965     return CHECKOP(type, padop);
2966 }
2967
2968 OP *
2969 Perl_newGVOP(pTHX_ I32 type, I32 flags, GV *gv)
2970 {
2971     dVAR;
2972 #ifdef USE_ITHREADS
2973     if (gv)
2974         GvIN_PAD_on(gv);
2975     return newPADOP(type, flags, SvREFCNT_inc(gv));
2976 #else
2977     return newSVOP(type, flags, SvREFCNT_inc(gv));
2978 #endif
2979 }
2980
2981 OP *
2982 Perl_newPVOP(pTHX_ I32 type, I32 flags, char *pv)
2983 {
2984     dVAR;
2985     PVOP *pvop;
2986     NewOp(1101, pvop, 1, PVOP);
2987     pvop->op_type = (OPCODE)type;
2988     pvop->op_ppaddr = PL_ppaddr[type];
2989     pvop->op_pv = pv;
2990     pvop->op_next = (OP*)pvop;
2991     pvop->op_flags = (U8)flags;
2992     if (PL_opargs[type] & OA_RETSCALAR)
2993         scalar((OP*)pvop);
2994     if (PL_opargs[type] & OA_TARGET)
2995         pvop->op_targ = pad_alloc(type, SVs_PADTMP);
2996     return CHECKOP(type, pvop);
2997 }
2998
2999 void
3000 Perl_package(pTHX_ OP *o)
3001 {
3002     const char *name;
3003     STRLEN len;
3004
3005     save_hptr(&PL_curstash);
3006     save_item(PL_curstname);
3007
3008     name = SvPV_const(cSVOPo->op_sv, len);
3009     PL_curstash = gv_stashpvn(name, len, TRUE);
3010     sv_setpvn(PL_curstname, name, len);
3011     op_free(o);
3012
3013     PL_hints |= HINT_BLOCK_SCOPE;
3014     PL_copline = NOLINE;
3015     PL_expect = XSTATE;
3016 }
3017
3018 void
3019 Perl_utilize(pTHX_ int aver, I32 floor, OP *version, OP *idop, OP *arg)
3020 {
3021     OP *pack;
3022     OP *imop;
3023     OP *veop;
3024
3025     if (idop->op_type != OP_CONST)
3026         Perl_croak(aTHX_ "Module name must be constant");
3027
3028     veop = Nullop;
3029
3030     if (version != Nullop) {
3031         SV *vesv = ((SVOP*)version)->op_sv;
3032
3033         if (arg == Nullop && !SvNIOKp(vesv)) {
3034             arg = version;
3035         }
3036         else {
3037             OP *pack;
3038             SV *meth;
3039
3040             if (version->op_type != OP_CONST || !SvNIOKp(vesv))
3041                 Perl_croak(aTHX_ "Version number must be constant number");
3042
3043             /* Make copy of idop so we don't free it twice */
3044             pack = newSVOP(OP_CONST, 0, newSVsv(((SVOP*)idop)->op_sv));
3045
3046             /* Fake up a method call to VERSION */
3047             meth = newSVpvn_share("VERSION", 7, 0);
3048             veop = convert(OP_ENTERSUB, OPf_STACKED|OPf_SPECIAL,
3049                             append_elem(OP_LIST,
3050                                         prepend_elem(OP_LIST, pack, list(version)),
3051                                         newSVOP(OP_METHOD_NAMED, 0, meth)));
3052         }
3053     }
3054
3055     /* Fake up an import/unimport */
3056     if (arg && arg->op_type == OP_STUB)
3057         imop = arg;             /* no import on explicit () */
3058     else if (SvNIOKp(((SVOP*)idop)->op_sv)) {
3059         imop = Nullop;          /* use 5.0; */
3060     }
3061     else {
3062         SV *meth;
3063
3064         /* Make copy of idop so we don't free it twice */
3065         pack = newSVOP(OP_CONST, 0, newSVsv(((SVOP*)idop)->op_sv));
3066
3067         /* Fake up a method call to import/unimport */
3068         meth = aver
3069             ? newSVpvn_share("import",6, 0) : newSVpvn_share("unimport", 8, 0);
3070         imop = convert(OP_ENTERSUB, OPf_STACKED|OPf_SPECIAL,
3071                        append_elem(OP_LIST,
3072                                    prepend_elem(OP_LIST, pack, list(arg)),
3073                                    newSVOP(OP_METHOD_NAMED, 0, meth)));
3074     }
3075
3076     /* Fake up the BEGIN {}, which does its thing immediately. */
3077     newATTRSUB(floor,
3078         newSVOP(OP_CONST, 0, newSVpvn_share("BEGIN", 5, 0)),
3079         Nullop,
3080         Nullop,
3081         append_elem(OP_LINESEQ,
3082             append_elem(OP_LINESEQ,
3083                 newSTATEOP(0, Nullch, newUNOP(OP_REQUIRE, 0, idop)),
3084                 newSTATEOP(0, Nullch, veop)),
3085             newSTATEOP(0, Nullch, imop) ));
3086
3087     /* The "did you use incorrect case?" warning used to be here.
3088      * The problem is that on case-insensitive filesystems one
3089      * might get false positives for "use" (and "require"):
3090      * "use Strict" or "require CARP" will work.  This causes
3091      * portability problems for the script: in case-strict
3092      * filesystems the script will stop working.
3093      *
3094      * The "incorrect case" warning checked whether "use Foo"
3095      * imported "Foo" to your namespace, but that is wrong, too:
3096      * there is no requirement nor promise in the language that
3097      * a Foo.pm should or would contain anything in package "Foo".
3098      *
3099      * There is very little Configure-wise that can be done, either:
3100      * the case-sensitivity of the build filesystem of Perl does not
3101      * help in guessing the case-sensitivity of the runtime environment.
3102      */
3103
3104     PL_hints |= HINT_BLOCK_SCOPE;
3105     PL_copline = NOLINE;
3106     PL_expect = XSTATE;
3107     PL_cop_seqmax++; /* Purely for B::*'s benefit */
3108 }
3109
3110 /*
3111 =head1 Embedding Functions
3112
3113 =for apidoc load_module
3114
3115 Loads the module whose name is pointed to by the string part of name.
3116 Note that the actual module name, not its filename, should be given.
3117 Eg, "Foo::Bar" instead of "Foo/Bar.pm".  flags can be any of
3118 PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS
3119 (or 0 for no flags). ver, if specified, provides version semantics
3120 similar to C<use Foo::Bar VERSION>.  The optional trailing SV*
3121 arguments can be used to specify arguments to the module's import()
3122 method, similar to C<use Foo::Bar VERSION LIST>.
3123
3124 =cut */
3125
3126 void
3127 Perl_load_module(pTHX_ U32 flags, SV *name, SV *ver, ...)
3128 {
3129     va_list args;
3130     va_start(args, ver);
3131     vload_module(flags, name, ver, &args);
3132     va_end(args);
3133 }
3134
3135 #ifdef PERL_IMPLICIT_CONTEXT
3136 void
3137 Perl_load_module_nocontext(U32 flags, SV *name, SV *ver, ...)
3138 {
3139     dTHX;
3140     va_list args;
3141     va_start(args, ver);
3142     vload_module(flags, name, ver, &args);
3143     va_end(args);
3144 }
3145 #endif
3146
3147 void
3148 Perl_vload_module(pTHX_ U32 flags, SV *name, SV *ver, va_list *args)
3149 {
3150     OP *modname, *veop, *imop;
3151
3152     modname = newSVOP(OP_CONST, 0, name);
3153     modname->op_private |= OPpCONST_BARE;
3154     if (ver) {
3155         veop = newSVOP(OP_CONST, 0, ver);
3156     }
3157     else
3158         veop = Nullop;
3159     if (flags & PERL_LOADMOD_NOIMPORT) {
3160         imop = sawparens(newNULLLIST());
3161     }
3162     else if (flags & PERL_LOADMOD_IMPORT_OPS) {
3163         imop = va_arg(*args, OP*);
3164     }
3165     else {
3166         SV *sv;
3167         imop = Nullop;
3168         sv = va_arg(*args, SV*);
3169         while (sv) {
3170             imop = append_elem(OP_LIST, imop, newSVOP(OP_CONST, 0, sv));
3171             sv = va_arg(*args, SV*);
3172         }
3173     }
3174     {
3175         const line_t ocopline = PL_copline;
3176         COP * const ocurcop = PL_curcop;
3177         const int oexpect = PL_expect;
3178
3179         utilize(!(flags & PERL_LOADMOD_DENY), start_subparse(FALSE, 0),
3180                 veop, modname, imop);
3181         PL_expect = oexpect;
3182         PL_copline = ocopline;
3183         PL_curcop = ocurcop;
3184     }
3185 }
3186
3187 OP *
3188 Perl_dofile(pTHX_ OP *term)
3189 {
3190     OP *doop;
3191     GV *gv;
3192
3193     gv = gv_fetchpv("do", FALSE, SVt_PVCV);
3194     if (!(gv && GvCVu(gv) && GvIMPORTED_CV(gv)))
3195         gv = gv_fetchpv("CORE::GLOBAL::do", FALSE, SVt_PVCV);
3196
3197     if (gv && GvCVu(gv) && GvIMPORTED_CV(gv)) {
3198         doop = ck_subr(newUNOP(OP_ENTERSUB, OPf_STACKED,
3199                                append_elem(OP_LIST, term,
3200                                            scalar(newUNOP(OP_RV2CV, 0,
3201                                                           newGVOP(OP_GV, 0,
3202                                                                   gv))))));
3203     }
3204     else {
3205         doop = newUNOP(OP_DOFILE, 0, scalar(term));
3206     }
3207     return doop;
3208 }
3209
3210 OP *
3211 Perl_newSLICEOP(pTHX_ I32 flags, OP *subscript, OP *listval)
3212 {
3213     return newBINOP(OP_LSLICE, flags,
3214             list(force_list(subscript)),
3215             list(force_list(listval)) );
3216 }
3217
3218 STATIC I32
3219 S_is_list_assignment(pTHX_ register const OP *o)
3220 {
3221     if (!o)
3222         return TRUE;
3223
3224     if (o->op_type == OP_NULL && o->op_flags & OPf_KIDS)
3225         o = cUNOPo->op_first;
3226
3227     if (o->op_type == OP_COND_EXPR) {
3228         const I32 t = is_list_assignment(cLOGOPo->op_first->op_sibling);
3229         const I32 f = is_list_assignment(cLOGOPo->op_first->op_sibling->op_sibling);
3230
3231         if (t && f)
3232             return TRUE;
3233         if (t || f)
3234             yyerror("Assignment to both a list and a scalar");
3235         return FALSE;
3236     }
3237
3238     if (o->op_type == OP_LIST &&
3239         (o->op_flags & OPf_WANT) == OPf_WANT_SCALAR &&
3240         o->op_private & OPpLVAL_INTRO)
3241         return FALSE;
3242
3243     if (o->op_type == OP_LIST || o->op_flags & OPf_PARENS ||
3244         o->op_type == OP_RV2AV || o->op_type == OP_RV2HV ||
3245         o->op_type == OP_ASLICE || o->op_type == OP_HSLICE)
3246         return TRUE;
3247
3248     if (o->op_type == OP_PADAV || o->op_type == OP_PADHV)
3249         return TRUE;
3250
3251     if (o->op_type == OP_RV2SV)
3252         return FALSE;
3253
3254     return FALSE;
3255 }
3256
3257 OP *
3258 Perl_newASSIGNOP(pTHX_ I32 flags, OP *left, I32 optype, OP *right)
3259 {
3260     OP *o;
3261
3262     if (optype) {
3263         if (optype == OP_ANDASSIGN || optype == OP_ORASSIGN || optype == OP_DORASSIGN) {
3264             return newLOGOP(optype, 0,
3265                 mod(scalar(left), optype),
3266                 newUNOP(OP_SASSIGN, 0, scalar(right)));
3267         }
3268         else {
3269             return newBINOP(optype, OPf_STACKED,
3270                 mod(scalar(left), optype), scalar(right));
3271         }
3272     }
3273
3274     if (is_list_assignment(left)) {
3275         OP *curop;
3276
3277         PL_modcount = 0;
3278         /* Grandfathering $[ assignment here.  Bletch.*/
3279         /* Only simple assignments like C<< ($[) = 1 >> are allowed */
3280         PL_eval_start = (left->op_type == OP_CONST) ? right : 0;
3281         left = mod(left, OP_AASSIGN);
3282         if (PL_eval_start)
3283             PL_eval_start = 0;
3284         else if (left->op_type == OP_CONST) {
3285             /* Result of assignment is always 1 (or we'd be dead already) */
3286             return newSVOP(OP_CONST, 0, newSViv(1));
3287         }
3288         /* optimise C<my @x = ()> to C<my @x>, and likewise for hashes */
3289         if ((left->op_type == OP_PADAV || left->op_type == OP_PADHV)
3290                 && right->op_type == OP_STUB
3291                 && (left->op_private & OPpLVAL_INTRO))
3292         {
3293             op_free(right);
3294             left->op_flags &= ~(OPf_REF|OPf_SPECIAL);
3295             return left;
3296         }
3297         curop = list(force_list(left));
3298         o = newBINOP(OP_AASSIGN, flags, list(force_list(right)), curop);
3299         o->op_private = (U8)(0 | (flags >> 8));
3300
3301         /* PL_generation sorcery:
3302          * an assignment like ($a,$b) = ($c,$d) is easier than
3303          * ($a,$b) = ($c,$a), since there is no need for temporary vars.
3304          * To detect whether there are common vars, the global var
3305          * PL_generation is incremented for each assign op we compile.
3306          * Then, while compiling the assign op, we run through all the
3307          * variables on both sides of the assignment, setting a spare slot
3308          * in each of them to PL_generation. If any of them already have
3309          * that value, we know we've got commonality.  We could use a
3310          * single bit marker, but then we'd have to make 2 passes, first
3311          * to clear the flag, then to test and set it.  To find somewhere
3312          * to store these values, evil chicanery is done with SvCUR().
3313          */
3314
3315         if (!(left->op_private & OPpLVAL_INTRO)) {
3316             OP *lastop = o;
3317             PL_generation++;
3318             for (curop = LINKLIST(o); curop != o; curop = LINKLIST(curop)) {
3319                 if (PL_opargs[curop->op_type] & OA_DANGEROUS) {
3320                     if (curop->op_type == OP_GV) {
3321                         GV *gv = cGVOPx_gv(curop);
3322                         if (gv == PL_defgv || (int)SvCUR(gv) == PL_generation)
3323                             break;
3324                         SvCUR_set(gv, PL_generation);
3325                     }
3326                     else if (curop->op_type == OP_PADSV ||
3327                              curop->op_type == OP_PADAV ||
3328                              curop->op_type == OP_PADHV ||
3329                              curop->op_type == OP_PADANY)
3330                     {
3331                         if (PAD_COMPNAME_GEN(curop->op_targ)
3332                                                     == (STRLEN)PL_generation)
3333                             break;
3334                         PAD_COMPNAME_GEN_set(curop->op_targ, PL_generation);
3335
3336                     }
3337                     else if (curop->op_type == OP_RV2CV)
3338                         break;
3339                     else if (curop->op_type == OP_RV2SV ||
3340                              curop->op_type == OP_RV2AV ||
3341                              curop->op_type == OP_RV2HV ||
3342                              curop->op_type == OP_RV2GV) {
3343                         if (lastop->op_type != OP_GV)   /* funny deref? */
3344                             break;
3345                     }
3346                     else if (curop->op_type == OP_PUSHRE) {
3347                         if (((PMOP*)curop)->op_pmreplroot) {
3348 #ifdef USE_ITHREADS
3349                             GV *gv = (GV*)PAD_SVl(INT2PTR(PADOFFSET,
3350                                         ((PMOP*)curop)->op_pmreplroot));
3351 #else
3352                             GV *gv = (GV*)((PMOP*)curop)->op_pmreplroot;
3353 #endif
3354                             if (gv == PL_defgv || (int)SvCUR(gv) == PL_generation)
3355                                 break;
3356                             SvCUR_set(gv, PL_generation);
3357                         }
3358                     }
3359                     else
3360                         break;
3361                 }
3362                 lastop = curop;
3363             }
3364             if (curop != o)
3365                 o->op_private |= OPpASSIGN_COMMON;
3366         }
3367         if (right && right->op_type == OP_SPLIT) {
3368             OP* tmpop;
3369             if ((tmpop = ((LISTOP*)right)->op_first) &&
3370                 tmpop->op_type == OP_PUSHRE)
3371             {
3372                 PMOP *pm = (PMOP*)tmpop;
3373                 if (left->op_type == OP_RV2AV &&
3374                     !(left->op_private & OPpLVAL_INTRO) &&
3375                     !(o->op_private & OPpASSIGN_COMMON) )
3376                 {
3377                     tmpop = ((UNOP*)left)->op_first;
3378                     if (tmpop->op_type == OP_GV && !pm->op_pmreplroot) {
3379 #ifdef USE_ITHREADS
3380                         pm->op_pmreplroot = INT2PTR(OP*, cPADOPx(tmpop)->op_padix);
3381                         cPADOPx(tmpop)->op_padix = 0;   /* steal it */
3382 #else
3383                         pm->op_pmreplroot = (OP*)cSVOPx(tmpop)->op_sv;
3384                         cSVOPx(tmpop)->op_sv = Nullsv;  /* steal it */
3385 #endif
3386                         pm->op_pmflags |= PMf_ONCE;
3387                         tmpop = cUNOPo->op_first;       /* to list (nulled) */
3388                         tmpop = ((UNOP*)tmpop)->op_first; /* to pushmark */
3389                         tmpop->op_sibling = Nullop;     /* don't free split */
3390                         right->op_next = tmpop->op_next;  /* fix starting loc */
3391                         op_free(o);                     /* blow off assign */
3392                         right->op_flags &= ~OPf_WANT;
3393                                 /* "I don't know and I don't care." */
3394                         return right;
3395                     }
3396                 }
3397                 else {
3398                    if (PL_modcount < RETURN_UNLIMITED_NUMBER &&
3399                       ((LISTOP*)right)->op_last->op_type == OP_CONST)
3400                     {
3401                         SV *sv = ((SVOP*)((LISTOP*)right)->op_last)->op_sv;
3402                         if (SvIVX(sv) == 0)
3403                             sv_setiv(sv, PL_modcount+1);
3404                     }
3405                 }
3406             }
3407         }
3408         return o;
3409     }
3410     if (!right)
3411         right = newOP(OP_UNDEF, 0);
3412     if (right->op_type == OP_READLINE) {
3413         right->op_flags |= OPf_STACKED;
3414         return newBINOP(OP_NULL, flags, mod(scalar(left), OP_SASSIGN), scalar(right));
3415     }
3416     else {
3417         PL_eval_start = right;  /* Grandfathering $[ assignment here.  Bletch.*/
3418         o = newBINOP(OP_SASSIGN, flags,
3419             scalar(right), mod(scalar(left), OP_SASSIGN) );
3420         if (PL_eval_start)
3421             PL_eval_start = 0;
3422         else {
3423             o = newSVOP(OP_CONST, 0, newSViv(PL_compiling.cop_arybase));
3424         }
3425     }
3426     return o;
3427 }
3428
3429 OP *
3430 Perl_newSTATEOP(pTHX_ I32 flags, char *label, OP *o)
3431 {
3432     dVAR;
3433     const U32 seq = intro_my();
3434     register COP *cop;
3435
3436     NewOp(1101, cop, 1, COP);
3437     if (PERLDB_LINE && CopLINE(PL_curcop) && PL_curstash != PL_debstash) {
3438         cop->op_type = OP_DBSTATE;
3439         cop->op_ppaddr = PL_ppaddr[ OP_DBSTATE ];
3440     }
3441     else {
3442         cop->op_type = OP_NEXTSTATE;
3443         cop->op_ppaddr = PL_ppaddr[ OP_NEXTSTATE ];
3444     }
3445     cop->op_flags = (U8)flags;
3446     cop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
3447 #ifdef NATIVE_HINTS
3448     cop->op_private |= NATIVE_HINTS;
3449 #endif
3450     PL_compiling.op_private = cop->op_private;
3451     cop->op_next = (OP*)cop;
3452
3453     if (label) {
3454         cop->cop_label = label;
3455         PL_hints |= HINT_BLOCK_SCOPE;
3456     }
3457     cop->cop_seq = seq;
3458     cop->cop_arybase = PL_curcop->cop_arybase;
3459     if (specialWARN(PL_curcop->cop_warnings))
3460         cop->cop_warnings = PL_curcop->cop_warnings ;
3461     else
3462         cop->cop_warnings = newSVsv(PL_curcop->cop_warnings) ;
3463     if (specialCopIO(PL_curcop->cop_io))
3464         cop->cop_io = PL_curcop->cop_io;
3465     else
3466         cop->cop_io = newSVsv(PL_curcop->cop_io) ;
3467
3468
3469     if (PL_copline == NOLINE)
3470         CopLINE_set(cop, CopLINE(PL_curcop));
3471     else {
3472         CopLINE_set(cop, PL_copline);
3473         PL_copline = NOLINE;
3474     }
3475 #ifdef USE_ITHREADS
3476     CopFILE_set(cop, CopFILE(PL_curcop));       /* XXX share in a pvtable? */
3477 #else
3478     CopFILEGV_set(cop, CopFILEGV(PL_curcop));
3479 #endif
3480     CopSTASH_set(cop, PL_curstash);
3481
3482     if (PERLDB_LINE && PL_curstash != PL_debstash) {
3483         SV **svp = av_fetch(CopFILEAV(PL_curcop), (I32)CopLINE(cop), FALSE);
3484         if (svp && *svp != &PL_sv_undef ) {
3485            (void)SvIOK_on(*svp);
3486             SvIV_set(*svp, PTR2IV(cop));
3487         }
3488     }
3489
3490     return prepend_elem(OP_LINESEQ, (OP*)cop, o);
3491 }
3492
3493
3494 OP *
3495 Perl_newLOGOP(pTHX_ I32 type, I32 flags, OP *first, OP *other)
3496 {
3497     dVAR;
3498     return new_logop(type, flags, &first, &other);
3499 }
3500
3501 STATIC OP *
3502 S_new_logop(pTHX_ I32 type, I32 flags, OP** firstp, OP** otherp)
3503 {
3504     dVAR;
3505     LOGOP *logop;
3506     OP *o;
3507     OP *first = *firstp;
3508     OP *other = *otherp;
3509
3510     if (type == OP_XOR)         /* Not short circuit, but here by precedence. */
3511         return newBINOP(type, flags, scalar(first), scalar(other));
3512
3513     scalarboolean(first);
3514     /* optimize "!a && b" to "a || b", and "!a || b" to "a && b" */
3515     if (first->op_type == OP_NOT && (first->op_flags & OPf_SPECIAL)) {
3516         if (type == OP_AND || type == OP_OR) {
3517             if (type == OP_AND)
3518                 type = OP_OR;
3519             else
3520                 type = OP_AND;
3521             o = first;
3522             first = *firstp = cUNOPo->op_first;
3523             if (o->op_next)
3524                 first->op_next = o->op_next;
3525             cUNOPo->op_first = Nullop;
3526             op_free(o);
3527         }
3528     }
3529     if (first->op_type == OP_CONST) {
3530         if (first->op_private & OPpCONST_STRICT)
3531             no_bareword_allowed(first);
3532         else if ((first->op_private & OPpCONST_BARE) && ckWARN(WARN_BAREWORD))
3533                 Perl_warner(aTHX_ packWARN(WARN_BAREWORD), "Bareword found in conditional");
3534         if ((type == OP_AND &&  SvTRUE(((SVOP*)first)->op_sv)) ||
3535             (type == OP_OR  && !SvTRUE(((SVOP*)first)->op_sv)) ||
3536             (type == OP_DOR && !SvOK(((SVOP*)first)->op_sv))) {
3537             op_free(first);
3538             *firstp = Nullop;
3539             if (other->op_type == OP_CONST)
3540                 other->op_private |= OPpCONST_SHORTCIRCUIT;
3541             return other;
3542         }
3543         else {
3544             /* check for C<my $x if 0>, or C<my($x,$y) if 0> */
3545             const OP *o2 = other;
3546             if ( ! (o2->op_type == OP_LIST
3547                     && (( o2 = cUNOPx(o2)->op_first))
3548                     && o2->op_type == OP_PUSHMARK
3549                     && (( o2 = o2->op_sibling)) )
3550             )
3551                 o2 = other;
3552             if ((o2->op_type == OP_PADSV || o2->op_type == OP_PADAV
3553                         || o2->op_type == OP_PADHV)
3554                 && o2->op_private & OPpLVAL_INTRO
3555                 && ckWARN(WARN_DEPRECATED))
3556             {
3557                 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
3558                             "Deprecated use of my() in false conditional");
3559             }
3560
3561             op_free(other);
3562             *otherp = Nullop;
3563             if (first->op_type == OP_CONST)
3564                 first->op_private |= OPpCONST_SHORTCIRCUIT;
3565             return first;
3566         }
3567     }
3568     else if ((first->op_flags & OPf_KIDS) && type != OP_DOR
3569         && ckWARN(WARN_MISC)) /* [#24076] Don't warn for <FH> err FOO. */
3570     {
3571         const OP *k1 = ((UNOP*)first)->op_first;
3572         const OP *k2 = k1->op_sibling;
3573         OPCODE warnop = 0;
3574         switch (first->op_type)
3575         {
3576         case OP_NULL:
3577             if (k2 && k2->op_type == OP_READLINE
3578                   && (k2->op_flags & OPf_STACKED)
3579                   && ((k1->op_flags & OPf_WANT) == OPf_WANT_SCALAR))
3580             {
3581                 warnop = k2->op_type;
3582             }
3583             break;
3584
3585         case OP_SASSIGN:
3586             if (k1->op_type == OP_READDIR
3587                   || k1->op_type == OP_GLOB
3588                   || (k1->op_type == OP_NULL && k1->op_targ == OP_GLOB)
3589                   || k1->op_type == OP_EACH)
3590             {
3591                 warnop = ((k1->op_type == OP_NULL)
3592                           ? (OPCODE)k1->op_targ : k1->op_type);
3593             }
3594             break;
3595         }
3596         if (warnop) {
3597             const line_t oldline = CopLINE(PL_curcop);
3598             CopLINE_set(PL_curcop, PL_copline);
3599             Perl_warner(aTHX_ packWARN(WARN_MISC),
3600                  "Value of %s%s can be \"0\"; test with defined()",
3601                  PL_op_desc[warnop],
3602                  ((warnop == OP_READLINE || warnop == OP_GLOB)
3603                   ? " construct" : "() operator"));
3604             CopLINE_set(PL_curcop, oldline);
3605         }
3606     }
3607
3608     if (!other)
3609         return first;
3610
3611     if (type == OP_ANDASSIGN || type == OP_ORASSIGN || type == OP_DORASSIGN)
3612         other->op_private |= OPpASSIGN_BACKWARDS;  /* other is an OP_SASSIGN */
3613
3614     NewOp(1101, logop, 1, LOGOP);
3615
3616     logop->op_type = (OPCODE)type;
3617     logop->op_ppaddr = PL_ppaddr[type];
3618     logop->op_first = first;
3619     logop->op_flags = flags | OPf_KIDS;
3620     logop->op_other = LINKLIST(other);
3621     logop->op_private = (U8)(1 | (flags >> 8));
3622
3623     /* establish postfix order */
3624     logop->op_next = LINKLIST(first);
3625     first->op_next = (OP*)logop;
3626     first->op_sibling = other;
3627
3628     CHECKOP(type,logop);
3629
3630     o = newUNOP(OP_NULL, 0, (OP*)logop);
3631     other->op_next = o;
3632
3633     return o;
3634 }
3635
3636 OP *
3637 Perl_newCONDOP(pTHX_ I32 flags, OP *first, OP *trueop, OP *falseop)
3638 {
3639     dVAR;
3640     LOGOP *logop;
3641     OP *start;
3642     OP *o;
3643
3644     if (!falseop)
3645         return newLOGOP(OP_AND, 0, first, trueop);
3646     if (!trueop)
3647         return newLOGOP(OP_OR, 0, first, falseop);
3648
3649     scalarboolean(first);
3650     if (first->op_type == OP_CONST) {
3651         if (first->op_private & OPpCONST_BARE &&
3652            first->op_private & OPpCONST_STRICT) {
3653            no_bareword_allowed(first);
3654        }
3655         if (SvTRUE(((SVOP*)first)->op_sv)) {
3656             op_free(first);
3657             op_free(falseop);
3658             return trueop;
3659         }
3660         else {
3661             op_free(first);
3662             op_free(trueop);
3663             return falseop;
3664         }
3665     }
3666     NewOp(1101, logop, 1, LOGOP);
3667     logop->op_type = OP_COND_EXPR;
3668     logop->op_ppaddr = PL_ppaddr[OP_COND_EXPR];
3669     logop->op_first = first;
3670     logop->op_flags = flags | OPf_KIDS;
3671     logop->op_private = (U8)(1 | (flags >> 8));
3672     logop->op_other = LINKLIST(trueop);
3673     logop->op_next = LINKLIST(falseop);
3674
3675     CHECKOP(OP_COND_EXPR, /* that's logop->op_type */
3676             logop);
3677
3678     /* establish postfix order */
3679     start = LINKLIST(first);
3680     first->op_next = (OP*)logop;
3681
3682     first->op_sibling = trueop;
3683     trueop->op_sibling = falseop;
3684     o = newUNOP(OP_NULL, 0, (OP*)logop);
3685
3686     trueop->op_next = falseop->op_next = o;
3687
3688     o->op_next = start;
3689     return o;
3690 }
3691
3692 OP *
3693 Perl_newRANGE(pTHX_ I32 flags, OP *left, OP *right)
3694 {
3695     dVAR;
3696     LOGOP *range;
3697     OP *flip;
3698     OP *flop;
3699     OP *leftstart;
3700     OP *o;
3701
3702     NewOp(1101, range, 1, LOGOP);
3703
3704     range->op_type = OP_RANGE;
3705     range->op_ppaddr = PL_ppaddr[OP_RANGE];
3706     range->op_first = left;
3707     range->op_flags = OPf_KIDS;
3708     leftstart = LINKLIST(left);
3709     range->op_other = LINKLIST(right);
3710     range->op_private = (U8)(1 | (flags >> 8));
3711
3712     left->op_sibling = right;
3713
3714     range->op_next = (OP*)range;
3715     flip = newUNOP(OP_FLIP, flags, (OP*)range);
3716     flop = newUNOP(OP_FLOP, 0, flip);
3717     o = newUNOP(OP_NULL, 0, flop);
3718     linklist(flop);
3719     range->op_next = leftstart;
3720
3721     left->op_next = flip;
3722     right->op_next = flop;
3723
3724     range->op_targ = pad_alloc(OP_RANGE, SVs_PADMY);
3725     sv_upgrade(PAD_SV(range->op_targ), SVt_PVNV);
3726     flip->op_targ = pad_alloc(OP_RANGE, SVs_PADMY);
3727     sv_upgrade(PAD_SV(flip->op_targ), SVt_PVNV);
3728
3729     flip->op_private =  left->op_type == OP_CONST ? OPpFLIP_LINENUM : 0;
3730     flop->op_private = right->op_type == OP_CONST ? OPpFLIP_LINENUM : 0;
3731
3732     flip->op_next = o;
3733     if (!flip->op_private || !flop->op_private)
3734         linklist(o);            /* blow off optimizer unless constant */
3735
3736     return o;
3737 }
3738
3739 OP *
3740 Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP *expr, OP *block)
3741 {
3742     OP* listop;
3743     OP* o;
3744     const bool once = block && block->op_flags & OPf_SPECIAL &&
3745       (block->op_type == OP_ENTERSUB || block->op_type == OP_NULL);
3746     (void)debuggable;
3747
3748     if (expr) {
3749         if (once && expr->op_type == OP_CONST && !SvTRUE(((SVOP*)expr)->op_sv))
3750             return block;       /* do {} while 0 does once */
3751         if (expr->op_type == OP_READLINE || expr->op_type == OP_GLOB
3752             || (expr->op_type == OP_NULL && expr->op_targ == OP_GLOB)) {
3753             expr = newUNOP(OP_DEFINED, 0,
3754                 newASSIGNOP(0, newDEFSVOP(), 0, expr) );
3755         } else if (expr->op_flags & OPf_KIDS) {
3756             const OP *k1 = ((UNOP*)expr)->op_first;
3757             const OP *k2 = (k1) ? k1->op_sibling : NULL;
3758             switch (expr->op_type) {
3759               case OP_NULL:
3760                 if (k2 && k2->op_type == OP_READLINE
3761                       && (k2->op_flags & OPf_STACKED)
3762                       && ((k1->op_flags & OPf_WANT) == OPf_WANT_SCALAR))
3763                     expr = newUNOP(OP_DEFINED, 0, expr);
3764                 break;
3765
3766               case OP_SASSIGN:
3767                 if (k1->op_type == OP_READDIR
3768                       || k1->op_type == OP_GLOB
3769                       || (k1->op_type == OP_NULL && k1->op_targ == OP_GLOB)
3770                       || k1->op_type == OP_EACH)
3771                     expr = newUNOP(OP_DEFINED, 0, expr);
3772                 break;
3773             }
3774         }
3775     }
3776
3777     /* if block is null, the next append_elem() would put UNSTACK, a scalar
3778      * op, in listop. This is wrong. [perl #27024] */
3779     if (!block)
3780         block = newOP(OP_NULL, 0);
3781     listop = append_elem(OP_LINESEQ, block, newOP(OP_UNSTACK, 0));
3782     o = new_logop(OP_AND, 0, &expr, &listop);
3783
3784     if (listop)
3785         ((LISTOP*)listop)->op_last->op_next = LINKLIST(o);
3786
3787     if (once && o != listop)
3788         o->op_next = ((LOGOP*)cUNOPo->op_first)->op_other;
3789
3790     if (o == listop)
3791         o = newUNOP(OP_NULL, 0, o);     /* or do {} while 1 loses outer block */
3792
3793     o->op_flags |= flags;
3794     o = scope(o);
3795     o->op_flags |= OPf_SPECIAL; /* suppress POPBLOCK curpm restoration*/
3796     return o;
3797 }
3798
3799 OP *
3800 Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP *loop, I32
3801 whileline, OP *expr, OP *block, OP *cont, I32 has_my)
3802 {
3803     dVAR;
3804     OP *redo;
3805     OP *next = 0;
3806     OP *listop;
3807     OP *o;
3808     U8 loopflags = 0;
3809     (void)debuggable;
3810
3811     if (expr && (expr->op_type == OP_READLINE || expr->op_type == OP_GLOB
3812                  || (expr->op_type == OP_NULL && expr->op_targ == OP_GLOB))) {
3813         expr = newUNOP(OP_DEFINED, 0,
3814             newASSIGNOP(0, newDEFSVOP(), 0, expr) );
3815     } else if (expr && (expr->op_flags & OPf_KIDS)) {
3816         const OP *k1 = ((UNOP*)expr)->op_first;
3817         const OP *k2 = (k1) ? k1->op_sibling : NULL;
3818         switch (expr->op_type) {
3819           case OP_NULL:
3820             if (k2 && k2->op_type == OP_READLINE
3821                   && (k2->op_flags & OPf_STACKED)
3822                   && ((k1->op_flags & OPf_WANT) == OPf_WANT_SCALAR))
3823                 expr = newUNOP(OP_DEFINED, 0, expr);
3824             break;
3825
3826           case OP_SASSIGN:
3827             if (k1->op_type == OP_READDIR
3828                   || k1->op_type == OP_GLOB
3829                   || (k1->op_type == OP_NULL && k1->op_targ == OP_GLOB)
3830                   || k1->op_type == OP_EACH)
3831                 expr = newUNOP(OP_DEFINED, 0, expr);
3832             break;
3833         }
3834     }
3835
3836     if (!block)
3837         block = newOP(OP_NULL, 0);
3838     else if (cont || has_my) {
3839         block = scope(block);
3840     }
3841
3842     if (cont) {
3843         next = LINKLIST(cont);
3844     }
3845     if (expr) {
3846         OP *unstack = newOP(OP_UNSTACK, 0);
3847         if (!next)
3848             next = unstack;
3849         cont = append_elem(OP_LINESEQ, cont, unstack);
3850     }
3851
3852     listop = append_list(OP_LINESEQ, (LISTOP*)block, (LISTOP*)cont);
3853     redo = LINKLIST(listop);
3854
3855     if (expr) {
3856         PL_copline = (line_t)whileline;
3857         scalar(listop);
3858         o = new_logop(OP_AND, 0, &expr, &listop);
3859         if (o == expr && o->op_type == OP_CONST && !SvTRUE(cSVOPo->op_sv)) {
3860             op_free(expr);              /* oops, it's a while (0) */
3861             op_free((OP*)loop);
3862             return Nullop;              /* listop already freed by new_logop */
3863         }
3864         if (listop)
3865             ((LISTOP*)listop)->op_last->op_next =
3866                 (o == listop ? redo : LINKLIST(o));
3867     }
3868     else
3869         o = listop;
3870
3871     if (!loop) {
3872         NewOp(1101,loop,1,LOOP);
3873         loop->op_type = OP_ENTERLOOP;
3874         loop->op_ppaddr = PL_ppaddr[OP_ENTERLOOP];
3875         loop->op_private = 0;
3876         loop->op_next = (OP*)loop;
3877     }
3878
3879     o = newBINOP(OP_LEAVELOOP, 0, (OP*)loop, o);
3880
3881     loop->op_redoop = redo;
3882     loop->op_lastop = o;
3883     o->op_private |= loopflags;
3884
3885     if (next)
3886         loop->op_nextop = next;
3887     else
3888         loop->op_nextop = o;
3889
3890     o->op_flags |= flags;
3891     o->op_private |= (flags >> 8);
3892     return o;
3893 }
3894
3895 OP *
3896 Perl_newFOROP(pTHX_ I32 flags, char *label, line_t forline, OP *sv, OP *expr, OP *block, OP *cont)
3897 {
3898     dVAR;
3899     LOOP *loop;
3900     OP *wop;
3901     PADOFFSET padoff = 0;
3902     I32 iterflags = 0;
3903     I32 iterpflags = 0;
3904
3905     if (sv) {
3906         if (sv->op_type == OP_RV2SV) {  /* symbol table variable */
3907             iterpflags = sv->op_private & OPpOUR_INTRO; /* for our $x () */
3908             sv->op_type = OP_RV2GV;
3909             sv->op_ppaddr = PL_ppaddr[OP_RV2GV];
3910         }
3911         else if (sv->op_type == OP_PADSV) { /* private variable */
3912             iterpflags = sv->op_private & OPpLVAL_INTRO; /* for my $x () */
3913             padoff = sv->op_targ;
3914             sv->op_targ = 0;
3915             op_free(sv);
3916             sv = Nullop;
3917         }
3918         else if (sv->op_type == OP_THREADSV) { /* per-thread variable */
3919             padoff = sv->op_targ;
3920             sv->op_targ = 0;
3921             iterflags |= OPf_SPECIAL;
3922             op_free(sv);
3923             sv = Nullop;
3924         }
3925         else
3926             Perl_croak(aTHX_ "Can't use %s for loop variable", PL_op_desc[sv->op_type]);
3927     }
3928     else {
3929         const I32 offset = pad_findmy("$_");
3930         if (offset == NOT_IN_PAD || PAD_COMPNAME_FLAGS(offset) & SVpad_OUR) {
3931             sv = newGVOP(OP_GV, 0, PL_defgv);
3932         }
3933         else {
3934             padoff = offset;
3935         }
3936     }
3937     if (expr->op_type == OP_RV2AV || expr->op_type == OP_PADAV) {
3938         expr = mod(force_list(scalar(ref(expr, OP_ITER))), OP_GREPSTART);
3939         iterflags |= OPf_STACKED;
3940     }
3941     else if (expr->op_type == OP_NULL &&
3942              (expr->op_flags & OPf_KIDS) &&
3943              ((BINOP*)expr)->op_first->op_type == OP_FLOP)
3944     {
3945         /* Basically turn for($x..$y) into the same as for($x,$y), but we
3946          * set the STACKED flag to indicate that these values are to be
3947          * treated as min/max values by 'pp_iterinit'.
3948          */
3949         UNOP* flip = (UNOP*)((UNOP*)((BINOP*)expr)->op_first)->op_first;
3950         LOGOP* range = (LOGOP*) flip->op_first;
3951         OP* const left  = range->op_first;
3952         OP* const right = left->op_sibling;
3953         LISTOP* listop;
3954
3955         range->op_flags &= ~OPf_KIDS;
3956         range->op_first = Nullop;
3957
3958         listop = (LISTOP*)newLISTOP(OP_LIST, 0, left, right);
3959         listop->op_first->op_next = range->op_next;
3960         left->op_next = range->op_other;
3961         right->op_next = (OP*)listop;
3962         listop->op_next = listop->op_first;
3963
3964         op_free(expr);
3965         expr = (OP*)(listop);
3966         op_null(expr);
3967         iterflags |= OPf_STACKED;
3968     }
3969     else {
3970         expr = mod(force_list(expr), OP_GREPSTART);
3971     }
3972
3973     loop = (LOOP*)list(convert(OP_ENTERITER, iterflags,
3974                                append_elem(OP_LIST, expr, scalar(sv))));
3975     assert(!loop->op_next);
3976     /* for my  $x () sets OPpLVAL_INTRO;
3977      * for our $x () sets OPpOUR_INTRO */
3978     loop->op_private = (U8)iterpflags;
3979 #ifdef PL_OP_SLAB_ALLOC
3980     {
3981         LOOP *tmp;
3982         NewOp(1234,tmp,1,LOOP);
3983         Copy(loop,tmp,1,LISTOP);
3984         FreeOp(loop);
3985         loop = tmp;
3986     }
3987 #else
3988     Renew(loop, 1, LOOP);
3989 #endif
3990     loop->op_targ = padoff;
3991     wop = newWHILEOP(flags, 1, loop, forline, newOP(OP_ITER, 0), block, cont, 0);
3992     PL_copline = forline;
3993     return newSTATEOP(0, label, wop);
3994 }
3995
3996 OP*
3997 Perl_newLOOPEX(pTHX_ I32 type, OP *label)
3998 {
3999     OP *o;
4000
4001     if (type != OP_GOTO || label->op_type == OP_CONST) {
4002         /* "last()" means "last" */
4003         if (label->op_type == OP_STUB && (label->op_flags & OPf_PARENS))
4004             o = newOP(type, OPf_SPECIAL);
4005         else {
4006             o = newPVOP(type, 0, savepv(label->op_type == OP_CONST
4007                                         ? SvPVx_nolen_const(((SVOP*)label)->op_sv)
4008                                         : ""));
4009         }
4010         op_free(label);
4011     }
4012     else {
4013         /* Check whether it's going to be a goto &function */
4014         if (label->op_type == OP_ENTERSUB
4015                 && !(label->op_flags & OPf_STACKED))
4016             label = newUNOP(OP_REFGEN, 0, mod(label, OP_REFGEN));
4017         o = newUNOP(type, OPf_STACKED, label);
4018     }
4019     PL_hints |= HINT_BLOCK_SCOPE;
4020     return o;
4021 }
4022
4023 /*
4024 =for apidoc cv_undef
4025
4026 Clear out all the active components of a CV. This can happen either
4027 by an explicit C<undef &foo>, or by the reference count going to zero.
4028 In the former case, we keep the CvOUTSIDE pointer, so that any anonymous
4029 children can still follow the full lexical scope chain.
4030
4031 =cut
4032 */
4033
4034 void
4035 Perl_cv_undef(pTHX_ CV *cv)
4036 {
4037     dVAR;
4038 #ifdef USE_ITHREADS
4039     if (CvFILE(cv) && !CvXSUB(cv)) {
4040         /* for XSUBs CvFILE point directly to static memory; __FILE__ */
4041         Safefree(CvFILE(cv));
4042     }
4043     CvFILE(cv) = 0;
4044 #endif
4045
4046     if (!CvXSUB(cv) && CvROOT(cv)) {
4047         if (CvDEPTH(cv))
4048             Perl_croak(aTHX_ "Can't undef active subroutine");
4049         ENTER;
4050
4051         PAD_SAVE_SETNULLPAD();
4052
4053         op_free(CvROOT(cv));
4054         CvROOT(cv) = Nullop;
4055         CvSTART(cv) = Nullop;
4056         LEAVE;
4057     }
4058     SvPOK_off((SV*)cv);         /* forget prototype */
4059     CvGV(cv) = Nullgv;
4060
4061     pad_undef(cv);
4062
4063     /* remove CvOUTSIDE unless this is an undef rather than a free */
4064     if (!SvREFCNT(cv) && CvOUTSIDE(cv)) {
4065         if (!CvWEAKOUTSIDE(cv))
4066             SvREFCNT_dec(CvOUTSIDE(cv));
4067         CvOUTSIDE(cv) = Nullcv;
4068     }
4069     if (CvCONST(cv)) {
4070         SvREFCNT_dec((SV*)CvXSUBANY(cv).any_ptr);
4071         CvCONST_off(cv);
4072     }
4073     if (CvXSUB(cv)) {
4074         CvXSUB(cv) = 0;
4075     }
4076     /* delete all flags except WEAKOUTSIDE */
4077     CvFLAGS(cv) &= CVf_WEAKOUTSIDE;
4078 }
4079
4080 void
4081 Perl_cv_ckproto(pTHX_ const CV *cv, const GV *gv, const char *p)
4082 {
4083     if (((!p != !SvPOK(cv)) || (p && strNE(p, SvPVX_const(cv)))) && ckWARN_d(WARN_PROTOTYPE)) {
4084         SV* msg = sv_newmortal();
4085         SV* name = Nullsv;
4086
4087         if (gv)
4088             gv_efullname3(name = sv_newmortal(), gv, Nullch);
4089         sv_setpv(msg, "Prototype mismatch:");
4090         if (name)
4091             Perl_sv_catpvf(aTHX_ msg, " sub %"SVf, name);
4092         if (SvPOK(cv))
4093             Perl_sv_catpvf(aTHX_ msg, " (%"SVf")", (const SV *)cv);
4094         else
4095             Perl_sv_catpv(aTHX_ msg, ": none");
4096         sv_catpv(msg, " vs ");
4097         if (p)
4098             Perl_sv_catpvf(aTHX_ msg, "(%s)", p);
4099         else
4100             sv_catpv(msg, "none");
4101         Perl_warner(aTHX_ packWARN(WARN_PROTOTYPE), "%"SVf, msg);
4102     }
4103 }
4104
4105 static void const_sv_xsub(pTHX_ CV* cv);
4106
4107 /*
4108
4109 =head1 Optree Manipulation Functions
4110
4111 =for apidoc cv_const_sv
4112
4113 If C<cv> is a constant sub eligible for inlining. returns the constant
4114 value returned by the sub.  Otherwise, returns NULL.
4115
4116 Constant subs can be created with C<newCONSTSUB> or as described in
4117 L<perlsub/"Constant Functions">.
4118
4119 =cut
4120 */
4121 SV *
4122 Perl_cv_const_sv(pTHX_ CV *cv)
4123 {
4124     if (!cv || !CvCONST(cv))
4125         return Nullsv;
4126     return (SV*)CvXSUBANY(cv).any_ptr;
4127 }
4128
4129 /* op_const_sv:  examine an optree to determine whether it's in-lineable.
4130  * Can be called in 3 ways:
4131  *
4132  * !cv
4133  *      look for a single OP_CONST with attached value: return the value
4134  *
4135  * cv && CvCLONE(cv) && !CvCONST(cv)
4136  *
4137  *      examine the clone prototype, and if contains only a single
4138  *      OP_CONST referencing a pad const, or a single PADSV referencing
4139  *      an outer lexical, return a non-zero value to indicate the CV is
4140  *      a candidate for "constizing" at clone time
4141  *
4142  * cv && CvCONST(cv)
4143  *
4144  *      We have just cloned an anon prototype that was marked as a const
4145  *      candidiate. Try to grab the current value, and in the case of
4146  *      PADSV, ignore it if it has multiple references. Return the value.
4147  */
4148
4149 SV *
4150 Perl_op_const_sv(pTHX_ const OP *o, CV *cv)
4151 {
4152     SV *sv = Nullsv;
4153
4154     if (!o)
4155         return Nullsv;
4156
4157     if (o->op_type == OP_LINESEQ && cLISTOPo->op_first)
4158         o = cLISTOPo->op_first->op_sibling;
4159
4160     for (; o; o = o->op_next) {
4161         const OPCODE type = o->op_type;
4162
4163         if (sv && o->op_next == o)
4164             return sv;
4165         if (o->op_next != o) {
4166             if (type == OP_NEXTSTATE || type == OP_NULL || type == OP_PUSHMARK)
4167                 continue;
4168             if (type == OP_DBSTATE)
4169                 continue;
4170         }
4171         if (type == OP_LEAVESUB || type == OP_RETURN)
4172             break;
4173         if (sv)
4174             return Nullsv;
4175         if (type == OP_CONST && cSVOPo->op_sv)
4176             sv = cSVOPo->op_sv;
4177         else if (cv && type == OP_CONST) {
4178             sv = PAD_BASE_SV(CvPADLIST(cv), o->op_targ);
4179             if (!sv)
4180                 return Nullsv;
4181         }
4182         else if (cv && type == OP_PADSV) {
4183             if (CvCONST(cv)) { /* newly cloned anon */
4184                 sv = PAD_BASE_SV(CvPADLIST(cv), o->op_targ);
4185                 /* the candidate should have 1 ref from this pad and 1 ref
4186                  * from the parent */
4187                 if (!sv || SvREFCNT(sv) != 2)
4188                     return Nullsv;
4189                 sv = newSVsv(sv);
4190                 SvREADONLY_on(sv);
4191                 return sv;
4192             }
4193             else {
4194                 if (PAD_COMPNAME_FLAGS(o->op_targ) & SVf_FAKE)
4195                     sv = &PL_sv_undef; /* an arbitrary non-null value */
4196             }
4197         }
4198         else {
4199             return Nullsv;
4200         }
4201     }
4202     return sv;
4203 }
4204
4205 void
4206 Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block)
4207 {
4208     (void)floor;
4209     if (o)
4210         SAVEFREEOP(o);
4211     if (proto)
4212         SAVEFREEOP(proto);
4213     if (attrs)
4214         SAVEFREEOP(attrs);
4215     if (block)
4216         SAVEFREEOP(block);
4217     Perl_croak(aTHX_ "\"my sub\" not yet implemented");
4218 }
4219
4220 CV *
4221 Perl_newSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *block)
4222 {
4223     return Perl_newATTRSUB(aTHX_ floor, o, proto, Nullop, block);
4224 }
4225
4226 CV *
4227 Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block)
4228 {
4229     dVAR;
4230     const char *aname;
4231     GV *gv;
4232     const char *ps;
4233     STRLEN ps_len;
4234     register CV *cv=0;
4235     SV *const_sv;
4236     I32 gv_fetch_flags;
4237
4238     const char * const name = o ? SvPVx_nolen_const(cSVOPo->op_sv) : Nullch;
4239
4240     if (proto) {
4241         assert(proto->op_type == OP_CONST);
4242         ps = SvPVx_const(((SVOP*)proto)->op_sv, ps_len);
4243     }
4244     else
4245         ps = Nullch;
4246
4247     if (!name && PERLDB_NAMEANON && CopLINE(PL_curcop)) {
4248         SV *sv = sv_newmortal();
4249         Perl_sv_setpvf(aTHX_ sv, "%s[%s:%"IVdf"]",
4250                        PL_curstash ? "__ANON__" : "__ANON__::__ANON__",
4251                        CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
4252         aname = SvPVX_const(sv);
4253     }
4254     else
4255         aname = Nullch;
4256
4257     gv_fetch_flags = (block || attrs || (CvFLAGS(PL_compcv) & CVf_BUILTIN_ATTRS))
4258         ? GV_ADDMULTI : GV_ADDMULTI | GV_NOINIT;
4259     gv = name ? gv_fetchsv(cSVOPo->op_sv, gv_fetch_flags, SVt_PVCV)
4260         : gv_fetchpv(aname ? aname
4261                      : (PL_curstash ? "__ANON__" : "__ANON__::__ANON__"),
4262                      gv_fetch_flags, SVt_PVCV);
4263
4264     if (o)
4265         SAVEFREEOP(o);
4266     if (proto)
4267         SAVEFREEOP(proto);
4268     if (attrs)
4269         SAVEFREEOP(attrs);
4270
4271     if (SvTYPE(gv) != SVt_PVGV) {       /* Maybe prototype now, and had at
4272                                            maximum a prototype before. */
4273         if (SvTYPE(gv) > SVt_NULL) {
4274             if (!SvPOK((SV*)gv) && !(SvIOK((SV*)gv) && SvIVX((SV*)gv) == -1)
4275                 && ckWARN_d(WARN_PROTOTYPE))
4276             {
4277                 Perl_warner(aTHX_ packWARN(WARN_PROTOTYPE), "Runaway prototype");
4278             }
4279             cv_ckproto((CV*)gv, NULL, ps);
4280         }
4281         if (ps)
4282             sv_setpvn((SV*)gv, ps, ps_len);
4283         else
4284             sv_setiv((SV*)gv, -1);
4285         SvREFCNT_dec(PL_compcv);
4286         cv = PL_compcv = NULL;
4287         PL_sub_generation++;
4288         goto done;
4289     }
4290
4291     cv = (!name || GvCVGEN(gv)) ? Nullcv : GvCV(gv);
4292
4293 #ifdef GV_UNIQUE_CHECK
4294     if (cv && GvUNIQUE(gv) && SvREADONLY(cv)) {
4295         Perl_croak(aTHX_ "Can't define subroutine %s (GV is unique)", name);
4296     }
4297 #endif
4298
4299     if (!block || !ps || *ps || attrs || (CvFLAGS(PL_compcv) & CVf_BUILTIN_ATTRS))
4300         const_sv = Nullsv;
4301     else
4302         const_sv = op_const_sv(block, Nullcv);
4303
4304     if (cv) {
4305         const bool exists = CvROOT(cv) || CvXSUB(cv);
4306
4307 #ifdef GV_UNIQUE_CHECK
4308         if (exists && GvUNIQUE(gv)) {
4309             Perl_croak(aTHX_ "Can't redefine unique subroutine %s", name);
4310         }
4311 #endif
4312
4313         /* if the subroutine doesn't exist and wasn't pre-declared
4314          * with a prototype, assume it will be AUTOLOADed,
4315          * skipping the prototype check
4316          */
4317         if (exists || SvPOK(cv))
4318             cv_ckproto(cv, gv, ps);
4319         /* already defined (or promised)? */
4320         if (exists || GvASSUMECV(gv)) {
4321             if (!block && !attrs) {
4322                 if (CvFLAGS(PL_compcv)) {
4323                     /* might have had built-in attrs applied */
4324                     CvFLAGS(cv) |= (CvFLAGS(PL_compcv) & CVf_BUILTIN_ATTRS);
4325                 }
4326                 /* just a "sub foo;" when &foo is already defined */
4327                 SAVEFREESV(PL_compcv);
4328                 goto done;
4329             }
4330             /* ahem, death to those who redefine active sort subs */
4331             if (PL_curstackinfo->si_type == PERLSI_SORT && PL_sortcop == CvSTART(cv))
4332                 Perl_croak(aTHX_ "Can't redefine active sort subroutine %s", name);
4333             if (block) {
4334                 if (ckWARN(WARN_REDEFINE)
4335                     || (CvCONST(cv)
4336                         && (!const_sv || sv_cmp(cv_const_sv(cv), const_sv))))
4337                 {
4338                     const line_t oldline = CopLINE(PL_curcop);
4339                     if (PL_copline != NOLINE)
4340                         CopLINE_set(PL_curcop, PL_copline);
4341                     Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
4342                         CvCONST(cv) ? "Constant subroutine %s redefined"
4343                                     : "Subroutine %s redefined", name);
4344                     CopLINE_set(PL_curcop, oldline);
4345                 }
4346                 SvREFCNT_dec(cv);
4347                 cv = Nullcv;
4348             }
4349         }
4350     }
4351     if (const_sv) {
4352         (void)SvREFCNT_inc(const_sv);
4353         if (cv) {
4354             assert(!CvROOT(cv) && !CvCONST(cv));
4355             sv_setpvn((SV*)cv, "", 0);  /* prototype is "" */
4356             CvXSUBANY(cv).any_ptr = const_sv;
4357             CvXSUB(cv) = const_sv_xsub;
4358             CvCONST_on(cv);
4359         }
4360         else {
4361             GvCV(gv) = Nullcv;
4362             cv = newCONSTSUB(NULL, name, const_sv);
4363         }
4364         op_free(block);
4365         SvREFCNT_dec(PL_compcv);
4366         PL_compcv = NULL;
4367         PL_sub_generation++;
4368         goto done;
4369     }
4370     if (attrs) {
4371         HV *stash;
4372         SV *rcv;
4373
4374         /* Need to do a C<use attributes $stash_of_cv,\&cv,@attrs>
4375          * before we clobber PL_compcv.
4376          */
4377         if (cv && !block) {
4378             rcv = (SV*)cv;
4379             /* Might have had built-in attributes applied -- propagate them. */
4380             CvFLAGS(cv) |= (CvFLAGS(PL_compcv) & CVf_BUILTIN_ATTRS);
4381             if (CvGV(cv) && GvSTASH(CvGV(cv)))
4382                 stash = GvSTASH(CvGV(cv));
4383             else if (CvSTASH(cv))
4384                 stash = CvSTASH(cv);
4385             else
4386                 stash = PL_curstash;
4387         }
4388         else {
4389             /* possibly about to re-define existing subr -- ignore old cv */
4390             rcv = (SV*)PL_compcv;
4391             if (name && GvSTASH(gv))
4392                 stash = GvSTASH(gv);
4393             else
4394                 stash = PL_curstash;
4395         }
4396         apply_attrs(stash, rcv, attrs, FALSE);
4397     }
4398     if (cv) {                           /* must reuse cv if autoloaded */
4399         if (!block) {
4400             /* got here with just attrs -- work done, so bug out */
4401             SAVEFREESV(PL_compcv);
4402             goto done;
4403         }
4404         /* transfer PL_compcv to cv */
4405         cv_undef(cv);
4406         CvFLAGS(cv) = CvFLAGS(PL_compcv);
4407         if (!CvWEAKOUTSIDE(cv))
4408             SvREFCNT_dec(CvOUTSIDE(cv));
4409         CvOUTSIDE(cv) = CvOUTSIDE(PL_compcv);
4410         CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(PL_compcv);
4411         CvOUTSIDE(PL_compcv) = 0;
4412         CvPADLIST(cv) = CvPADLIST(PL_compcv);
4413         CvPADLIST(PL_compcv) = 0;
4414         /* inner references to PL_compcv must be fixed up ... */
4415         pad_fixup_inner_anons(CvPADLIST(cv), PL_compcv, cv);
4416         /* ... before we throw it away */
4417         SvREFCNT_dec(PL_compcv);
4418         PL_compcv = cv;
4419         if (PERLDB_INTER)/* Advice debugger on the new sub. */
4420           ++PL_sub_generation;
4421     }
4422     else {
4423         cv = PL_compcv;
4424         if (name) {
4425             GvCV(gv) = cv;
4426             GvCVGEN(gv) = 0;
4427             PL_sub_generation++;
4428         }
4429     }
4430     CvGV(cv) = gv;
4431     CvFILE_set_from_cop(cv, PL_curcop);
4432     CvSTASH(cv) = PL_curstash;
4433
4434     if (ps)
4435         sv_setpvn((SV*)cv, ps, ps_len);
4436
4437     if (PL_error_count) {
4438         op_free(block);
4439         block = Nullop;
4440         if (name) {
4441             const char *s = strrchr(name, ':');
4442             s = s ? s+1 : name;
4443             if (strEQ(s, "BEGIN")) {
4444                 const char not_safe[] =
4445                     "BEGIN not safe after errors--compilation aborted";
4446                 if (PL_in_eval & EVAL_KEEPERR)
4447                     Perl_croak(aTHX_ not_safe);
4448                 else {
4449                     /* force display of errors found but not reported */
4450                     sv_catpv(ERRSV, not_safe);
4451                     Perl_croak(aTHX_ "%"SVf, ERRSV);
4452                 }
4453             }
4454         }
4455     }
4456     if (!block)
4457         goto done;
4458
4459     if (CvLVALUE(cv)) {
4460         CvROOT(cv) = newUNOP(OP_LEAVESUBLV, 0,
4461                              mod(scalarseq(block), OP_LEAVESUBLV));
4462     }
4463     else {
4464         /* This makes sub {}; work as expected.  */
4465         if (block->op_type == OP_STUB) {
4466             op_free(block);
4467             block = newSTATEOP(0, Nullch, 0);
4468         }
4469         CvROOT(cv) = newUNOP(OP_LEAVESUB, 0, scalarseq(block));
4470     }
4471     CvROOT(cv)->op_private |= OPpREFCOUNTED;
4472     OpREFCNT_set(CvROOT(cv), 1);
4473     CvSTART(cv) = LINKLIST(CvROOT(cv));
4474     CvROOT(cv)->op_next = 0;
4475     CALL_PEEP(CvSTART(cv));
4476
4477     /* now that optimizer has done its work, adjust pad values */
4478
4479     pad_tidy(CvCLONE(cv) ? padtidy_SUBCLONE : padtidy_SUB);
4480
4481     if (CvCLONE(cv)) {
4482         assert(!CvCONST(cv));
4483         if (ps && !*ps && op_const_sv(block, cv))
4484             CvCONST_on(cv);
4485     }
4486
4487     if (name || aname) {
4488         const char *s;
4489         const char *tname = (name ? name : aname);
4490
4491         if (PERLDB_SUBLINE && PL_curstash != PL_debstash) {
4492             SV *sv = NEWSV(0,0);
4493             SV *tmpstr = sv_newmortal();
4494             GV *db_postponed = gv_fetchpv("DB::postponed", GV_ADDMULTI, SVt_PVHV);
4495             CV *pcv;
4496             HV *hv;
4497
4498             Perl_sv_setpvf(aTHX_ sv, "%s:%ld-%ld",
4499                            CopFILE(PL_curcop),
4500                            (long)PL_subline, (long)CopLINE(PL_curcop));
4501             gv_efullname3(tmpstr, gv, Nullch);
4502             hv_store(GvHV(PL_DBsub), SvPVX_const(tmpstr), SvCUR(tmpstr), sv, 0);
4503             hv = GvHVn(db_postponed);
4504             if (HvFILL(hv) > 0 && hv_exists(hv, SvPVX_const(tmpstr), SvCUR(tmpstr))
4505                 && (pcv = GvCV(db_postponed)))
4506             {
4507                 dSP;
4508                 PUSHMARK(SP);
4509                 XPUSHs(tmpstr);
4510                 PUTBACK;
4511                 call_sv((SV*)pcv, G_DISCARD);
4512             }
4513         }
4514
4515         if ((s = strrchr(tname,':')))
4516             s++;
4517         else
4518             s = tname;
4519
4520         if (*s != 'B' && *s != 'E' && *s != 'C' && *s != 'I')
4521             goto done;
4522
4523         if (strEQ(s, "BEGIN") && !PL_error_count) {
4524             const I32 oldscope = PL_scopestack_ix;
4525             ENTER;
4526             SAVECOPFILE(&PL_compiling);
4527             SAVECOPLINE(&PL_compiling);
4528
4529             if (!PL_beginav)
4530                 PL_beginav = newAV();
4531             DEBUG_x( dump_sub(gv) );
4532             av_push(PL_beginav, (SV*)cv);
4533             GvCV(gv) = 0;               /* cv has been hijacked */
4534             call_list(oldscope, PL_beginav);
4535
4536             PL_curcop = &PL_compiling;
4537             PL_compiling.op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
4538             LEAVE;
4539         }
4540         else if (strEQ(s, "END") && !PL_error_count) {
4541             if (!PL_endav)
4542                 PL_endav = newAV();
4543             DEBUG_x( dump_sub(gv) );
4544             av_unshift(PL_endav, 1);
4545             av_store(PL_endav, 0, (SV*)cv);
4546             GvCV(gv) = 0;               /* cv has been hijacked */
4547         }
4548         else if (strEQ(s, "CHECK") && !PL_error_count) {
4549             if (!PL_checkav)
4550                 PL_checkav = newAV();
4551             DEBUG_x( dump_sub(gv) );
4552             if (PL_main_start && ckWARN(WARN_VOID))
4553                 Perl_warner(aTHX_ packWARN(WARN_VOID), "Too late to run CHECK block");
4554             av_unshift(PL_checkav, 1);
4555             av_store(PL_checkav, 0, (SV*)cv);
4556             GvCV(gv) = 0;               /* cv has been hijacked */
4557         }
4558         else if (strEQ(s, "INIT") && !PL_error_count) {
4559             if (!PL_initav)
4560                 PL_initav = newAV();
4561             DEBUG_x( dump_sub(gv) );
4562             if (PL_main_start && ckWARN(WARN_VOID))
4563                 Perl_warner(aTHX_ packWARN(WARN_VOID), "Too late to run INIT block");
4564             av_push(PL_initav, (SV*)cv);
4565             GvCV(gv) = 0;               /* cv has been hijacked */
4566         }
4567     }
4568
4569   done:
4570     PL_copline = NOLINE;
4571     LEAVE_SCOPE(floor);
4572     return cv;
4573 }
4574
4575 /* XXX unsafe for threads if eval_owner isn't held */
4576 /*
4577 =for apidoc newCONSTSUB
4578
4579 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
4580 eligible for inlining at compile-time.
4581
4582 =cut
4583 */
4584
4585 CV *
4586 Perl_newCONSTSUB(pTHX_ HV *stash, const char *name, SV *sv)
4587 {
4588     dVAR;
4589     CV* cv;
4590
4591     ENTER;
4592
4593     SAVECOPLINE(PL_curcop);
4594     CopLINE_set(PL_curcop, PL_copline);
4595
4596     SAVEHINTS();
4597     PL_hints &= ~HINT_BLOCK_SCOPE;
4598
4599     if (stash) {
4600         SAVESPTR(PL_curstash);
4601         SAVECOPSTASH(PL_curcop);
4602         PL_curstash = stash;
4603         CopSTASH_set(PL_curcop,stash);
4604     }
4605
4606     cv = newXS(name, const_sv_xsub, savepv(CopFILE(PL_curcop)));
4607     CvXSUBANY(cv).any_ptr = sv;
4608     CvCONST_on(cv);
4609     sv_setpvn((SV*)cv, "", 0);  /* prototype is "" */
4610
4611     if (stash)
4612         CopSTASH_free(PL_curcop);
4613
4614     LEAVE;
4615
4616     return cv;
4617 }
4618
4619 /*
4620 =for apidoc U||newXS
4621
4622 Used by C<xsubpp> to hook up XSUBs as Perl subs.
4623
4624 =cut
4625 */
4626
4627 CV *
4628 Perl_newXS(pTHX_ const char *name, XSUBADDR_t subaddr, const char *filename)
4629 {
4630     GV *gv = gv_fetchpv(name ? name :
4631                         (PL_curstash ? "__ANON__" : "__ANON__::__ANON__"),
4632                         GV_ADDMULTI, SVt_PVCV);
4633     register CV *cv;
4634
4635     if (!subaddr)
4636         Perl_croak(aTHX_ "panic: no address for '%s' in '%s'", name, filename);
4637
4638     if ((cv = (name ? GvCV(gv) : Nullcv))) {
4639         if (GvCVGEN(gv)) {
4640             /* just a cached method */
4641             SvREFCNT_dec(cv);
4642             cv = Nullcv;
4643         }
4644         else if (CvROOT(cv) || CvXSUB(cv) || GvASSUMECV(gv)) {
4645             /* already defined (or promised) */
4646             /* XXX It's possible for this HvNAME_get to return null, and get passed into strEQ */
4647             if (ckWARN(WARN_REDEFINE)) {
4648                 GV * const gvcv = CvGV(cv);
4649                 if (gvcv) {
4650                     HV * const stash = GvSTASH(gvcv);
4651                     if (stash) {
4652                         const char *name = HvNAME_get(stash);
4653                         if ( strEQ(name,"autouse") ) {
4654                             const line_t oldline = CopLINE(PL_curcop);
4655                             if (PL_copline != NOLINE)
4656                                 CopLINE_set(PL_curcop, PL_copline);
4657                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
4658                                         CvCONST(cv) ? "Constant subroutine %s redefined"
4659                                                     : "Subroutine %s redefined"
4660                                         ,name);
4661                             CopLINE_set(PL_curcop, oldline);
4662                         }
4663                     }
4664                 }
4665             }
4666             SvREFCNT_dec(cv);
4667             cv = Nullcv;
4668         }
4669     }
4670
4671     if (cv)                             /* must reuse cv if autoloaded */
4672         cv_undef(cv);
4673     else {
4674         cv = (CV*)NEWSV(1105,0);
4675         sv_upgrade((SV *)cv, SVt_PVCV);
4676         if (name) {
4677             GvCV(gv) = cv;
4678             GvCVGEN(gv) = 0;
4679             PL_sub_generation++;
4680         }
4681     }
4682     CvGV(cv) = gv;
4683     (void)gv_fetchfile(filename);
4684     CvFILE(cv) = (char *)filename; /* NOTE: not copied, as it is expected to be
4685                                    an external constant string */
4686     CvXSUB(cv) = subaddr;
4687
4688     if (name) {
4689         const char *s = strrchr(name,':');
4690         if (s)
4691             s++;
4692         else
4693             s = name;
4694
4695         if (*s != 'B' && *s != 'E' && *s != 'C' && *s != 'I')
4696             goto done;
4697
4698         if (strEQ(s, "BEGIN")) {
4699             if (!PL_beginav)
4700                 PL_beginav = newAV();
4701             av_push(PL_beginav, (SV*)cv);
4702             GvCV(gv) = 0;               /* cv has been hijacked */
4703         }
4704         else if (strEQ(s, "END")) {
4705             if (!PL_endav)
4706                 PL_endav = newAV();
4707             av_unshift(PL_endav, 1);
4708             av_store(PL_endav, 0, (SV*)cv);
4709             GvCV(gv) = 0;               /* cv has been hijacked */
4710         }
4711         else if (strEQ(s, "CHECK")) {
4712             if (!PL_checkav)
4713                 PL_checkav = newAV();
4714             if (PL_main_start && ckWARN(WARN_VOID))
4715                 Perl_warner(aTHX_ packWARN(WARN_VOID), "Too late to run CHECK block");
4716             av_unshift(PL_checkav, 1);
4717             av_store(PL_checkav, 0, (SV*)cv);
4718             GvCV(gv) = 0;               /* cv has been hijacked */
4719         }
4720         else if (strEQ(s, "INIT")) {
4721             if (!PL_initav)
4722                 PL_initav = newAV();
4723             if (PL_main_start && ckWARN(WARN_VOID))
4724                 Perl_warner(aTHX_ packWARN(WARN_VOID), "Too late to run INIT block");
4725             av_push(PL_initav, (SV*)cv);
4726             GvCV(gv) = 0;               /* cv has been hijacked */
4727         }
4728     }
4729     else
4730         CvANON_on(cv);
4731
4732 done:
4733     return cv;
4734 }
4735
4736 void
4737 Perl_newFORM(pTHX_ I32 floor, OP *o, OP *block)
4738 {
4739     register CV *cv;
4740     GV *gv;
4741
4742     if (o)
4743         gv = gv_fetchsv(cSVOPo->op_sv, TRUE, SVt_PVFM);
4744     else
4745         gv = gv_fetchpv("STDOUT", TRUE, SVt_PVFM);
4746     
4747 #ifdef GV_UNIQUE_CHECK
4748     if (GvUNIQUE(gv)) {
4749         Perl_croak(aTHX_ "Bad symbol for form (GV is unique)");
4750     }
4751 #endif
4752     GvMULTI_on(gv);
4753     if ((cv = GvFORM(gv))) {
4754         if (ckWARN(WARN_REDEFINE)) {
4755             const line_t oldline = CopLINE(PL_curcop);
4756             if (PL_copline != NOLINE)
4757                 CopLINE_set(PL_curcop, PL_copline);
4758             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
4759                         o ? "Format %"SVf" redefined"
4760                         : "Format STDOUT redefined" ,cSVOPo->op_sv);
4761             CopLINE_set(PL_curcop, oldline);
4762         }
4763         SvREFCNT_dec(cv);
4764     }
4765     cv = PL_compcv;
4766     GvFORM(gv) = cv;
4767     CvGV(cv) = gv;
4768     CvFILE_set_from_cop(cv, PL_curcop);
4769
4770
4771     pad_tidy(padtidy_FORMAT);
4772     CvROOT(cv) = newUNOP(OP_LEAVEWRITE, 0, scalarseq(block));
4773     CvROOT(cv)->op_private |= OPpREFCOUNTED;
4774     OpREFCNT_set(CvROOT(cv), 1);
4775     CvSTART(cv) = LINKLIST(CvROOT(cv));
4776     CvROOT(cv)->op_next = 0;
4777     CALL_PEEP(CvSTART(cv));
4778     op_free(o);
4779     PL_copline = NOLINE;
4780     LEAVE_SCOPE(floor);
4781 }
4782
4783 OP *
4784 Perl_newANONLIST(pTHX_ OP *o)
4785 {
4786     return newUNOP(OP_REFGEN, 0,
4787         mod(list(convert(OP_ANONLIST, 0, o)), OP_REFGEN));
4788 }
4789
4790 OP *
4791 Perl_newANONHASH(pTHX_ OP *o)
4792 {
4793     return newUNOP(OP_REFGEN, 0,
4794         mod(list(convert(OP_ANONHASH, 0, o)), OP_REFGEN));
4795 }
4796
4797 OP *
4798 Perl_newANONSUB(pTHX_ I32 floor, OP *proto, OP *block)
4799 {
4800     return newANONATTRSUB(floor, proto, Nullop, block);
4801 }
4802
4803 OP *
4804 Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block)
4805 {
4806     return newUNOP(OP_REFGEN, 0,
4807         newSVOP(OP_ANONCODE, 0,
4808                 (SV*)newATTRSUB(floor, 0, proto, attrs, block)));
4809 }
4810
4811 OP *
4812 Perl_oopsAV(pTHX_ OP *o)
4813 {
4814     dVAR;
4815     switch (o->op_type) {
4816     case OP_PADSV:
4817         o->op_type = OP_PADAV;
4818         o->op_ppaddr = PL_ppaddr[OP_PADAV];
4819         return ref(o, OP_RV2AV);
4820
4821     case OP_RV2SV:
4822         o->op_type = OP_RV2AV;
4823         o->op_ppaddr = PL_ppaddr[OP_RV2AV];
4824         ref(o, OP_RV2AV);
4825         break;
4826
4827     default:
4828         if (ckWARN_d(WARN_INTERNAL))
4829             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "oops: oopsAV");
4830         break;
4831     }
4832     return o;
4833 }
4834
4835 OP *
4836 Perl_oopsHV(pTHX_ OP *o)
4837 {
4838     dVAR;
4839     switch (o->op_type) {
4840     case OP_PADSV:
4841     case OP_PADAV:
4842         o->op_type = OP_PADHV;
4843         o->op_ppaddr = PL_ppaddr[OP_PADHV];
4844         return ref(o, OP_RV2HV);
4845
4846     case OP_RV2SV:
4847     case OP_RV2AV:
4848         o->op_type = OP_RV2HV;
4849         o->op_ppaddr = PL_ppaddr[OP_RV2HV];
4850         ref(o, OP_RV2HV);
4851         break;
4852
4853     default:
4854         if (ckWARN_d(WARN_INTERNAL))
4855             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "oops: oopsHV");
4856         break;
4857     }
4858     return o;
4859 }
4860
4861 OP *
4862 Perl_newAVREF(pTHX_ OP *o)
4863 {
4864     dVAR;
4865     if (o->op_type == OP_PADANY) {
4866         o->op_type = OP_PADAV;
4867         o->op_ppaddr = PL_ppaddr[OP_PADAV];
4868         return o;
4869     }
4870     else if ((o->op_type == OP_RV2AV || o->op_type == OP_PADAV)
4871                 && ckWARN(WARN_DEPRECATED)) {
4872         Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
4873                 "Using an array as a reference is deprecated");
4874     }
4875     return newUNOP(OP_RV2AV, 0, scalar(o));
4876 }
4877
4878 OP *
4879 Perl_newGVREF(pTHX_ I32 type, OP *o)
4880 {
4881     if (type == OP_MAPSTART || type == OP_GREPSTART || type == OP_SORT)
4882         return newUNOP(OP_NULL, 0, o);
4883     return ref(newUNOP(OP_RV2GV, OPf_REF, o), type);
4884 }
4885
4886 OP *
4887 Perl_newHVREF(pTHX_ OP *o)
4888 {
4889     dVAR;
4890     if (o->op_type == OP_PADANY) {
4891         o->op_type = OP_PADHV;
4892         o->op_ppaddr = PL_ppaddr[OP_PADHV];
4893         return o;
4894     }
4895     else if ((o->op_type == OP_RV2HV || o->op_type == OP_PADHV)
4896                 && ckWARN(WARN_DEPRECATED)) {
4897         Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
4898                 "Using a hash as a reference is deprecated");
4899     }
4900     return newUNOP(OP_RV2HV, 0, scalar(o));
4901 }
4902
4903 OP *
4904 Perl_oopsCV(pTHX_ OP *o)
4905 {
4906     Perl_croak(aTHX_ "NOT IMPL LINE %d",__LINE__);
4907     /* STUB */
4908     (void)o;
4909     NORETURN_FUNCTION_END;
4910 }
4911
4912 OP *
4913 Perl_newCVREF(pTHX_ I32 flags, OP *o)
4914 {
4915     return newUNOP(OP_RV2CV, flags, scalar(o));
4916 }
4917
4918 OP *
4919 Perl_newSVREF(pTHX_ OP *o)
4920 {
4921     dVAR;
4922     if (o->op_type == OP_PADANY) {
4923         o->op_type = OP_PADSV;
4924         o->op_ppaddr = PL_ppaddr[OP_PADSV];
4925         return o;
4926     }
4927     else if (o->op_type == OP_THREADSV && !(o->op_flags & OPpDONE_SVREF)) {
4928         o->op_flags |= OPpDONE_SVREF;
4929         return o;
4930     }
4931     return newUNOP(OP_RV2SV, 0, scalar(o));
4932 }
4933
4934 /* Check routines. See the comments at the top of this file for details
4935  * on when these are called */
4936
4937 OP *
4938 Perl_ck_anoncode(pTHX_ OP *o)
4939 {
4940     cSVOPo->op_targ = pad_add_anon(cSVOPo->op_sv, o->op_type);
4941     cSVOPo->op_sv = Nullsv;
4942     return o;
4943 }
4944
4945 OP *
4946 Perl_ck_bitop(pTHX_ OP *o)
4947 {
4948 #define OP_IS_NUMCOMPARE(op) \
4949         ((op) == OP_LT   || (op) == OP_I_LT || \
4950          (op) == OP_GT   || (op) == OP_I_GT || \
4951          (op) == OP_LE   || (op) == OP_I_LE || \
4952          (op) == OP_GE   || (op) == OP_I_GE || \
4953          (op) == OP_EQ   || (op) == OP_I_EQ || \
4954          (op) == OP_NE   || (op) == OP_I_NE || \
4955          (op) == OP_NCMP || (op) == OP_I_NCMP)
4956     o->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
4957     if (!(o->op_flags & OPf_STACKED) /* Not an assignment */
4958             && (o->op_type == OP_BIT_OR
4959              || o->op_type == OP_BIT_AND
4960              || o->op_type == OP_BIT_XOR))
4961     {
4962         const OP * const left = cBINOPo->op_first;
4963         const OP * const right = left->op_sibling;
4964         if ((OP_IS_NUMCOMPARE(left->op_type) &&
4965                 (left->op_flags & OPf_PARENS) == 0) ||
4966             (OP_IS_NUMCOMPARE(right->op_type) &&
4967                 (right->op_flags & OPf_PARENS) == 0))
4968             if (ckWARN(WARN_PRECEDENCE))
4969                 Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
4970                         "Possible precedence problem on bitwise %c operator",
4971                         o->op_type == OP_BIT_OR ? '|'
4972                             : o->op_type == OP_BIT_AND ? '&' : '^'
4973                         );
4974     }
4975     return o;
4976 }
4977
4978 OP *
4979 Perl_ck_concat(pTHX_ OP *o)
4980 {
4981     const OP *kid = cUNOPo->op_first;
4982     if (kid->op_type == OP_CONCAT && !(kid->op_private & OPpTARGET_MY) &&
4983             !(kUNOP->op_first->op_flags & OPf_MOD))
4984         o->op_flags |= OPf_STACKED;
4985     return o;
4986 }
4987
4988 OP *
4989 Perl_ck_spair(pTHX_ OP *o)
4990 {
4991     dVAR;
4992     if (o->op_flags & OPf_KIDS) {
4993         OP* newop;
4994         OP* kid;
4995         const OPCODE type = o->op_type;
4996         o = modkids(ck_fun(o), type);
4997         kid = cUNOPo->op_first;
4998         newop = kUNOP->op_first->op_sibling;
4999         if (newop &&
5000             (newop->op_sibling ||
5001              !(PL_opargs[newop->op_type] & OA_RETSCALAR) ||
5002              newop->op_type == OP_PADAV || newop->op_type == OP_PADHV ||
5003              newop->op_type == OP_RV2AV || newop->op_type == OP_RV2HV)) {
5004
5005             return o;
5006         }
5007         op_free(kUNOP->op_first);
5008         kUNOP->op_first = newop;
5009     }
5010     o->op_ppaddr = PL_ppaddr[++o->op_type];
5011     return ck_fun(o);
5012 }
5013
5014 OP *
5015 Perl_ck_delete(pTHX_ OP *o)
5016 {
5017     o = ck_fun(o);
5018     o->op_private = 0;
5019     if (o->op_flags & OPf_KIDS) {
5020         OP *kid = cUNOPo->op_first;
5021         switch (kid->op_type) {
5022         case OP_ASLICE:
5023             o->op_flags |= OPf_SPECIAL;
5024             /* FALL THROUGH */
5025         case OP_HSLICE:
5026             o->op_private |= OPpSLICE;
5027             break;
5028         case OP_AELEM:
5029             o->op_flags |= OPf_SPECIAL;
5030             /* FALL THROUGH */
5031         case OP_HELEM:
5032             break;
5033         default:
5034             Perl_croak(aTHX_ "%s argument is not a HASH or ARRAY element or slice",
5035                   OP_DESC(o));
5036         }
5037         op_null(kid);
5038     }
5039     return o;
5040 }
5041
5042 OP *
5043 Perl_ck_die(pTHX_ OP *o)
5044 {
5045 #ifdef VMS
5046     if (VMSISH_HUSHED) o->op_private |= OPpHUSH_VMSISH;
5047 #endif
5048     return ck_fun(o);
5049 }
5050
5051 OP *
5052 Perl_ck_eof(pTHX_ OP *o)
5053 {
5054     const I32 type = o->op_type;
5055
5056     if (o->op_flags & OPf_KIDS) {
5057         if (cLISTOPo->op_first->op_type == OP_STUB) {
5058             op_free(o);
5059             o = newUNOP(type, OPf_SPECIAL, newGVOP(OP_GV, 0, PL_argvgv));
5060         }
5061         return ck_fun(o);
5062     }
5063     return o;
5064 }
5065
5066 OP *
5067 Perl_ck_eval(pTHX_ OP *o)
5068 {
5069     dVAR;
5070     PL_hints |= HINT_BLOCK_SCOPE;
5071     if (o->op_flags & OPf_KIDS) {
5072         SVOP *kid = (SVOP*)cUNOPo->op_first;
5073
5074         if (!kid) {
5075             o->op_flags &= ~OPf_KIDS;
5076             op_null(o);
5077         }
5078         else if (kid->op_type == OP_LINESEQ || kid->op_type == OP_STUB) {
5079             LOGOP *enter;
5080
5081             cUNOPo->op_first = 0;
5082             op_free(o);
5083
5084             NewOp(1101, enter, 1, LOGOP);
5085             enter->op_type = OP_ENTERTRY;
5086             enter->op_ppaddr = PL_ppaddr[OP_ENTERTRY];
5087             enter->op_private = 0;
5088
5089             /* establish postfix order */
5090             enter->op_next = (OP*)enter;
5091
5092             o = prepend_elem(OP_LINESEQ, (OP*)enter, (OP*)kid);
5093             o->op_type = OP_LEAVETRY;
5094             o->op_ppaddr = PL_ppaddr[OP_LEAVETRY];
5095             enter->op_other = o;
5096             return o;
5097         }
5098         else {
5099             scalar((OP*)kid);
5100             PL_cv_has_eval = 1;
5101         }
5102     }
5103     else {
5104         op_free(o);
5105         o = newUNOP(OP_ENTEREVAL, 0, newDEFSVOP());
5106     }
5107     o->op_targ = (PADOFFSET)PL_hints;
5108     return o;
5109 }
5110
5111 OP *
5112 Perl_ck_exit(pTHX_ OP *o)
5113 {
5114 #ifdef VMS
5115     HV *table = GvHV(PL_hintgv);
5116     if (table) {
5117        SV **svp = hv_fetch(table, "vmsish_exit", 11, FALSE);
5118        if (svp && *svp && SvTRUE(*svp))
5119            o->op_private |= OPpEXIT_VMSISH;
5120     }
5121     if (VMSISH_HUSHED) o->op_private |= OPpHUSH_VMSISH;
5122 #endif
5123     return ck_fun(o);
5124 }
5125
5126 OP *
5127 Perl_ck_exec(pTHX_ OP *o)
5128 {
5129     if (o->op_flags & OPf_STACKED) {
5130         OP *kid;
5131         o = ck_fun(o);
5132         kid = cUNOPo->op_first->op_sibling;
5133         if (kid->op_type == OP_RV2GV)
5134             op_null(kid);
5135     }
5136     else
5137         o = listkids(o);
5138     return o;
5139 }
5140
5141 OP *
5142 Perl_ck_exists(pTHX_ OP *o)
5143 {
5144     o = ck_fun(o);
5145     if (o->op_flags & OPf_KIDS) {
5146         OP *kid = cUNOPo->op_first;
5147         if (kid->op_type == OP_ENTERSUB) {
5148             (void) ref(kid, o->op_type);
5149             if (kid->op_type != OP_RV2CV && !PL_error_count)
5150                 Perl_croak(aTHX_ "%s argument is not a subroutine name",
5151                             OP_DESC(o));
5152             o->op_private |= OPpEXISTS_SUB;
5153         }
5154         else if (kid->op_type == OP_AELEM)
5155             o->op_flags |= OPf_SPECIAL;
5156         else if (kid->op_type != OP_HELEM)
5157             Perl_croak(aTHX_ "%s argument is not a HASH or ARRAY element",
5158                         OP_DESC(o));
5159         op_null(kid);
5160     }
5161     return o;
5162 }
5163
5164 OP *
5165 Perl_ck_rvconst(pTHX_ register OP *o)
5166 {
5167     dVAR;
5168     SVOP *kid = (SVOP*)cUNOPo->op_first;
5169
5170     o->op_private |= (PL_hints & HINT_STRICT_REFS);
5171     if (kid->op_type == OP_CONST) {
5172         int iscv;
5173         GV *gv;
5174         SV * const kidsv = kid->op_sv;
5175
5176         /* Is it a constant from cv_const_sv()? */
5177         if (SvROK(kidsv) && SvREADONLY(kidsv)) {
5178             SV *rsv = SvRV(kidsv);
5179             const int svtype = SvTYPE(rsv);
5180             const char *badtype = Nullch;
5181
5182             switch (o->op_type) {
5183             case OP_RV2SV:
5184                 if (svtype > SVt_PVMG)
5185                     badtype = "a SCALAR";
5186                 break;
5187             case OP_RV2AV:
5188                 if (svtype != SVt_PVAV)
5189                     badtype = "an ARRAY";
5190                 break;
5191             case OP_RV2HV:
5192                 if (svtype != SVt_PVHV)
5193                     badtype = "a HASH";
5194                 break;
5195             case OP_RV2CV:
5196                 if (svtype != SVt_PVCV)
5197                     badtype = "a CODE";
5198                 break;
5199             }
5200             if (badtype)
5201                 Perl_croak(aTHX_ "Constant is not %s reference", badtype);
5202             return o;
5203         }
5204         if ((PL_hints & HINT_STRICT_REFS) && (kid->op_private & OPpCONST_BARE)) {
5205             const char *badthing = Nullch;
5206             switch (o->op_type) {
5207             case OP_RV2SV:
5208                 badthing = "a SCALAR";
5209                 break;
5210             case OP_RV2AV:
5211                 badthing = "an ARRAY";
5212                 break;
5213             case OP_RV2HV:
5214                 badthing = "a HASH";
5215                 break;
5216             }
5217             if (badthing)
5218                 Perl_croak(aTHX_
5219           "Can't use bareword (\"%"SVf"\") as %s ref while \"strict refs\" in use",
5220                       kidsv, badthing);
5221         }
5222         /*
5223          * This is a little tricky.  We only want to add the symbol if we
5224          * didn't add it in the lexer.  Otherwise we get duplicate strict
5225          * warnings.  But if we didn't add it in the lexer, we must at
5226          * least pretend like we wanted to add it even if it existed before,
5227          * or we get possible typo warnings.  OPpCONST_ENTERED says
5228          * whether the lexer already added THIS instance of this symbol.
5229          */
5230         iscv = (o->op_type == OP_RV2CV) * 2;
5231         do {
5232             gv = gv_fetchsv(kidsv,
5233                 iscv | !(kid->op_private & OPpCONST_ENTERED),
5234                 iscv
5235                     ? SVt_PVCV
5236                     : o->op_type == OP_RV2SV
5237                         ? SVt_PV
5238                         : o->op_type == OP_RV2AV
5239                             ? SVt_PVAV
5240                             : o->op_type == OP_RV2HV
5241                                 ? SVt_PVHV
5242                                 : SVt_PVGV);
5243         } while (!gv && !(kid->op_private & OPpCONST_ENTERED) && !iscv++);
5244         if (gv) {
5245             kid->op_type = OP_GV;
5246             SvREFCNT_dec(kid->op_sv);
5247 #ifdef USE_ITHREADS
5248             /* XXX hack: dependence on sizeof(PADOP) <= sizeof(SVOP) */
5249             kPADOP->op_padix = pad_alloc(OP_GV, SVs_PADTMP);
5250             SvREFCNT_dec(PAD_SVl(kPADOP->op_padix));
5251             GvIN_PAD_on(gv);
5252             PAD_SETSV(kPADOP->op_padix, (SV*) SvREFCNT_inc(gv));
5253 #else
5254             kid->op_sv = SvREFCNT_inc(gv);
5255 #endif
5256             kid->op_private = 0;
5257             kid->op_ppaddr = PL_ppaddr[OP_GV];
5258         }
5259     }
5260     return o;
5261 }
5262
5263 OP *
5264 Perl_ck_ftst(pTHX_ OP *o)
5265 {
5266     dVAR;
5267     const I32 type = o->op_type;
5268
5269     if (o->op_flags & OPf_REF) {
5270         /* nothing */
5271     }
5272     else if (o->op_flags & OPf_KIDS && cUNOPo->op_first->op_type != OP_STUB) {
5273         SVOP *kid = (SVOP*)cUNOPo->op_first;
5274
5275         if (kid->op_type == OP_CONST && (kid->op_private & OPpCONST_BARE)) {
5276             OP *newop = newGVOP(type, OPf_REF,
5277                 gv_fetchsv(kid->op_sv, TRUE, SVt_PVIO));
5278             op_free(o);
5279             o = newop;
5280             return o;
5281         }
5282         else {
5283           if ((PL_hints & HINT_FILETEST_ACCESS) &&
5284               OP_IS_FILETEST_ACCESS(o))
5285             o->op_private |= OPpFT_ACCESS;
5286         }
5287         if (PL_check[kid->op_type] == MEMBER_TO_FPTR(Perl_ck_ftst)
5288                 && kid->op_type != OP_STAT && kid->op_type != OP_LSTAT)
5289             o->op_private |= OPpFT_STACKED;
5290     }
5291     else {
5292         op_free(o);
5293         if (type == OP_FTTTY)
5294             o = newGVOP(type, OPf_REF, PL_stdingv);
5295         else
5296             o = newUNOP(type, 0, newDEFSVOP());
5297     }
5298     return o;
5299 }
5300
5301 OP *
5302 Perl_ck_fun(pTHX_ OP *o)
5303 {
5304     const int type = o->op_type;
5305     register I32 oa = PL_opargs[type] >> OASHIFT;
5306
5307     if (o->op_flags & OPf_STACKED) {
5308         if ((oa & OA_OPTIONAL) && (oa >> 4) && !((oa >> 4) & OA_OPTIONAL))
5309             oa &= ~OA_OPTIONAL;
5310         else
5311             return no_fh_allowed(o);
5312     }
5313
5314     if (o->op_flags & OPf_KIDS) {
5315         OP **tokid = &cLISTOPo->op_first;
5316         register OP *kid = cLISTOPo->op_first;
5317         OP *sibl;
5318         I32 numargs = 0;
5319
5320         if (kid->op_type == OP_PUSHMARK ||
5321             (kid->op_type == OP_NULL && kid->op_targ == OP_PUSHMARK))
5322         {
5323             tokid = &kid->op_sibling;
5324             kid = kid->op_sibling;
5325         }
5326         if (!kid && PL_opargs[type] & OA_DEFGV)
5327             *tokid = kid = newDEFSVOP();
5328
5329         while (oa && kid) {
5330             numargs++;
5331             sibl = kid->op_sibling;
5332             switch (oa & 7) {
5333             case OA_SCALAR:
5334                 /* list seen where single (scalar) arg expected? */
5335                 if (numargs == 1 && !(oa >> 4)
5336                     && kid->op_type == OP_LIST && type != OP_SCALAR)
5337                 {
5338                     return too_many_arguments(o,PL_op_desc[type]);
5339                 }
5340                 scalar(kid);
5341                 break;
5342             case OA_LIST:
5343                 if (oa < 16) {
5344                     kid = 0;
5345                     continue;
5346                 }
5347                 else
5348                     list(kid);
5349                 break;
5350             case OA_AVREF:
5351                 if ((type == OP_PUSH || type == OP_UNSHIFT)
5352                     && !kid->op_sibling && ckWARN(WARN_SYNTAX))
5353                     Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
5354                         "Useless use of %s with no values",
5355                         PL_op_desc[type]);
5356
5357                 if (kid->op_type == OP_CONST &&
5358                     (kid->op_private & OPpCONST_BARE))
5359                 {
5360                     OP *newop = newAVREF(newGVOP(OP_GV, 0,
5361                         gv_fetchsv(((SVOP*)kid)->op_sv, TRUE, SVt_PVAV) ));
5362                     if (ckWARN2(WARN_DEPRECATED, WARN_SYNTAX))
5363                         Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5364                             "Array @%"SVf" missing the @ in argument %"IVdf" of %s()",
5365                             ((SVOP*)kid)->op_sv, (IV)numargs, PL_op_desc[type]);
5366                     op_free(kid);
5367                     kid = newop;
5368                     kid->op_sibling = sibl;
5369                     *tokid = kid;
5370                 }
5371                 else if (kid->op_type != OP_RV2AV && kid->op_type != OP_PADAV)
5372                     bad_type(numargs, "array", PL_op_desc[type], kid);
5373                 mod(kid, type);
5374                 break;
5375             case OA_HVREF:
5376                 if (kid->op_type == OP_CONST &&
5377                     (kid->op_private & OPpCONST_BARE))
5378                 {
5379                     OP *newop = newHVREF(newGVOP(OP_GV, 0,
5380                         gv_fetchsv(((SVOP*)kid)->op_sv, TRUE, SVt_PVHV) ));
5381                     if (ckWARN2(WARN_DEPRECATED, WARN_SYNTAX))
5382                         Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5383                             "Hash %%%"SVf" missing the %% in argument %"IVdf" of %s()",
5384                             ((SVOP*)kid)->op_sv, (IV)numargs, PL_op_desc[type]);
5385                     op_free(kid);
5386                     kid = newop;
5387                     kid->op_sibling = sibl;
5388                     *tokid = kid;
5389                 }
5390                 else if (kid->op_type != OP_RV2HV && kid->op_type != OP_PADHV)
5391                     bad_type(numargs, "hash", PL_op_desc[type], kid);
5392                 mod(kid, type);
5393                 break;
5394             case OA_CVREF:
5395                 {
5396                     OP *newop = newUNOP(OP_NULL, 0, kid);
5397                     kid->op_sibling = 0;
5398                     linklist(kid);
5399                     newop->op_next = newop;
5400                     kid = newop;
5401                     kid->op_sibling = sibl;
5402                     *tokid = kid;
5403                 }
5404                 break;
5405             case OA_FILEREF:
5406                 if (kid->op_type != OP_GV && kid->op_type != OP_RV2GV) {
5407                     if (kid->op_type == OP_CONST &&
5408                         (kid->op_private & OPpCONST_BARE))
5409                     {
5410                         OP *newop = newGVOP(OP_GV, 0,
5411                             gv_fetchsv(((SVOP*)kid)->op_sv, TRUE, SVt_PVIO) );
5412                         if (!(o->op_private & 1) && /* if not unop */
5413                             kid == cLISTOPo->op_last)
5414                             cLISTOPo->op_last = newop;
5415                         op_free(kid);
5416                         kid = newop;
5417                     }
5418                     else if (kid->op_type == OP_READLINE) {
5419                         /* neophyte patrol: open(<FH>), close(<FH>) etc. */
5420                         bad_type(numargs, "HANDLE", OP_DESC(o), kid);
5421                     }
5422                     else {
5423                         I32 flags = OPf_SPECIAL;
5424                         I32 priv = 0;
5425                         PADOFFSET targ = 0;
5426
5427                         /* is this op a FH constructor? */
5428                         if (is_handle_constructor(o,numargs)) {
5429                             const char *name = Nullch;
5430                             STRLEN len = 0;
5431
5432                             flags = 0;
5433                             /* Set a flag to tell rv2gv to vivify
5434                              * need to "prove" flag does not mean something
5435                              * else already - NI-S 1999/05/07
5436                              */
5437                             priv = OPpDEREF;
5438                             if (kid->op_type == OP_PADSV) {
5439                                 name = PAD_COMPNAME_PV(kid->op_targ);
5440                                 /* SvCUR of a pad namesv can't be trusted
5441                                  * (see PL_generation), so calc its length
5442                                  * manually */
5443                                 if (name)
5444                                     len = strlen(name);
5445
5446                             }
5447                             else if (kid->op_type == OP_RV2SV
5448                                      && kUNOP->op_first->op_type == OP_GV)
5449                             {
5450                                 GV *gv = cGVOPx_gv(kUNOP->op_first);
5451                                 name = GvNAME(gv);
5452                                 len = GvNAMELEN(gv);
5453                             }
5454                             else if (kid->op_type == OP_AELEM
5455                                      || kid->op_type == OP_HELEM)
5456                             {
5457                                  OP *op;
5458
5459                                  name = 0;
5460                                  if ((op = ((BINOP*)kid)->op_first)) {
5461                                       SV *tmpstr = Nullsv;
5462                                       const char *a =
5463                                            kid->op_type == OP_AELEM ?
5464                                            "[]" : "{}";
5465                                       if (((op->op_type == OP_RV2AV) ||
5466                                            (op->op_type == OP_RV2HV)) &&
5467                                           (op = ((UNOP*)op)->op_first) &&
5468                                           (op->op_type == OP_GV)) {
5469                                            /* packagevar $a[] or $h{} */
5470                                            GV *gv = cGVOPx_gv(op);
5471                                            if (gv)
5472                                                 tmpstr =
5473                                                      Perl_newSVpvf(aTHX_
5474                                                                    "%s%c...%c",
5475                                                                    GvNAME(gv),
5476                                                                    a[0], a[1]);
5477                                       }
5478                                       else if (op->op_type == OP_PADAV
5479                                                || op->op_type == OP_PADHV) {
5480                                            /* lexicalvar $a[] or $h{} */
5481                                            const char *padname =
5482                                                 PAD_COMPNAME_PV(op->op_targ);
5483                                            if (padname)
5484                                                 tmpstr =
5485                                                      Perl_newSVpvf(aTHX_
5486                                                                    "%s%c...%c",
5487                                                                    padname + 1,
5488                                                                    a[0], a[1]);
5489                                            
5490                                       }
5491                                       if (tmpstr) {
5492                                            name = SvPV_const(tmpstr, len);
5493                                            sv_2mortal(tmpstr);
5494                                       }
5495                                  }
5496                                  if (!name) {
5497                                       name = "__ANONIO__";
5498                                       len = 10;
5499                                  }
5500                                  mod(kid, type);
5501                             }
5502                             if (name) {
5503                                 SV *namesv;
5504                                 targ = pad_alloc(OP_RV2GV, SVs_PADTMP);
5505                                 namesv = PAD_SVl(targ);
5506                                 SvUPGRADE(namesv, SVt_PV);
5507                                 if (*name != '$')
5508                                     sv_setpvn(namesv, "$", 1);
5509                                 sv_catpvn(namesv, name, len);
5510                             }
5511                         }
5512                         kid->op_sibling = 0;
5513                         kid = newUNOP(OP_RV2GV, flags, scalar(kid));
5514                         kid->op_targ = targ;
5515                         kid->op_private |= priv;
5516                     }
5517                     kid->op_sibling = sibl;
5518                     *tokid = kid;
5519                 }
5520                 scalar(kid);
5521                 break;
5522             case OA_SCALARREF:
5523                 mod(scalar(kid), type);
5524                 break;
5525             }
5526             oa >>= 4;
5527             tokid = &kid->op_sibling;
5528             kid = kid->op_sibling;
5529         }
5530         o->op_private |= numargs;
5531         if (kid)
5532             return too_many_arguments(o,OP_DESC(o));
5533         listkids(o);
5534     }
5535     else if (PL_opargs[type] & OA_DEFGV) {
5536         op_free(o);
5537         return newUNOP(type, 0, newDEFSVOP());
5538     }
5539
5540     if (oa) {
5541         while (oa & OA_OPTIONAL)
5542             oa >>= 4;
5543         if (oa && oa != OA_LIST)
5544             return too_few_arguments(o,OP_DESC(o));
5545     }
5546     return o;
5547 }
5548
5549 OP *
5550 Perl_ck_glob(pTHX_ OP *o)
5551 {
5552     dVAR;
5553     GV *gv;
5554
5555     o = ck_fun(o);
5556     if ((o->op_flags & OPf_KIDS) && !cLISTOPo->op_first->op_sibling)
5557         append_elem(OP_GLOB, o, newDEFSVOP());
5558
5559     if (!((gv = gv_fetchpv("glob", FALSE, SVt_PVCV))
5560           && GvCVu(gv) && GvIMPORTED_CV(gv)))
5561     {
5562         gv = gv_fetchpv("CORE::GLOBAL::glob", FALSE, SVt_PVCV);
5563     }
5564
5565 #if !defined(PERL_EXTERNAL_GLOB)
5566     /* XXX this can be tightened up and made more failsafe. */
5567     if (!(gv && GvCVu(gv) && GvIMPORTED_CV(gv))) {
5568         GV *glob_gv;
5569         ENTER;
5570         Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT,
5571                 newSVpvn("File::Glob", 10), Nullsv, Nullsv, Nullsv);
5572         gv = gv_fetchpv("CORE::GLOBAL::glob", FALSE, SVt_PVCV);
5573         glob_gv = gv_fetchpv("File::Glob::csh_glob", FALSE, SVt_PVCV);
5574         GvCV(gv) = GvCV(glob_gv);
5575         (void)SvREFCNT_inc((SV*)GvCV(gv));
5576         GvIMPORTED_CV_on(gv);
5577         LEAVE;
5578     }
5579 #endif /* PERL_EXTERNAL_GLOB */
5580
5581     if (gv && GvCVu(gv) && GvIMPORTED_CV(gv)) {
5582         append_elem(OP_GLOB, o,
5583                     newSVOP(OP_CONST, 0, newSViv(PL_glob_index++)));
5584         o->op_type = OP_LIST;
5585         o->op_ppaddr = PL_ppaddr[OP_LIST];
5586         cLISTOPo->op_first->op_type = OP_PUSHMARK;
5587         cLISTOPo->op_first->op_ppaddr = PL_ppaddr[OP_PUSHMARK];
5588         cLISTOPo->op_first->op_targ = 0;
5589         o = newUNOP(OP_ENTERSUB, OPf_STACKED,
5590                     append_elem(OP_LIST, o,
5591                                 scalar(newUNOP(OP_RV2CV, 0,
5592                                                newGVOP(OP_GV, 0, gv)))));
5593         o = newUNOP(OP_NULL, 0, ck_subr(o));
5594         o->op_targ = OP_GLOB;           /* hint at what it used to be */
5595         return o;
5596     }
5597     gv = newGVgen("main");
5598     gv_IOadd(gv);
5599     append_elem(OP_GLOB, o, newGVOP(OP_GV, 0, gv));
5600     scalarkids(o);
5601     return o;
5602 }
5603
5604 OP *
5605 Perl_ck_grep(pTHX_ OP *o)
5606 {
5607     dVAR;
5608     LOGOP *gwop;
5609     OP *kid;
5610     const OPCODE type = o->op_type == OP_GREPSTART ? OP_GREPWHILE : OP_MAPWHILE;
5611     I32 offset;
5612
5613     o->op_ppaddr = PL_ppaddr[OP_GREPSTART];
5614     NewOp(1101, gwop, 1, LOGOP);
5615
5616     if (o->op_flags & OPf_STACKED) {
5617         OP* k;
5618         o = ck_sort(o);
5619         kid = cLISTOPo->op_first->op_sibling;
5620         if (!cUNOPx(kid)->op_next)
5621             Perl_croak(aTHX_ "panic: ck_grep");
5622         for (k = cUNOPx(kid)->op_first; k; k = k->op_next) {
5623             kid = k;
5624         }
5625         kid->op_next = (OP*)gwop;
5626         o->op_flags &= ~OPf_STACKED;
5627     }
5628     kid = cLISTOPo->op_first->op_sibling;
5629     if (type == OP_MAPWHILE)
5630         list(kid);
5631     else
5632         scalar(kid);
5633     o = ck_fun(o);
5634     if (PL_error_count)
5635         return o;
5636     kid = cLISTOPo->op_first->op_sibling;
5637     if (kid->op_type != OP_NULL)
5638         Perl_croak(aTHX_ "panic: ck_grep");
5639     kid = kUNOP->op_first;
5640
5641     gwop->op_type = type;
5642     gwop->op_ppaddr = PL_ppaddr[type];
5643     gwop->op_first = listkids(o);
5644     gwop->op_flags |= OPf_KIDS;
5645     gwop->op_other = LINKLIST(kid);
5646     kid->op_next = (OP*)gwop;
5647     offset = pad_findmy("$_");
5648     if (offset == NOT_IN_PAD || PAD_COMPNAME_FLAGS(offset) & SVpad_OUR) {
5649         o->op_private = gwop->op_private = 0;
5650         gwop->op_targ = pad_alloc(type, SVs_PADTMP);
5651     }
5652     else {
5653         o->op_private = gwop->op_private = OPpGREP_LEX;
5654         gwop->op_targ = o->op_targ = offset;
5655     }
5656
5657     kid = cLISTOPo->op_first->op_sibling;
5658     if (!kid || !kid->op_sibling)
5659         return too_few_arguments(o,OP_DESC(o));
5660     for (kid = kid->op_sibling; kid; kid = kid->op_sibling)
5661         mod(kid, OP_GREPSTART);
5662
5663     return (OP*)gwop;
5664 }
5665
5666 OP *
5667 Perl_ck_index(pTHX_ OP *o)
5668 {
5669     if (o->op_flags & OPf_KIDS) {
5670         OP *kid = cLISTOPo->op_first->op_sibling;       /* get past pushmark */
5671         if (kid)
5672             kid = kid->op_sibling;                      /* get past "big" */
5673         if (kid && kid->op_type == OP_CONST)
5674             fbm_compile(((SVOP*)kid)->op_sv, 0);
5675     }
5676     return ck_fun(o);
5677 }
5678
5679 OP *
5680 Perl_ck_lengthconst(pTHX_ OP *o)
5681 {
5682     /* XXX length optimization goes here */
5683     return ck_fun(o);
5684 }
5685
5686 OP *
5687 Perl_ck_lfun(pTHX_ OP *o)
5688 {
5689     const OPCODE type = o->op_type;
5690     return modkids(ck_fun(o), type);
5691 }
5692
5693 OP *
5694 Perl_ck_defined(pTHX_ OP *o)            /* 19990527 MJD */
5695 {
5696     if ((o->op_flags & OPf_KIDS) && ckWARN2(WARN_DEPRECATED, WARN_SYNTAX)) {
5697         switch (cUNOPo->op_first->op_type) {
5698         case OP_RV2AV:
5699             /* This is needed for
5700                if (defined %stash::)
5701                to work.   Do not break Tk.
5702                */
5703             break;                      /* Globals via GV can be undef */
5704         case OP_PADAV:
5705         case OP_AASSIGN:                /* Is this a good idea? */
5706             Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5707                         "defined(@array) is deprecated");
5708             Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5709                         "\t(Maybe you should just omit the defined()?)\n");
5710         break;
5711         case OP_RV2HV:
5712             /* This is needed for
5713                if (defined %stash::)
5714                to work.   Do not break Tk.
5715                */
5716             break;                      /* Globals via GV can be undef */
5717         case OP_PADHV:
5718             Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5719                         "defined(%%hash) is deprecated");
5720             Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
5721                         "\t(Maybe you should just omit the defined()?)\n");
5722             break;
5723         default:
5724             /* no warning */
5725             break;
5726         }
5727     }
5728     return ck_rfun(o);
5729 }
5730
5731 OP *
5732 Perl_ck_rfun(pTHX_ OP *o)
5733 {
5734     const OPCODE type = o->op_type;
5735     return refkids(ck_fun(o), type);
5736 }
5737
5738 OP *
5739 Perl_ck_listiob(pTHX_ OP *o)
5740 {
5741     register OP *kid;
5742
5743     kid = cLISTOPo->op_first;
5744     if (!kid) {
5745         o = force_list(o);
5746         kid = cLISTOPo->op_first;
5747     }
5748     if (kid->op_type == OP_PUSHMARK)
5749         kid = kid->op_sibling;
5750     if (kid && o->op_flags & OPf_STACKED)
5751         kid = kid->op_sibling;
5752     else if (kid && !kid->op_sibling) {         /* print HANDLE; */
5753         if (kid->op_type == OP_CONST && kid->op_private & OPpCONST_BARE) {
5754             o->op_flags |= OPf_STACKED; /* make it a filehandle */
5755             kid = newUNOP(OP_RV2GV, OPf_REF, scalar(kid));
5756             cLISTOPo->op_first->op_sibling = kid;
5757             cLISTOPo->op_last = kid;
5758             kid = kid->op_sibling;
5759         }
5760     }
5761
5762     if (!kid)
5763         append_elem(o->op_type, o, newDEFSVOP());
5764
5765     return listkids(o);
5766 }
5767
5768 OP *
5769 Perl_ck_sassign(pTHX_ OP *o)
5770 {
5771     OP *kid = cLISTOPo->op_first;
5772     /* has a disposable target? */
5773     if ((PL_opargs[kid->op_type] & OA_TARGLEX)
5774         && !(kid->op_flags & OPf_STACKED)
5775         /* Cannot steal the second time! */
5776         && !(kid->op_private & OPpTARGET_MY))
5777     {
5778         OP *kkid = kid->op_sibling;
5779
5780         /* Can just relocate the target. */
5781         if (kkid && kkid->op_type == OP_PADSV
5782             && !(kkid->op_private & OPpLVAL_INTRO))
5783         {
5784             kid->op_targ = kkid->op_targ;
5785             kkid->op_targ = 0;
5786             /* Now we do not need PADSV and SASSIGN. */
5787             kid->op_sibling = o->op_sibling;    /* NULL */
5788             cLISTOPo->op_first = NULL;
5789             op_free(o);
5790             op_free(kkid);
5791             kid->op_private |= OPpTARGET_MY;    /* Used for context settings */
5792             return kid;
5793         }
5794     }
5795     /* optimise C<my $x = undef> to C<my $x> */
5796     if (kid->op_type == OP_UNDEF) {
5797         OP *kkid = kid->op_sibling;
5798         if (kkid && kkid->op_type == OP_PADSV
5799                 && (kkid->op_private & OPpLVAL_INTRO))
5800         {
5801             cLISTOPo->op_first = NULL;
5802             kid->op_sibling = NULL;
5803             op_free(o);
5804             op_free(kid);
5805             return kkid;
5806         }
5807     }
5808     return o;
5809 }
5810
5811 OP *
5812 Perl_ck_match(pTHX_ OP *o)
5813 {
5814     if (o->op_type != OP_QR) {
5815         const I32 offset = pad_findmy("$_");
5816         if (offset != NOT_IN_PAD && !(PAD_COMPNAME_FLAGS(offset) & SVpad_OUR)) {
5817             o->op_targ = offset;
5818             o->op_private |= OPpTARGET_MY;
5819         }
5820     }
5821     if (o->op_type == OP_MATCH || o->op_type == OP_QR)
5822         o->op_private |= OPpRUNTIME;
5823     return o;
5824 }
5825
5826 OP *
5827 Perl_ck_method(pTHX_ OP *o)
5828 {
5829     OP *kid = cUNOPo->op_first;
5830     if (kid->op_type == OP_CONST) {
5831         SV* sv = kSVOP->op_sv;
5832         if (!(strchr(SvPVX_const(sv), ':') || strchr(SvPVX_const(sv), '\''))) {
5833             OP *cmop;
5834             if (!SvREADONLY(sv) || !SvFAKE(sv)) {
5835                 sv = newSVpvn_share(SvPVX_const(sv), SvCUR(sv), 0);
5836             }
5837             else {
5838                 kSVOP->op_sv = Nullsv;
5839             }
5840             cmop = newSVOP(OP_METHOD_NAMED, 0, sv);
5841             op_free(o);
5842             return cmop;
5843         }
5844     }
5845     return o;
5846 }
5847
5848 OP *
5849 Perl_ck_null(pTHX_ OP *o)
5850 {
5851     return o;
5852 }
5853
5854 OP *
5855 Perl_ck_open(pTHX_ OP *o)
5856 {
5857     HV *table = GvHV(PL_hintgv);
5858     if (table) {
5859         SV **svp;
5860         I32 mode;
5861         svp = hv_fetch(table, "open_IN", 7, FALSE);
5862         if (svp && *svp) {
5863             mode = mode_from_discipline(*svp);
5864             if (mode & O_BINARY)
5865                 o->op_private |= OPpOPEN_IN_RAW;
5866             else if (mode & O_TEXT)
5867                 o->op_private |= OPpOPEN_IN_CRLF;
5868         }
5869
5870         svp = hv_fetch(table, "open_OUT", 8, FALSE);
5871         if (svp && *svp) {
5872             mode = mode_from_discipline(*svp);
5873             if (mode & O_BINARY)
5874                 o->op_private |= OPpOPEN_OUT_RAW;
5875             else if (mode & O_TEXT)
5876                 o->op_private |= OPpOPEN_OUT_CRLF;
5877         }
5878     }
5879     if (o->op_type == OP_BACKTICK)
5880         return o;
5881     {
5882          /* In case of three-arg dup open remove strictness
5883           * from the last arg if it is a bareword. */
5884          OP *first = cLISTOPx(o)->op_first; /* The pushmark. */
5885          OP *last  = cLISTOPx(o)->op_last;  /* The bareword. */
5886          OP *oa;
5887          const char *mode;
5888
5889          if ((last->op_type == OP_CONST) &&             /* The bareword. */
5890              (last->op_private & OPpCONST_BARE) &&
5891              (last->op_private & OPpCONST_STRICT) &&
5892              (oa = first->op_sibling) &&                /* The fh. */
5893              (oa = oa->op_sibling) &&                   /* The mode. */
5894              SvPOK(((SVOP*)oa)->op_sv) &&
5895              (mode = SvPVX_const(((SVOP*)oa)->op_sv)) &&
5896              mode[0] == '>' && mode[1] == '&' &&        /* A dup open. */
5897              (last == oa->op_sibling))                  /* The bareword. */
5898               last->op_private &= ~OPpCONST_STRICT;
5899     }
5900     return ck_fun(o);
5901 }
5902
5903 OP *
5904 Perl_ck_repeat(pTHX_ OP *o)
5905 {
5906     if (cBINOPo->op_first->op_flags & OPf_PARENS) {
5907         o->op_private |= OPpREPEAT_DOLIST;
5908         cBINOPo->op_first = force_list(cBINOPo->op_first);
5909     }
5910     else
5911         scalar(o);
5912     return o;
5913 }
5914
5915 OP *
5916 Perl_ck_require(pTHX_ OP *o)
5917 {
5918     GV* gv;
5919
5920     if (o->op_flags & OPf_KIDS) {       /* Shall we supply missing .pm? */
5921         SVOP *kid = (SVOP*)cUNOPo->op_first;
5922
5923         if (kid->op_type == OP_CONST && (kid->op_private & OPpCONST_BARE)) {
5924             SV *sv = kid->op_sv;
5925             U32 was_readonly = SvREADONLY(sv);
5926             char *s;
5927
5928             if (was_readonly) {
5929                 if (SvFAKE(sv)) {
5930                     sv_force_normal_flags(sv, 0);
5931                     assert(!SvREADONLY(sv));
5932                     was_readonly = 0;
5933                 } else {
5934                     SvREADONLY_off(sv);
5935                 }
5936             }   
5937
5938             for (s = SvPVX(sv); *s; s++) {
5939                 if (*s == ':' && s[1] == ':') {
5940                     *s = '/';
5941                     Move(s+2, s+1, strlen(s+2)+1, char);
5942                     SvCUR_set(sv, SvCUR(sv) - 1);
5943                 }
5944             }
5945             sv_catpvn(sv, ".pm", 3);
5946             SvFLAGS(sv) |= was_readonly;
5947         }
5948     }
5949
5950     /* handle override, if any */
5951     gv = gv_fetchpv("require", FALSE, SVt_PVCV);
5952     if (!(gv && GvCVu(gv) && GvIMPORTED_CV(gv)))
5953         gv = gv_fetchpv("CORE::GLOBAL::require", FALSE, SVt_PVCV);
5954
5955     if (gv && GvCVu(gv) && GvIMPORTED_CV(gv)) {
5956         OP *kid = cUNOPo->op_first;
5957         cUNOPo->op_first = 0;
5958         op_free(o);
5959         return ck_subr(newUNOP(OP_ENTERSUB, OPf_STACKED,
5960                                append_elem(OP_LIST, kid,
5961                                            scalar(newUNOP(OP_RV2CV, 0,
5962                                                           newGVOP(OP_GV, 0,
5963                                                                   gv))))));
5964     }
5965
5966     return ck_fun(o);
5967 }
5968
5969 OP *
5970 Perl_ck_return(pTHX_ OP *o)
5971 {
5972     if (CvLVALUE(PL_compcv)) {
5973         OP *kid;
5974         for (kid = cLISTOPo->op_first->op_sibling; kid; kid = kid->op_sibling)
5975             mod(kid, OP_LEAVESUBLV);
5976     }
5977     return o;
5978 }
5979
5980 #if 0
5981 OP *
5982 Perl_ck_retarget(pTHX_ OP *o)
5983 {
5984     Perl_croak(aTHX_ "NOT IMPL LINE %d",__LINE__);
5985     /* STUB */
5986     return o;
5987 }
5988 #endif
5989
5990 OP *
5991 Perl_ck_select(pTHX_ OP *o)
5992 {
5993     dVAR;
5994     OP* kid;
5995     if (o->op_flags & OPf_KIDS) {
5996         kid = cLISTOPo->op_first->op_sibling;   /* get past pushmark */
5997         if (kid && kid->op_sibling) {
5998             o->op_type = OP_SSELECT;
5999             o->op_ppaddr = PL_ppaddr[OP_SSELECT];
6000             o = ck_fun(o);
6001             return fold_constants(o);
6002         }
6003     }
6004     o = ck_fun(o);
6005     kid = cLISTOPo->op_first->op_sibling;    /* get past pushmark */
6006     if (kid && kid->op_type == OP_RV2GV)
6007         kid->op_private &= ~HINT_STRICT_REFS;
6008     return o;
6009 }
6010
6011 OP *
6012 Perl_ck_shift(pTHX_ OP *o)
6013 {
6014     const I32 type = o->op_type;
6015
6016     if (!(o->op_flags & OPf_KIDS)) {
6017         OP *argop;
6018
6019         op_free(o);
6020         argop = newUNOP(OP_RV2AV, 0,
6021             scalar(newGVOP(OP_GV, 0, CvUNIQUE(PL_compcv) ? PL_argvgv : PL_defgv)));
6022         return newUNOP(type, 0, scalar(argop));
6023     }
6024     return scalar(modkids(ck_fun(o), type));
6025 }
6026
6027 OP *
6028 Perl_ck_sort(pTHX_ OP *o)
6029 {
6030     OP *firstkid;
6031
6032     if (o->op_type == OP_SORT && o->op_flags & OPf_STACKED)
6033         simplify_sort(o);
6034     firstkid = cLISTOPo->op_first->op_sibling;          /* get past pushmark */
6035     if (o->op_flags & OPf_STACKED) {                    /* may have been cleared */
6036         OP *k = NULL;
6037         OP *kid = cUNOPx(firstkid)->op_first;           /* get past null */
6038
6039         if (kid->op_type == OP_SCOPE || kid->op_type == OP_LEAVE) {
6040             linklist(kid);
6041             if (kid->op_type == OP_SCOPE) {
6042                 k = kid->op_next;
6043                 kid->op_next = 0;
6044             }
6045             else if (kid->op_type == OP_LEAVE) {
6046                 if (o->op_type == OP_SORT) {
6047                     op_null(kid);                       /* wipe out leave */
6048                     kid->op_next = kid;
6049
6050                     for (k = kLISTOP->op_first->op_next; k; k = k->op_next) {
6051                         if (k->op_next == kid)
6052                             k->op_next = 0;
6053                         /* don't descend into loops */
6054                         else if (k->op_type == OP_ENTERLOOP
6055                                  || k->op_type == OP_ENTERITER)
6056                         {
6057                             k = cLOOPx(k)->op_lastop;
6058                         }
6059                     }
6060                 }
6061                 else
6062                     kid->op_next = 0;           /* just disconnect the leave */
6063                 k = kLISTOP->op_first;
6064             }
6065             CALL_PEEP(k);
6066
6067             kid = firstkid;
6068             if (o->op_type == OP_SORT) {
6069                 /* provide scalar context for comparison function/block */
6070                 kid = scalar(kid);
6071                 kid->op_next = kid;
6072             }
6073             else
6074                 kid->op_next = k;
6075             o->op_flags |= OPf_SPECIAL;
6076         }
6077         else if (kid->op_type == OP_RV2SV || kid->op_type == OP_PADSV)
6078             op_null(firstkid);
6079
6080         firstkid = firstkid->op_sibling;
6081     }
6082
6083     /* provide list context for arguments */
6084     if (o->op_type == OP_SORT)
6085         list(firstkid);
6086
6087     return o;
6088 }
6089
6090 STATIC void
6091 S_simplify_sort(pTHX_ OP *o)
6092 {
6093     register OP *kid = cLISTOPo->op_first->op_sibling;  /* get past pushmark */
6094     OP *k;
6095     int descending;
6096     GV *gv;
6097     const char *gvname;
6098     if (!(o->op_flags & OPf_STACKED))
6099         return;
6100     GvMULTI_on(gv_fetchpv("a", TRUE, SVt_PV));
6101     GvMULTI_on(gv_fetchpv("b", TRUE, SVt_PV));
6102     kid = kUNOP->op_first;                              /* get past null */
6103     if (kid->op_type != OP_SCOPE)
6104         return;
6105     kid = kLISTOP->op_last;                             /* get past scope */
6106     switch(kid->op_type) {
6107         case OP_NCMP:
6108         case OP_I_NCMP:
6109         case OP_SCMP:
6110             break;
6111         default:
6112             return;
6113     }
6114     k = kid;                                            /* remember this node*/
6115     if (kBINOP->op_first->op_type != OP_RV2SV)
6116         return;
6117     kid = kBINOP->op_first;                             /* get past cmp */
6118     if (kUNOP->op_first->op_type != OP_GV)
6119         return;
6120     kid = kUNOP->op_first;                              /* get past rv2sv */
6121     gv = kGVOP_gv;
6122     if (GvSTASH(gv) != PL_curstash)
6123         return;
6124     gvname = GvNAME(gv);
6125     if (*gvname == 'a' && gvname[1] == '\0')
6126         descending = 0;
6127     else if (*gvname == 'b' && gvname[1] == '\0')
6128         descending = 1;
6129     else
6130         return;
6131
6132     kid = k;                                            /* back to cmp */
6133     if (kBINOP->op_last->op_type != OP_RV2SV)
6134         return;
6135     kid = kBINOP->op_last;                              /* down to 2nd arg */
6136     if (kUNOP->op_first->op_type != OP_GV)
6137         return;
6138     kid = kUNOP->op_first;                              /* get past rv2sv */
6139     gv = kGVOP_gv;
6140     if (GvSTASH(gv) != PL_curstash)
6141         return;
6142     gvname = GvNAME(gv);
6143     if ( descending
6144          ? !(*gvname == 'a' && gvname[1] == '\0')
6145          : !(*gvname == 'b' && gvname[1] == '\0'))
6146         return;
6147     o->op_flags &= ~(OPf_STACKED | OPf_SPECIAL);
6148     if (descending)
6149         o->op_private |= OPpSORT_DESCEND;
6150     if (k->op_type == OP_NCMP)
6151         o->op_private |= OPpSORT_NUMERIC;
6152     if (k->op_type == OP_I_NCMP)
6153         o->op_private |= OPpSORT_NUMERIC | OPpSORT_INTEGER;
6154     kid = cLISTOPo->op_first->op_sibling;
6155     cLISTOPo->op_first->op_sibling = kid->op_sibling; /* bypass old block */
6156     op_free(kid);                                     /* then delete it */
6157 }
6158
6159 OP *
6160 Perl_ck_split(pTHX_ OP *o)
6161 {
6162     dVAR;
6163     register OP *kid;
6164
6165     if (o->op_flags & OPf_STACKED)
6166         return no_fh_allowed(o);
6167
6168     kid = cLISTOPo->op_first;
6169     if (kid->op_type != OP_NULL)
6170         Perl_croak(aTHX_ "panic: ck_split");
6171     kid = kid->op_sibling;
6172     op_free(cLISTOPo->op_first);
6173     cLISTOPo->op_first = kid;
6174     if (!kid) {
6175         cLISTOPo->op_first = kid = newSVOP(OP_CONST, 0, newSVpvn(" ", 1));
6176         cLISTOPo->op_last = kid; /* There was only one element previously */
6177     }
6178
6179     if (kid->op_type != OP_MATCH || kid->op_flags & OPf_STACKED) {
6180         OP *sibl = kid->op_sibling;
6181         kid->op_sibling = 0;
6182         kid = pmruntime( newPMOP(OP_MATCH, OPf_SPECIAL), kid, 0);
6183         if (cLISTOPo->op_first == cLISTOPo->op_last)
6184             cLISTOPo->op_last = kid;
6185         cLISTOPo->op_first = kid;
6186         kid->op_sibling = sibl;
6187     }
6188
6189     kid->op_type = OP_PUSHRE;
6190     kid->op_ppaddr = PL_ppaddr[OP_PUSHRE];
6191     scalar(kid);
6192     if (((PMOP *)kid)->op_pmflags & PMf_GLOBAL && ckWARN(WARN_REGEXP)) {
6193       Perl_warner(aTHX_ packWARN(WARN_REGEXP),
6194                   "Use of /g modifier is meaningless in split");
6195     }
6196
6197     if (!kid->op_sibling)
6198         append_elem(OP_SPLIT, o, newDEFSVOP());
6199
6200     kid = kid->op_sibling;
6201     scalar(kid);
6202
6203     if (!kid->op_sibling)
6204         append_elem(OP_SPLIT, o, newSVOP(OP_CONST, 0, newSViv(0)));
6205
6206     kid = kid->op_sibling;
6207     scalar(kid);
6208
6209     if (kid->op_sibling)
6210         return too_many_arguments(o,OP_DESC(o));
6211
6212     return o;
6213 }
6214
6215 OP *
6216 Perl_ck_join(pTHX_ OP *o)
6217 {
6218     const OP *kid = cLISTOPo->op_first->op_sibling;
6219     if (kid && kid->op_type == OP_MATCH) {
6220         if (ckWARN(WARN_SYNTAX)) {
6221             const REGEXP *re = PM_GETRE(kPMOP);
6222             const char *pmstr = re ? re->precomp : "STRING";
6223             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6224                         "/%s/ should probably be written as \"%s\"",
6225                         pmstr, pmstr);
6226         }
6227     }
6228     return ck_fun(o);
6229 }
6230
6231 OP *
6232 Perl_ck_subr(pTHX_ OP *o)
6233 {
6234     OP *prev = ((cUNOPo->op_first->op_sibling)
6235              ? cUNOPo : ((UNOP*)cUNOPo->op_first))->op_first;
6236     OP *o2 = prev->op_sibling;
6237     OP *cvop;
6238     char *proto = 0;
6239     CV *cv = 0;
6240     GV *namegv = 0;
6241     int optional = 0;
6242     I32 arg = 0;
6243     I32 contextclass = 0;
6244     char *e = 0;
6245     bool delete_op = 0;
6246
6247     o->op_private |= OPpENTERSUB_HASTARG;
6248     for (cvop = o2; cvop->op_sibling; cvop = cvop->op_sibling) ;
6249     if (cvop->op_type == OP_RV2CV) {
6250         SVOP* tmpop;
6251         o->op_private |= (cvop->op_private & OPpENTERSUB_AMPER);
6252         op_null(cvop);          /* disable rv2cv */
6253         tmpop = (SVOP*)((UNOP*)cvop)->op_first;
6254         if (tmpop->op_type == OP_GV && !(o->op_private & OPpENTERSUB_AMPER)) {
6255             GV *gv = cGVOPx_gv(tmpop);
6256             cv = GvCVu(gv);
6257             if (!cv)
6258                 tmpop->op_private |= OPpEARLY_CV;
6259             else {
6260                 if (SvPOK(cv)) {
6261                     namegv = CvANON(cv) ? gv : CvGV(cv);
6262                     proto = SvPV_nolen((SV*)cv);
6263                 }
6264                 if (CvASSERTION(cv)) {
6265                     if (PL_hints & HINT_ASSERTING) {
6266                         if (PERLDB_ASSERTION && PL_curstash != PL_debstash)
6267                             o->op_private |= OPpENTERSUB_DB;
6268                     }
6269                     else {
6270                         delete_op = 1;
6271                         if (!(PL_hints & HINT_ASSERTIONSSEEN) && ckWARN(WARN_ASSERTIONS)) {
6272                             Perl_warner(aTHX_ packWARN(WARN_ASSERTIONS),
6273                                         "Impossible to activate assertion call");
6274                         }
6275                     }
6276                 }
6277             }
6278         }
6279     }
6280     else if (cvop->op_type == OP_METHOD || cvop->op_type == OP_METHOD_NAMED) {
6281         if (o2->op_type == OP_CONST)
6282             o2->op_private &= ~OPpCONST_STRICT;
6283         else if (o2->op_type == OP_LIST) {
6284             OP *o = ((UNOP*)o2)->op_first->op_sibling;
6285             if (o && o->op_type == OP_CONST)
6286                 o->op_private &= ~OPpCONST_STRICT;
6287         }
6288     }
6289     o->op_private |= (PL_hints & HINT_STRICT_REFS);
6290     if (PERLDB_SUB && PL_curstash != PL_debstash)
6291         o->op_private |= OPpENTERSUB_DB;
6292     while (o2 != cvop) {
6293         if (proto) {
6294             switch (*proto) {
6295             case '\0':
6296                 return too_many_arguments(o, gv_ename(namegv));
6297             case ';':
6298                 optional = 1;
6299                 proto++;
6300                 continue;
6301             case '$':
6302                 proto++;
6303                 arg++;
6304                 scalar(o2);
6305                 break;
6306             case '%':
6307             case '@':
6308                 list(o2);
6309                 arg++;
6310                 break;
6311             case '&':
6312                 proto++;
6313                 arg++;
6314                 if (o2->op_type != OP_REFGEN && o2->op_type != OP_UNDEF)
6315                     bad_type(arg,
6316                         arg == 1 ? "block or sub {}" : "sub {}",
6317                         gv_ename(namegv), o2);
6318                 break;
6319             case '*':
6320                 /* '*' allows any scalar type, including bareword */
6321                 proto++;
6322                 arg++;
6323                 if (o2->op_type == OP_RV2GV)
6324                     goto wrapref;       /* autoconvert GLOB -> GLOBref */
6325                 else if (o2->op_type == OP_CONST)
6326                     o2->op_private &= ~OPpCONST_STRICT;
6327                 else if (o2->op_type == OP_ENTERSUB) {
6328                     /* accidental subroutine, revert to bareword */
6329                     OP *gvop = ((UNOP*)o2)->op_first;
6330                     if (gvop && gvop->op_type == OP_NULL) {
6331                         gvop = ((UNOP*)gvop)->op_first;
6332                         if (gvop) {
6333                             for (; gvop->op_sibling; gvop = gvop->op_sibling)
6334                                 ;
6335                             if (gvop &&
6336                                 (gvop->op_private & OPpENTERSUB_NOPAREN) &&
6337                                 (gvop = ((UNOP*)gvop)->op_first) &&
6338                                 gvop->op_type == OP_GV)
6339                             {
6340                                 GV *gv = cGVOPx_gv(gvop);
6341                                 OP *sibling = o2->op_sibling;
6342                                 SV *n = newSVpvn("",0);
6343                                 op_free(o2);
6344                                 gv_fullname4(n, gv, "", FALSE);
6345                                 o2 = newSVOP(OP_CONST, 0, n);
6346                                 prev->op_sibling = o2;
6347                                 o2->op_sibling = sibling;
6348                             }
6349                         }
6350                     }
6351                 }
6352                 scalar(o2);
6353                 break;
6354             case '[': case ']':
6355                  goto oops;
6356                  break;
6357             case '\\':
6358                 proto++;
6359                 arg++;
6360             again:
6361                 switch (*proto++) {
6362                 case '[':
6363                      if (contextclass++ == 0) {
6364                           e = strchr(proto, ']');
6365                           if (!e || e == proto)
6366                                goto oops;
6367                      }
6368                      else
6369                           goto oops;
6370                      goto again;
6371                      break;
6372                 case ']':
6373                      if (contextclass) {
6374                          char *p = proto;
6375                          const char s = *p;
6376                          contextclass = 0;
6377                          *p = '\0';
6378                          while (*--p != '[');
6379                          bad_type(arg, Perl_form(aTHX_ "one of %s", p),
6380                                  gv_ename(namegv), o2);
6381                          *proto = s;
6382                      } else
6383                           goto oops;
6384                      break;
6385                 case '*':
6386                      if (o2->op_type == OP_RV2GV)
6387                           goto wrapref;
6388                      if (!contextclass)
6389                           bad_type(arg, "symbol", gv_ename(namegv), o2);
6390                      break;
6391                 case '&':
6392                      if (o2->op_type == OP_ENTERSUB)
6393                           goto wrapref;
6394                      if (!contextclass)
6395                           bad_type(arg, "subroutine entry", gv_ename(namegv), o2);
6396                      break;
6397                 case '$':
6398                     if (o2->op_type == OP_RV2SV ||
6399                         o2->op_type == OP_PADSV ||
6400                         o2->op_type == OP_HELEM ||
6401                         o2->op_type == OP_AELEM ||
6402                         o2->op_type == OP_THREADSV)
6403                          goto wrapref;
6404                     if (!contextclass)
6405                         bad_type(arg, "scalar", gv_ename(namegv), o2);
6406                      break;
6407                 case '@':
6408                     if (o2->op_type == OP_RV2AV ||
6409                         o2->op_type == OP_PADAV)
6410                          goto wrapref;
6411                     if (!contextclass)
6412                         bad_type(arg, "array", gv_ename(namegv), o2);
6413                     break;
6414                 case '%':
6415                     if (o2->op_type == OP_RV2HV ||
6416                         o2->op_type == OP_PADHV)
6417                          goto wrapref;
6418                     if (!contextclass)
6419                          bad_type(arg, "hash", gv_ename(namegv), o2);
6420                     break;
6421                 wrapref:
6422                     {
6423                         OP* kid = o2;
6424                         OP* sib = kid->op_sibling;
6425                         kid->op_sibling = 0;
6426                         o2 = newUNOP(OP_REFGEN, 0, kid);
6427                         o2->op_sibling = sib;
6428                         prev->op_sibling = o2;
6429                     }
6430                     if (contextclass && e) {
6431                          proto = e + 1;
6432                          contextclass = 0;
6433                     }
6434                     break;
6435                 default: goto oops;
6436                 }
6437                 if (contextclass)
6438                      goto again;
6439                 break;
6440             case ' ':
6441                 proto++;
6442                 continue;
6443             default:
6444               oops:
6445                 Perl_croak(aTHX_ "Malformed prototype for %s: %"SVf,
6446                            gv_ename(namegv), cv);
6447             }
6448         }
6449         else
6450             list(o2);
6451         mod(o2, OP_ENTERSUB);
6452         prev = o2;
6453         o2 = o2->op_sibling;
6454     }
6455     if (proto && !optional &&
6456           (*proto && *proto != '@' && *proto != '%' && *proto != ';'))
6457         return too_few_arguments(o, gv_ename(namegv));
6458     if(delete_op) {
6459         op_free(o);
6460         o=newSVOP(OP_CONST, 0, newSViv(0));
6461     }
6462     return o;
6463 }
6464
6465 OP *
6466 Perl_ck_svconst(pTHX_ OP *o)
6467 {
6468     SvREADONLY_on(cSVOPo->op_sv);
6469     return o;
6470 }
6471
6472 OP *
6473 Perl_ck_trunc(pTHX_ OP *o)
6474 {
6475     if (o->op_flags & OPf_KIDS) {
6476         SVOP *kid = (SVOP*)cUNOPo->op_first;
6477
6478         if (kid->op_type == OP_NULL)
6479             kid = (SVOP*)kid->op_sibling;
6480         if (kid && kid->op_type == OP_CONST &&
6481             (kid->op_private & OPpCONST_BARE))
6482         {
6483             o->op_flags |= OPf_SPECIAL;
6484             kid->op_private &= ~OPpCONST_STRICT;
6485         }
6486     }
6487     return ck_fun(o);
6488 }
6489
6490 OP *
6491 Perl_ck_unpack(pTHX_ OP *o)
6492 {
6493     OP *kid = cLISTOPo->op_first;
6494     if (kid->op_sibling) {
6495         kid = kid->op_sibling;
6496         if (!kid->op_sibling)
6497             kid->op_sibling = newDEFSVOP();
6498     }
6499     return ck_fun(o);
6500 }
6501
6502 OP *
6503 Perl_ck_substr(pTHX_ OP *o)
6504 {
6505     o = ck_fun(o);
6506     if ((o->op_flags & OPf_KIDS) && o->op_private == 4) {
6507         OP *kid = cLISTOPo->op_first;
6508
6509         if (kid->op_type == OP_NULL)
6510             kid = kid->op_sibling;
6511         if (kid)
6512             kid->op_flags |= OPf_MOD;
6513
6514     }
6515     return o;
6516 }
6517
6518 /* A peephole optimizer.  We visit the ops in the order they're to execute.
6519  * See the comments at the top of this file for more details about when
6520  * peep() is called */
6521
6522 void
6523 Perl_peep(pTHX_ register OP *o)
6524 {
6525     dVAR;
6526     register OP* oldop = 0;
6527
6528     if (!o || o->op_opt)
6529         return;
6530     ENTER;
6531     SAVEOP();
6532     SAVEVPTR(PL_curcop);
6533     for (; o; o = o->op_next) {
6534         if (o->op_opt)
6535             break;
6536         PL_op = o;
6537         switch (o->op_type) {
6538         case OP_SETSTATE:
6539         case OP_NEXTSTATE:
6540         case OP_DBSTATE:
6541             PL_curcop = ((COP*)o);              /* for warnings */
6542             o->op_opt = 1;
6543             break;
6544
6545         case OP_CONST:
6546             if (cSVOPo->op_private & OPpCONST_STRICT)
6547                 no_bareword_allowed(o);
6548 #ifdef USE_ITHREADS
6549         case OP_METHOD_NAMED:
6550             /* Relocate sv to the pad for thread safety.
6551              * Despite being a "constant", the SV is written to,
6552              * for reference counts, sv_upgrade() etc. */
6553             if (cSVOP->op_sv) {
6554                 const PADOFFSET ix = pad_alloc(OP_CONST, SVs_PADTMP);
6555                 if (o->op_type == OP_CONST && SvPADTMP(cSVOPo->op_sv)) {
6556                     /* If op_sv is already a PADTMP then it is being used by
6557                      * some pad, so make a copy. */
6558                     sv_setsv(PAD_SVl(ix),cSVOPo->op_sv);
6559                     SvREADONLY_on(PAD_SVl(ix));
6560                     SvREFCNT_dec(cSVOPo->op_sv);
6561                 }
6562                 else {
6563                     SvREFCNT_dec(PAD_SVl(ix));
6564                     SvPADTMP_on(cSVOPo->op_sv);
6565                     PAD_SETSV(ix, cSVOPo->op_sv);
6566                     /* XXX I don't know how this isn't readonly already. */
6567                     SvREADONLY_on(PAD_SVl(ix));
6568                 }
6569                 cSVOPo->op_sv = Nullsv;
6570                 o->op_targ = ix;
6571             }
6572 #endif
6573             o->op_opt = 1;
6574             break;
6575
6576         case OP_CONCAT:
6577             if (o->op_next && o->op_next->op_type == OP_STRINGIFY) {
6578                 if (o->op_next->op_private & OPpTARGET_MY) {
6579                     if (o->op_flags & OPf_STACKED) /* chained concats */
6580                         goto ignore_optimization;
6581                     else {
6582                         /* assert(PL_opargs[o->op_type] & OA_TARGLEX); */
6583                         o->op_targ = o->op_next->op_targ;
6584                         o->op_next->op_targ = 0;
6585                         o->op_private |= OPpTARGET_MY;
6586                     }
6587                 }
6588                 op_null(o->op_next);
6589             }
6590           ignore_optimization:
6591             o->op_opt = 1;
6592             break;
6593         case OP_STUB:
6594             if ((o->op_flags & OPf_WANT) != OPf_WANT_LIST) {
6595                 o->op_opt = 1;
6596                 break; /* Scalar stub must produce undef.  List stub is noop */
6597             }
6598             goto nothin;
6599         case OP_NULL:
6600             if (o->op_targ == OP_NEXTSTATE
6601                 || o->op_targ == OP_DBSTATE
6602                 || o->op_targ == OP_SETSTATE)
6603             {
6604                 PL_curcop = ((COP*)o);
6605             }
6606             /* XXX: We avoid setting op_seq here to prevent later calls
6607                to peep() from mistakenly concluding that optimisation
6608                has already occurred. This doesn't fix the real problem,
6609                though (See 20010220.007). AMS 20010719 */
6610             /* op_seq functionality is now replaced by op_opt */
6611             if (oldop && o->op_next) {
6612                 oldop->op_next = o->op_next;
6613                 continue;
6614             }
6615             break;
6616         case OP_SCALAR:
6617         case OP_LINESEQ:
6618         case OP_SCOPE:
6619           nothin:
6620             if (oldop && o->op_next) {
6621                 oldop->op_next = o->op_next;
6622                 continue;
6623             }
6624             o->op_opt = 1;
6625             break;
6626
6627         case OP_PADAV:
6628         case OP_GV:
6629             if (o->op_type == OP_PADAV || o->op_next->op_type == OP_RV2AV) {
6630                 OP* pop = (o->op_type == OP_PADAV) ?
6631                             o->op_next : o->op_next->op_next;
6632                 IV i;
6633                 if (pop && pop->op_type == OP_CONST &&
6634                     ((PL_op = pop->op_next)) &&
6635                     pop->op_next->op_type == OP_AELEM &&
6636                     !(pop->op_next->op_private &
6637                       (OPpLVAL_INTRO|OPpLVAL_DEFER|OPpDEREF|OPpMAYBE_LVSUB)) &&
6638                     (i = SvIV(((SVOP*)pop)->op_sv) - PL_curcop->cop_arybase)
6639                                 <= 255 &&
6640                     i >= 0)
6641                 {
6642                     GV *gv;
6643                     if (cSVOPx(pop)->op_private & OPpCONST_STRICT)
6644                         no_bareword_allowed(pop);
6645                     if (o->op_type == OP_GV)
6646                         op_null(o->op_next);
6647                     op_null(pop->op_next);
6648                     op_null(pop);
6649                     o->op_flags |= pop->op_next->op_flags & OPf_MOD;
6650                     o->op_next = pop->op_next->op_next;
6651                     o->op_ppaddr = PL_ppaddr[OP_AELEMFAST];
6652                     o->op_private = (U8)i;
6653                     if (o->op_type == OP_GV) {
6654                         gv = cGVOPo_gv;
6655                         GvAVn(gv);
6656                     }
6657                     else
6658                         o->op_flags |= OPf_SPECIAL;
6659                     o->op_type = OP_AELEMFAST;
6660                 }
6661                 o->op_opt = 1;
6662                 break;
6663             }
6664
6665             if (o->op_next->op_type == OP_RV2SV) {
6666                 if (!(o->op_next->op_private & OPpDEREF)) {
6667                     op_null(o->op_next);
6668                     o->op_private |= o->op_next->op_private & (OPpLVAL_INTRO
6669                                                                | OPpOUR_INTRO);
6670                     o->op_next = o->op_next->op_next;
6671                     o->op_type = OP_GVSV;
6672                     o->op_ppaddr = PL_ppaddr[OP_GVSV];
6673                 }
6674             }
6675             else if ((o->op_private & OPpEARLY_CV) && ckWARN(WARN_PROTOTYPE)) {
6676                 GV *gv = cGVOPo_gv;
6677                 if (SvTYPE(gv) == SVt_PVGV && GvCV(gv) && SvPVX_const(GvCV(gv))) {
6678                     /* XXX could check prototype here instead of just carping */
6679                     SV *sv = sv_newmortal();
6680                     gv_efullname3(sv, gv, Nullch);
6681                     Perl_warner(aTHX_ packWARN(WARN_PROTOTYPE),
6682                                 "%"SVf"() called too early to check prototype",
6683                                 sv);
6684                 }
6685             }
6686             else if (o->op_next->op_type == OP_READLINE
6687                     && o->op_next->op_next->op_type == OP_CONCAT
6688                     && (o->op_next->op_next->op_flags & OPf_STACKED))
6689             {
6690                 /* Turn "$a .= <FH>" into an OP_RCATLINE. AMS 20010917 */
6691                 o->op_type   = OP_RCATLINE;
6692                 o->op_flags |= OPf_STACKED;
6693                 o->op_ppaddr = PL_ppaddr[OP_RCATLINE];
6694                 op_null(o->op_next->op_next);
6695                 op_null(o->op_next);
6696             }
6697
6698             o->op_opt = 1;
6699             break;
6700
6701         case OP_MAPWHILE:
6702         case OP_GREPWHILE:
6703         case OP_AND:
6704         case OP_OR:
6705         case OP_DOR:
6706         case OP_ANDASSIGN:
6707         case OP_ORASSIGN:
6708         case OP_DORASSIGN:
6709         case OP_COND_EXPR:
6710         case OP_RANGE:
6711             o->op_opt = 1;
6712             while (cLOGOP->op_other->op_type == OP_NULL)
6713                 cLOGOP->op_other = cLOGOP->op_other->op_next;
6714             peep(cLOGOP->op_other); /* Recursive calls are not replaced by fptr calls */
6715             break;
6716
6717         case OP_ENTERLOOP:
6718         case OP_ENTERITER:
6719             o->op_opt = 1;
6720             while (cLOOP->op_redoop->op_type == OP_NULL)
6721                 cLOOP->op_redoop = cLOOP->op_redoop->op_next;
6722             peep(cLOOP->op_redoop);
6723             while (cLOOP->op_nextop->op_type == OP_NULL)
6724                 cLOOP->op_nextop = cLOOP->op_nextop->op_next;
6725             peep(cLOOP->op_nextop);
6726             while (cLOOP->op_lastop->op_type == OP_NULL)
6727                 cLOOP->op_lastop = cLOOP->op_lastop->op_next;
6728             peep(cLOOP->op_lastop);
6729             break;
6730
6731         case OP_QR:
6732         case OP_MATCH:
6733         case OP_SUBST:
6734             o->op_opt = 1;
6735             while (cPMOP->op_pmreplstart &&
6736                    cPMOP->op_pmreplstart->op_type == OP_NULL)
6737                 cPMOP->op_pmreplstart = cPMOP->op_pmreplstart->op_next;
6738             peep(cPMOP->op_pmreplstart);
6739             break;
6740
6741         case OP_EXEC:
6742             o->op_opt = 1;
6743             if (o->op_next && o->op_next->op_type == OP_NEXTSTATE
6744                 && ckWARN(WARN_SYNTAX))
6745             {
6746                 if (o->op_next->op_sibling &&
6747                         o->op_next->op_sibling->op_type != OP_EXIT &&
6748                         o->op_next->op_sibling->op_type != OP_WARN &&
6749                         o->op_next->op_sibling->op_type != OP_DIE) {
6750                     const line_t oldline = CopLINE(PL_curcop);
6751
6752                     CopLINE_set(PL_curcop, CopLINE((COP*)o->op_next));
6753                     Perl_warner(aTHX_ packWARN(WARN_EXEC),
6754                                 "Statement unlikely to be reached");
6755                     Perl_warner(aTHX_ packWARN(WARN_EXEC),
6756                                 "\t(Maybe you meant system() when you said exec()?)\n");
6757                     CopLINE_set(PL_curcop, oldline);
6758                 }
6759             }
6760             break;
6761
6762         case OP_HELEM: {
6763             UNOP *rop;
6764             SV *lexname;
6765             GV **fields;
6766             SV **svp, *sv;
6767             const char *key = NULL;
6768             STRLEN keylen;
6769
6770             o->op_opt = 1;
6771
6772             if (((BINOP*)o)->op_last->op_type != OP_CONST)
6773                 break;
6774
6775             /* Make the CONST have a shared SV */
6776             svp = cSVOPx_svp(((BINOP*)o)->op_last);
6777             if ((!SvFAKE(sv = *svp) || !SvREADONLY(sv)) && !IS_PADCONST(sv)) {
6778                 key = SvPV_const(sv, keylen);
6779                 lexname = newSVpvn_share(key,
6780                                          SvUTF8(sv) ? -(I32)keylen : keylen,
6781                                          0);
6782                 SvREFCNT_dec(sv);
6783                 *svp = lexname;
6784             }
6785
6786             if ((o->op_private & (OPpLVAL_INTRO)))
6787                 break;
6788
6789             rop = (UNOP*)((BINOP*)o)->op_first;
6790             if (rop->op_type != OP_RV2HV || rop->op_first->op_type != OP_PADSV)
6791                 break;
6792             lexname = *av_fetch(PL_comppad_name, rop->op_first->op_targ, TRUE);
6793             if (!(SvFLAGS(lexname) & SVpad_TYPED))
6794                 break;
6795             fields = (GV**)hv_fetch(SvSTASH(lexname), "FIELDS", 6, FALSE);
6796             if (!fields || !GvHV(*fields))
6797                 break;
6798             key = SvPV_const(*svp, keylen);
6799             if (!hv_fetch(GvHV(*fields), key,
6800                         SvUTF8(*svp) ? -(I32)keylen : keylen, FALSE))
6801             {
6802                 Perl_croak(aTHX_ "No such class field \"%s\" " 
6803                            "in variable %s of type %s", 
6804                       key, SvPV_nolen_const(lexname), HvNAME_get(SvSTASH(lexname)));
6805             }
6806
6807             break;
6808         }
6809
6810         case OP_HSLICE: {
6811             UNOP *rop;
6812             SV *lexname;
6813             GV **fields;
6814             SV **svp;
6815             const char *key;
6816             STRLEN keylen;
6817             SVOP *first_key_op, *key_op;
6818
6819             if ((o->op_private & (OPpLVAL_INTRO))
6820                 /* I bet there's always a pushmark... */
6821                 || ((LISTOP*)o)->op_first->op_sibling->op_type != OP_LIST)
6822                 /* hmmm, no optimization if list contains only one key. */
6823                 break;
6824             rop = (UNOP*)((LISTOP*)o)->op_last;
6825             if (rop->op_type != OP_RV2HV)
6826                 break;
6827             if (rop->op_first->op_type == OP_PADSV)
6828                 /* @$hash{qw(keys here)} */
6829                 rop = (UNOP*)rop->op_first;
6830             else {
6831                 /* @{$hash}{qw(keys here)} */
6832                 if (rop->op_first->op_type == OP_SCOPE 
6833                     && cLISTOPx(rop->op_first)->op_last->op_type == OP_PADSV)
6834                 {
6835                     rop = (UNOP*)cLISTOPx(rop->op_first)->op_last;
6836                 }
6837                 else
6838                     break;
6839             }
6840                     
6841             lexname = *av_fetch(PL_comppad_name, rop->op_targ, TRUE);
6842             if (!(SvFLAGS(lexname) & SVpad_TYPED))
6843                 break;
6844             fields = (GV**)hv_fetch(SvSTASH(lexname), "FIELDS", 6, FALSE);
6845             if (!fields || !GvHV(*fields))
6846                 break;
6847             /* Again guessing that the pushmark can be jumped over.... */
6848             first_key_op = (SVOP*)((LISTOP*)((LISTOP*)o)->op_first->op_sibling)
6849                 ->op_first->op_sibling;
6850             for (key_op = first_key_op; key_op;
6851                  key_op = (SVOP*)key_op->op_sibling) {
6852                 if (key_op->op_type != OP_CONST)
6853                     continue;
6854                 svp = cSVOPx_svp(key_op);
6855                 key = SvPV_const(*svp, keylen);
6856                 if (!hv_fetch(GvHV(*fields), key, 
6857                             SvUTF8(*svp) ? -(I32)keylen : keylen, FALSE))
6858                 {
6859                     Perl_croak(aTHX_ "No such class field \"%s\" "
6860                                "in variable %s of type %s",
6861                           key, SvPV_nolen(lexname), HvNAME_get(SvSTASH(lexname)));
6862                 }
6863             }
6864             break;
6865         }
6866
6867         case OP_SORT: {
6868             /* will point to RV2AV or PADAV op on LHS/RHS of assign */
6869             OP *oleft, *oright;
6870             OP *o2;
6871
6872             /* check that RHS of sort is a single plain array */
6873             oright = cUNOPo->op_first;
6874             if (!oright || oright->op_type != OP_PUSHMARK)
6875                 break;
6876
6877             /* reverse sort ... can be optimised.  */
6878             if (!cUNOPo->op_sibling) {
6879                 /* Nothing follows us on the list. */
6880                 OP *reverse = o->op_next;
6881
6882                 if (reverse->op_type == OP_REVERSE &&
6883                     (reverse->op_flags & OPf_WANT) == OPf_WANT_LIST) {
6884                     OP *pushmark = cUNOPx(reverse)->op_first;
6885                     if (pushmark && (pushmark->op_type == OP_PUSHMARK)
6886                         && (cUNOPx(pushmark)->op_sibling == o)) {
6887                         /* reverse -> pushmark -> sort */
6888                         o->op_private |= OPpSORT_REVERSE;
6889                         op_null(reverse);
6890                         pushmark->op_next = oright->op_next;
6891                         op_null(oright);
6892                     }
6893                 }
6894             }
6895
6896             /* make @a = sort @a act in-place */
6897
6898             o->op_opt = 1;
6899
6900             oright = cUNOPx(oright)->op_sibling;
6901             if (!oright)
6902                 break;
6903             if (oright->op_type == OP_NULL) { /* skip sort block/sub */
6904                 oright = cUNOPx(oright)->op_sibling;
6905             }
6906
6907             if (!oright ||
6908                 (oright->op_type != OP_RV2AV && oright->op_type != OP_PADAV)
6909                 || oright->op_next != o
6910                 || (oright->op_private & OPpLVAL_INTRO)
6911             )
6912                 break;
6913
6914             /* o2 follows the chain of op_nexts through the LHS of the
6915              * assign (if any) to the aassign op itself */
6916             o2 = o->op_next;
6917             if (!o2 || o2->op_type != OP_NULL)
6918                 break;
6919             o2 = o2->op_next;
6920             if (!o2 || o2->op_type != OP_PUSHMARK)
6921                 break;
6922             o2 = o2->op_next;
6923             if (o2 && o2->op_type == OP_GV)
6924                 o2 = o2->op_next;
6925             if (!o2
6926                 || (o2->op_type != OP_PADAV && o2->op_type != OP_RV2AV)
6927                 || (o2->op_private & OPpLVAL_INTRO)
6928             )
6929                 break;
6930             oleft = o2;
6931             o2 = o2->op_next;
6932             if (!o2 || o2->op_type != OP_NULL)
6933                 break;
6934             o2 = o2->op_next;
6935             if (!o2 || o2->op_type != OP_AASSIGN
6936                     || (o2->op_flags & OPf_WANT) != OPf_WANT_VOID)
6937                 break;
6938
6939             /* check that the sort is the first arg on RHS of assign */
6940
6941             o2 = cUNOPx(o2)->op_first;
6942             if (!o2 || o2->op_type != OP_NULL)
6943                 break;
6944             o2 = cUNOPx(o2)->op_first;
6945             if (!o2 || o2->op_type != OP_PUSHMARK)
6946                 break;
6947             if (o2->op_sibling != o)
6948                 break;
6949
6950             /* check the array is the same on both sides */
6951             if (oleft->op_type == OP_RV2AV) {
6952                 if (oright->op_type != OP_RV2AV
6953                     || !cUNOPx(oright)->op_first
6954                     || cUNOPx(oright)->op_first->op_type != OP_GV
6955                     ||  cGVOPx_gv(cUNOPx(oleft)->op_first) !=
6956                         cGVOPx_gv(cUNOPx(oright)->op_first)
6957                 )
6958                     break;
6959             }
6960             else if (oright->op_type != OP_PADAV
6961                 || oright->op_targ != oleft->op_targ
6962             )
6963                 break;
6964
6965             /* transfer MODishness etc from LHS arg to RHS arg */
6966             oright->op_flags = oleft->op_flags;
6967             o->op_private |= OPpSORT_INPLACE;
6968
6969             /* excise push->gv->rv2av->null->aassign */
6970             o2 = o->op_next->op_next;
6971             op_null(o2); /* PUSHMARK */
6972             o2 = o2->op_next;
6973             if (o2->op_type == OP_GV) {
6974                 op_null(o2); /* GV */
6975                 o2 = o2->op_next;
6976             }
6977             op_null(o2); /* RV2AV or PADAV */
6978             o2 = o2->op_next->op_next;
6979             op_null(o2); /* AASSIGN */
6980
6981             o->op_next = o2->op_next;
6982
6983             break;
6984         }
6985
6986         case OP_REVERSE: {
6987             OP *ourmark, *theirmark, *ourlast, *iter, *expushmark, *rv2av;
6988             OP *gvop = NULL;
6989             LISTOP *enter, *exlist;
6990             o->op_opt = 1;
6991
6992             enter = (LISTOP *) o->op_next;
6993             if (!enter)
6994                 break;
6995             if (enter->op_type == OP_NULL) {
6996                 enter = (LISTOP *) enter->op_next;
6997                 if (!enter)
6998                     break;
6999             }
7000             /* for $a (...) will have OP_GV then OP_RV2GV here.
7001                for (...) just has an OP_GV.  */
7002             if (enter->op_type == OP_GV) {
7003                 gvop = (OP *) enter;
7004                 enter = (LISTOP *) enter->op_next;
7005                 if (!enter)
7006                     break;
7007                 if (enter->op_type == OP_RV2GV) {
7008                   enter = (LISTOP *) enter->op_next;
7009                   if (!enter)
7010                     break;
7011                 }
7012             }
7013
7014             if (enter->op_type != OP_ENTERITER)
7015                 break;
7016
7017             iter = enter->op_next;
7018             if (!iter || iter->op_type != OP_ITER)
7019                 break;
7020             
7021             expushmark = enter->op_first;
7022             if (!expushmark || expushmark->op_type != OP_NULL
7023                 || expushmark->op_targ != OP_PUSHMARK)
7024                 break;
7025
7026             exlist = (LISTOP *) expushmark->op_sibling;
7027             if (!exlist || exlist->op_type != OP_NULL
7028                 || exlist->op_targ != OP_LIST)
7029                 break;
7030
7031             if (exlist->op_last != o) {
7032                 /* Mmm. Was expecting to point back to this op.  */
7033                 break;
7034             }
7035             theirmark = exlist->op_first;
7036             if (!theirmark || theirmark->op_type != OP_PUSHMARK)
7037                 break;
7038
7039             if (theirmark->op_sibling != o) {
7040                 /* There's something between the mark and the reverse, eg
7041                    for (1, reverse (...))
7042                    so no go.  */
7043                 break;
7044             }
7045
7046             ourmark = ((LISTOP *)o)->op_first;
7047             if (!ourmark || ourmark->op_type != OP_PUSHMARK)
7048                 break;
7049
7050             ourlast = ((LISTOP *)o)->op_last;
7051             if (!ourlast || ourlast->op_next != o)
7052                 break;
7053
7054             rv2av = ourmark->op_sibling;
7055             if (rv2av && rv2av->op_type == OP_RV2AV && rv2av->op_sibling == 0
7056                 && rv2av->op_flags == (OPf_WANT_LIST | OPf_KIDS)
7057                 && enter->op_flags == (OPf_WANT_LIST | OPf_KIDS)) {
7058                 /* We're just reversing a single array.  */
7059                 rv2av->op_flags = OPf_WANT_SCALAR | OPf_KIDS | OPf_REF;
7060                 enter->op_flags |= OPf_STACKED;
7061             }
7062
7063             /* We don't have control over who points to theirmark, so sacrifice
7064                ours.  */
7065             theirmark->op_next = ourmark->op_next;
7066             theirmark->op_flags = ourmark->op_flags;
7067             ourlast->op_next = gvop ? gvop : (OP *) enter;
7068             op_null(ourmark);
7069             op_null(o);
7070             enter->op_private |= OPpITER_REVERSED;
7071             iter->op_private |= OPpITER_REVERSED;
7072             
7073             break;
7074         }
7075         
7076         default:
7077             o->op_opt = 1;
7078             break;
7079         }
7080         oldop = o;
7081     }
7082     LEAVE;
7083 }
7084
7085 char*
7086 Perl_custom_op_name(pTHX_ const OP* o)
7087 {
7088     const IV index = PTR2IV(o->op_ppaddr);
7089     SV* keysv;
7090     HE* he;
7091
7092     if (!PL_custom_op_names) /* This probably shouldn't happen */
7093         return (char *)PL_op_name[OP_CUSTOM];
7094
7095     keysv = sv_2mortal(newSViv(index));
7096
7097     he = hv_fetch_ent(PL_custom_op_names, keysv, 0, 0);
7098     if (!he)
7099         return (char *)PL_op_name[OP_CUSTOM]; /* Don't know who you are */
7100
7101     return SvPV_nolen(HeVAL(he));
7102 }
7103
7104 char*
7105 Perl_custom_op_desc(pTHX_ const OP* o)
7106 {
7107     const IV index = PTR2IV(o->op_ppaddr);
7108     SV* keysv;
7109     HE* he;
7110
7111     if (!PL_custom_op_descs)
7112         return (char *)PL_op_desc[OP_CUSTOM];
7113
7114     keysv = sv_2mortal(newSViv(index));
7115
7116     he = hv_fetch_ent(PL_custom_op_descs, keysv, 0, 0);
7117     if (!he)
7118         return (char *)PL_op_desc[OP_CUSTOM];
7119
7120     return SvPV_nolen(HeVAL(he));
7121 }
7122
7123 #include "XSUB.h"
7124
7125 /* Efficient sub that returns a constant scalar value. */
7126 static void
7127 const_sv_xsub(pTHX_ CV* cv)
7128 {
7129     dXSARGS;
7130     if (items != 0) {
7131 #if 0
7132         Perl_croak(aTHX_ "usage: %s::%s()",
7133                    HvNAME_get(GvSTASH(CvGV(cv))), GvNAME(CvGV(cv)));
7134 #endif
7135     }
7136     EXTEND(sp, 1);
7137     ST(0) = (SV*)XSANY.any_ptr;
7138     XSRETURN(1);
7139 }
7140
7141 /*
7142  * Local variables:
7143  * c-indentation-style: bsd
7144  * c-basic-offset: 4
7145  * indent-tabs-mode: t
7146  * End:
7147  *
7148  * ex: set ts=8 sts=4 sw=4 noet:
7149  */