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