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