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