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