Add length and flags arguments to Perl_pad_check_dup().
[p5sagit/p5-mst-13.2.git] / pad.c
1 /*    pad.c
2  *
3  *    Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
4  *    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  *  'Anyway: there was this Mr. Frodo left an orphan and stranded, as you
12  *   might say, among those queer Bucklanders, being brought up anyhow in
13  *   Brandy Hall.  A regular warren, by all accounts.  Old Master Gorbadoc
14  *   never had fewer than a couple of hundred relations in the place.
15  *   Mr. Bilbo never did a kinder deed than when he brought the lad back
16  *   to live among decent folk.'                           --the Gaffer
17  *
18  *     [p.23 of _The Lord of the Rings_, I/i: "A Long-Expected Party"]
19  */
20
21 /* XXX DAPM
22  * As of Sept 2002, this file is new and may be in a state of flux for
23  * a while. I've marked things I intent to come back and look at further
24  * with an 'XXX DAPM' comment.
25  */
26
27 /*
28 =head1 Pad Data Structures
29
30 This file contains the functions that create and manipulate scratchpads,
31 which are array-of-array data structures attached to a CV (ie a sub)
32 and which store lexical variables and opcode temporary and per-thread
33 values.
34
35 =for apidoc m|AV *|CvPADLIST|CV *cv
36 CV's can have CvPADLIST(cv) set to point to an AV.
37
38 For these purposes "forms" are a kind-of CV, eval""s are too (except they're
39 not callable at will and are always thrown away after the eval"" is done
40 executing). Require'd files are simply evals without any outer lexical
41 scope.
42
43 XSUBs don't have CvPADLIST set - dXSTARG fetches values from PL_curpad,
44 but that is really the callers pad (a slot of which is allocated by
45 every entersub).
46
47 The CvPADLIST AV has does not have AvREAL set, so REFCNT of component items
48 is managed "manual" (mostly in pad.c) rather than normal av.c rules.
49 The items in the AV are not SVs as for a normal AV, but other AVs:
50
51 0'th Entry of the CvPADLIST is an AV which represents the "names" or rather
52 the "static type information" for lexicals.
53
54 The CvDEPTH'th entry of CvPADLIST AV is an AV which is the stack frame at that
55 depth of recursion into the CV.
56 The 0'th slot of a frame AV is an AV which is @_.
57 other entries are storage for variables and op targets.
58
59 During compilation:
60 C<PL_comppad_name> is set to the names AV.
61 C<PL_comppad> is set to the frame AV for the frame CvDEPTH == 1.
62 C<PL_curpad> is set to the body of the frame AV (i.e. AvARRAY(PL_comppad)).
63
64 During execution, C<PL_comppad> and C<PL_curpad> refer to the live
65 frame of the currently executing sub.
66
67 Iterating over the names AV iterates over all possible pad
68 items. Pad slots that are SVs_PADTMP (targets/GVs/constants) end up having
69 &PL_sv_undef "names" (see pad_alloc()).
70
71 Only my/our variable (SVs_PADMY/SVs_PADOUR) slots get valid names.
72 The rest are op targets/GVs/constants which are statically allocated
73 or resolved at compile time.  These don't have names by which they
74 can be looked up from Perl code at run time through eval"" like
75 my/our variables can be.  Since they can't be looked up by "name"
76 but only by their index allocated at compile time (which is usually
77 in PL_op->op_targ), wasting a name SV for them doesn't make sense.
78
79 The SVs in the names AV have their PV being the name of the variable.
80 xlow+1..xhigh inclusive in the NV union is a range of cop_seq numbers for
81 which the name is valid.  For typed lexicals name SV is SVt_PVMG and SvSTASH
82 points at the type.  For C<our> lexicals, the type is also SVt_PVMG, with the
83 SvOURSTASH slot pointing at the stash of the associated global (so that
84 duplicate C<our> declarations in the same package can be detected).  SvUVX is
85 sometimes hijacked to store the generation number during compilation.
86
87 If SvFAKE is set on the name SV, then that slot in the frame AV is
88 a REFCNT'ed reference to a lexical from "outside". In this case,
89 the name SV does not use xlow and xhigh to store a cop_seq range, since it is
90 in scope throughout. Instead xhigh stores some flags containing info about
91 the real lexical (is it declared in an anon, and is it capable of being
92 instantiated multiple times?), and for fake ANONs, xlow contains the index
93 within the parent's pad where the lexical's value is stored, to make
94 cloning quicker.
95
96 If the 'name' is '&' the corresponding entry in frame AV
97 is a CV representing a possible closure.
98 (SvFAKE and name of '&' is not a meaningful combination currently but could
99 become so if C<my sub foo {}> is implemented.)
100
101 Note that formats are treated as anon subs, and are cloned each time
102 write is called (if necessary).
103
104 The flag SVf_PADSTALE is cleared on lexicals each time the my() is executed,
105 and set on scope exit. This allows the 'Variable $x is not available' warning
106 to be generated in evals, such as 
107
108     { my $x = 1; sub f { eval '$x'} } f();
109
110 For state vars, SVf_PADSTALE is overloaded to mean 'not yet initialised'
111
112 =cut
113 */
114
115
116 #include "EXTERN.h"
117 #define PERL_IN_PAD_C
118 #include "perl.h"
119 #include "keywords.h"
120
121 #define COP_SEQ_RANGE_LOW_set(sv,val)           \
122   STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xlow = (val); } STMT_END
123 #define COP_SEQ_RANGE_HIGH_set(sv,val)          \
124   STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xhigh = (val); } STMT_END
125
126 #define PARENT_PAD_INDEX_set(sv,val)            \
127   STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xlow = (val); } STMT_END
128 #define PARENT_FAKELEX_FLAGS_set(sv,val)        \
129   STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xhigh = (val); } STMT_END
130
131 #define PAD_MAX I32_MAX
132
133 #ifdef PERL_MAD
134 void pad_peg(const char* s) {
135     static int pegcnt;
136
137     PERL_ARGS_ASSERT_PAD_PEG;
138
139     pegcnt++;
140 }
141 #endif
142
143 /*
144 =for apidoc pad_new
145
146 Create a new compiling padlist, saving and updating the various global
147 vars at the same time as creating the pad itself. The following flags
148 can be OR'ed together:
149
150     padnew_CLONE        this pad is for a cloned CV
151     padnew_SAVE         save old globals
152     padnew_SAVESUB      also save extra stuff for start of sub
153
154 =cut
155 */
156
157 PADLIST *
158 Perl_pad_new(pTHX_ int flags)
159 {
160     dVAR;
161     AV *padlist, *padname, *pad;
162
163     ASSERT_CURPAD_LEGAL("pad_new");
164
165     /* XXX DAPM really need a new SAVEt_PAD which restores all or most
166      * vars (based on flags) rather than storing vals + addresses for
167      * each individually. Also see pad_block_start.
168      * XXX DAPM Try to see whether all these conditionals are required
169      */
170
171     /* save existing state, ... */
172
173     if (flags & padnew_SAVE) {
174         SAVECOMPPAD();
175         SAVESPTR(PL_comppad_name);
176         if (! (flags & padnew_CLONE)) {
177             SAVEI32(PL_padix);
178             SAVEI32(PL_comppad_name_fill);
179             SAVEI32(PL_min_intro_pending);
180             SAVEI32(PL_max_intro_pending);
181             SAVEBOOL(PL_cv_has_eval);
182             if (flags & padnew_SAVESUB) {
183                 SAVEBOOL(PL_pad_reset_pending);
184             }
185         }
186     }
187     /* XXX DAPM interestingly, PL_comppad_name_floor never seems to be
188      * saved - check at some pt that this is okay */
189
190     /* ... create new pad ... */
191
192     padlist     = newAV();
193     padname     = newAV();
194     pad         = newAV();
195
196     if (flags & padnew_CLONE) {
197         /* XXX DAPM  I dont know why cv_clone needs it
198          * doing differently yet - perhaps this separate branch can be
199          * dispensed with eventually ???
200          */
201
202         AV * const a0 = newAV();                        /* will be @_ */
203         av_extend(a0, 0);
204         av_store(pad, 0, MUTABLE_SV(a0));
205         AvREIFY_only(a0);
206     }
207     else {
208         av_store(pad, 0, NULL);
209     }
210
211     AvREAL_off(padlist);
212     av_store(padlist, 0, MUTABLE_SV(padname));
213     av_store(padlist, 1, MUTABLE_SV(pad));
214
215     /* ... then update state variables */
216
217     PL_comppad_name     = MUTABLE_AV((*av_fetch(padlist, 0, FALSE)));
218     PL_comppad          = MUTABLE_AV((*av_fetch(padlist, 1, FALSE)));
219     PL_curpad           = AvARRAY(PL_comppad);
220
221     if (! (flags & padnew_CLONE)) {
222         PL_comppad_name_fill = 0;
223         PL_min_intro_pending = 0;
224         PL_padix             = 0;
225         PL_cv_has_eval       = 0;
226     }
227
228     DEBUG_X(PerlIO_printf(Perl_debug_log,
229           "Pad 0x%"UVxf"[0x%"UVxf"] new:       compcv=0x%"UVxf
230               " name=0x%"UVxf" flags=0x%"UVxf"\n",
231           PTR2UV(PL_comppad), PTR2UV(PL_curpad), PTR2UV(PL_compcv),
232               PTR2UV(padname), (UV)flags
233         )
234     );
235
236     return (PADLIST*)padlist;
237 }
238
239 /*
240 =for apidoc pad_undef
241
242 Free the padlist associated with a CV.
243 If parts of it happen to be current, we null the relevant
244 PL_*pad* global vars so that we don't have any dangling references left.
245 We also repoint the CvOUTSIDE of any about-to-be-orphaned
246 inner subs to the outer of this cv.
247
248 (This function should really be called pad_free, but the name was already
249 taken)
250
251 =cut
252 */
253
254 void
255 Perl_pad_undef(pTHX_ CV* cv)
256 {
257     dVAR;
258     I32 ix;
259     const PADLIST * const padlist = CvPADLIST(cv);
260
261     PERL_ARGS_ASSERT_PAD_UNDEF;
262
263     pad_peg("pad_undef");
264     if (!padlist)
265         return;
266     if (SvIS_FREED(padlist)) /* may be during global destruction */
267         return;
268
269     DEBUG_X(PerlIO_printf(Perl_debug_log,
270           "Pad undef: cv=0x%"UVxf" padlist=0x%"UVxf" comppad=0x%"UVxf"\n",
271             PTR2UV(cv), PTR2UV(padlist), PTR2UV(PL_comppad))
272     );
273
274     /* detach any '&' anon children in the pad; if afterwards they
275      * are still live, fix up their CvOUTSIDEs to point to our outside,
276      * bypassing us. */
277     /* XXX DAPM for efficiency, we should only do this if we know we have
278      * children, or integrate this loop with general cleanup */
279
280     if (!PL_dirty) { /* don't bother during global destruction */
281         CV * const outercv = CvOUTSIDE(cv);
282         const U32 seq = CvOUTSIDE_SEQ(cv);
283         AV *  const comppad_name = MUTABLE_AV(AvARRAY(padlist)[0]);
284         SV ** const namepad = AvARRAY(comppad_name);
285         AV *  const comppad = MUTABLE_AV(AvARRAY(padlist)[1]);
286         SV ** const curpad = AvARRAY(comppad);
287         for (ix = AvFILLp(comppad_name); ix > 0; ix--) {
288             SV * const namesv = namepad[ix];
289             if (namesv && namesv != &PL_sv_undef
290                 && *SvPVX_const(namesv) == '&')
291             {
292                 CV * const innercv = MUTABLE_CV(curpad[ix]);
293                 U32 inner_rc = SvREFCNT(innercv);
294                 assert(inner_rc);
295                 namepad[ix] = NULL;
296                 SvREFCNT_dec(namesv);
297
298                 if (SvREFCNT(comppad) < 2) { /* allow for /(?{ sub{} })/  */
299                     curpad[ix] = NULL;
300                     SvREFCNT_dec(innercv);
301                     inner_rc--;
302                 }
303
304                 /* in use, not just a prototype */
305                 if (inner_rc && (CvOUTSIDE(innercv) == cv)) {
306                     assert(CvWEAKOUTSIDE(innercv));
307                     /* don't relink to grandfather if he's being freed */
308                     if (outercv && SvREFCNT(outercv)) {
309                         CvWEAKOUTSIDE_off(innercv);
310                         CvOUTSIDE(innercv) = outercv;
311                         CvOUTSIDE_SEQ(innercv) = seq;
312                         SvREFCNT_inc_simple_void_NN(outercv);
313                     }
314                     else {
315                         CvOUTSIDE(innercv) = NULL;
316                     }
317                 }
318             }
319         }
320     }
321
322     ix = AvFILLp(padlist);
323     while (ix >= 0) {
324         SV* const sv = AvARRAY(padlist)[ix--];
325         if (sv) {
326             if (sv == (const SV *)PL_comppad_name)
327                 PL_comppad_name = NULL;
328             else if (sv == (const SV *)PL_comppad) {
329                 PL_comppad = NULL;
330                 PL_curpad = NULL;
331             }
332         }
333         SvREFCNT_dec(sv);
334     }
335     SvREFCNT_dec(MUTABLE_SV(CvPADLIST(cv)));
336     CvPADLIST(cv) = NULL;
337 }
338
339
340
341
342 /*
343 =for apidoc pad_add_name
344
345 Create a new name and associated PADMY SV in the current pad; return the
346 offset.
347 If C<typestash> is valid, the name is for a typed lexical; set the
348 name's stash to that value.
349 If C<ourstash> is valid, it's an our lexical, set the name's
350 SvOURSTASH to that value
351
352 If fake, it means we're cloning an existing entry
353
354 =cut
355 */
356
357 PADOFFSET
358 Perl_pad_add_name(pTHX_ const char *name, HV* typestash, HV* ourstash, bool fake, bool state)
359 {
360     dVAR;
361     const PADOFFSET offset = pad_alloc(OP_PADSV, SVs_PADMY);
362     SV* const namesv
363         = newSV_type((ourstash || typestash) ? SVt_PVMG : SVt_PVNV);
364
365     PERL_ARGS_ASSERT_PAD_ADD_NAME;
366
367     ASSERT_CURPAD_ACTIVE("pad_add_name");
368
369     sv_setpv(namesv, name);
370
371     if (typestash) {
372         assert(SvTYPE(namesv) == SVt_PVMG);
373         SvPAD_TYPED_on(namesv);
374         SvSTASH_set(namesv, MUTABLE_HV(SvREFCNT_inc_simple_NN(MUTABLE_SV(typestash))));
375     }
376     if (ourstash) {
377         SvPAD_OUR_on(namesv);
378         SvOURSTASH_set(namesv, ourstash);
379         SvREFCNT_inc_simple_void_NN(ourstash);
380     }
381     else if (state) {
382         SvPAD_STATE_on(namesv);
383     }
384
385     av_store(PL_comppad_name, offset, namesv);
386     if (fake) {
387         SvFAKE_on(namesv);
388         DEBUG_Xv(PerlIO_printf(Perl_debug_log,
389             "Pad addname: %ld \"%s\" FAKE\n", (long)offset, name));
390     }
391     else {
392         /* not yet introduced */
393         COP_SEQ_RANGE_LOW_set(namesv, PAD_MAX); /* min */
394         COP_SEQ_RANGE_HIGH_set(namesv, 0);              /* max */
395
396         if (!PL_min_intro_pending)
397             PL_min_intro_pending = offset;
398         PL_max_intro_pending = offset;
399         /* if it's not a simple scalar, replace with an AV or HV */
400         /* XXX DAPM since slot has been allocated, replace
401          * av_store with PL_curpad[offset] ? */
402         if (*name == '@')
403             av_store(PL_comppad, offset, MUTABLE_SV(newAV()));
404         else if (*name == '%')
405             av_store(PL_comppad, offset, MUTABLE_SV(newHV()));
406         SvPADMY_on(PL_curpad[offset]);
407         DEBUG_Xv(PerlIO_printf(Perl_debug_log,
408             "Pad addname: %ld \"%s\" new lex=0x%"UVxf"\n",
409             (long)offset, name, PTR2UV(PL_curpad[offset])));
410     }
411
412     return offset;
413 }
414
415
416
417
418 /*
419 =for apidoc pad_alloc
420
421 Allocate a new my or tmp pad entry. For a my, simply push a null SV onto
422 the end of PL_comppad, but for a tmp, scan the pad from PL_padix upwards
423 for a slot which has no name and no active value.
424
425 =cut
426 */
427
428 /* XXX DAPM integrate alloc(), add_name() and add_anon(),
429  * or at least rationalise ??? */
430 /* And flag whether the incoming name is UTF8 or 8 bit?
431    Could do this either with the +ve/-ve hack of the HV code, or expanding
432    the flag bits. Either way, this makes proper Unicode safe pad support.
433    NWC
434 */
435
436 PADOFFSET
437 Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype)
438 {
439     dVAR;
440     SV *sv;
441     I32 retval;
442
443     PERL_UNUSED_ARG(optype);
444     ASSERT_CURPAD_ACTIVE("pad_alloc");
445
446     if (AvARRAY(PL_comppad) != PL_curpad)
447         Perl_croak(aTHX_ "panic: pad_alloc");
448     if (PL_pad_reset_pending)
449         pad_reset();
450     if (tmptype & SVs_PADMY) {
451         sv = *av_fetch(PL_comppad, AvFILLp(PL_comppad) + 1, TRUE);
452         retval = AvFILLp(PL_comppad);
453     }
454     else {
455         SV * const * const names = AvARRAY(PL_comppad_name);
456         const SSize_t names_fill = AvFILLp(PL_comppad_name);
457         for (;;) {
458             /*
459              * "foreach" index vars temporarily become aliases to non-"my"
460              * values.  Thus we must skip, not just pad values that are
461              * marked as current pad values, but also those with names.
462              */
463             /* HVDS why copy to sv here? we don't seem to use it */
464             if (++PL_padix <= names_fill &&
465                    (sv = names[PL_padix]) && sv != &PL_sv_undef)
466                 continue;
467             sv = *av_fetch(PL_comppad, PL_padix, TRUE);
468             if (!(SvFLAGS(sv) & (SVs_PADTMP | SVs_PADMY)) &&
469                 !IS_PADGV(sv) && !IS_PADCONST(sv))
470                 break;
471         }
472         retval = PL_padix;
473     }
474     SvFLAGS(sv) |= tmptype;
475     PL_curpad = AvARRAY(PL_comppad);
476
477     DEBUG_X(PerlIO_printf(Perl_debug_log,
478           "Pad 0x%"UVxf"[0x%"UVxf"] alloc:   %ld for %s\n",
479           PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long) retval,
480           PL_op_name[optype]));
481 #ifdef DEBUG_LEAKING_SCALARS
482     sv->sv_debug_optype = optype;
483     sv->sv_debug_inpad = 1;
484 #endif
485     return (PADOFFSET)retval;
486 }
487
488 /*
489 =for apidoc pad_add_anon
490
491 Add an anon code entry to the current compiling pad
492
493 =cut
494 */
495
496 PADOFFSET
497 Perl_pad_add_anon(pTHX_ SV* sv, OPCODE op_type)
498 {
499     dVAR;
500     PADOFFSET ix;
501     SV* const name = newSV_type(SVt_PVNV);
502
503     PERL_ARGS_ASSERT_PAD_ADD_ANON;
504
505     pad_peg("add_anon");
506     sv_setpvs(name, "&");
507     /* Are these two actually ever read? */
508     COP_SEQ_RANGE_HIGH_set(name, ~0);
509     COP_SEQ_RANGE_LOW_set(name, 1);
510     ix = pad_alloc(op_type, SVs_PADMY);
511     av_store(PL_comppad_name, ix, name);
512     /* XXX DAPM use PL_curpad[] ? */
513     av_store(PL_comppad, ix, sv);
514     SvPADMY_on(sv);
515
516     /* to avoid ref loops, we never have parent + child referencing each
517      * other simultaneously */
518     if (CvOUTSIDE((const CV *)sv)) {
519         assert(!CvWEAKOUTSIDE((const CV *)sv));
520         CvWEAKOUTSIDE_on(MUTABLE_CV(sv));
521         SvREFCNT_dec(CvOUTSIDE(MUTABLE_CV(sv)));
522     }
523     return ix;
524 }
525
526
527
528 /*
529 =for apidoc pad_check_dup
530
531 Check for duplicate declarations: report any of:
532      * a my in the current scope with the same name;
533      * an our (anywhere in the pad) with the same name and the same stash
534        as C<ourstash>
535 C<is_our> indicates that the name to check is an 'our' declaration
536
537 =cut
538 */
539
540 /* XXX DAPM integrate this into pad_add_name ??? */
541
542 void
543 Perl_pad_check_dup(pTHX_ const char *name, const STRLEN len, const U32 flags,
544                    const HV *ourstash)
545 {
546     dVAR;
547     SV          **svp;
548     PADOFFSET   top, off;
549     const U32   is_our = flags & pad_add_OUR;
550
551     PERL_ARGS_ASSERT_PAD_CHECK_DUP;
552
553     ASSERT_CURPAD_ACTIVE("pad_check_dup");
554
555     if (flags & ~pad_add_OUR)
556         Perl_croak(aTHX_ "panic: pad_check_dup illegal flag bits 0x%" UVxf,
557                    (UV)flags);
558
559     /* Until we're using the length for real, cross check that we're being told
560        the truth.  */
561     PERL_UNUSED_ARG(len);
562     assert(strlen(name) == len);
563
564     if (AvFILLp(PL_comppad_name) < 0 || !ckWARN(WARN_MISC))
565         return; /* nothing to check */
566
567     svp = AvARRAY(PL_comppad_name);
568     top = AvFILLp(PL_comppad_name);
569     /* check the current scope */
570     /* XXX DAPM - why the (I32) cast - shouldn't we ensure they're the same
571      * type ? */
572     for (off = top; (I32)off > PL_comppad_name_floor; off--) {
573         SV * const sv = svp[off];
574         if (sv
575             && sv != &PL_sv_undef
576             && !SvFAKE(sv)
577             && (COP_SEQ_RANGE_HIGH(sv) == PAD_MAX || COP_SEQ_RANGE_HIGH(sv) == 0)
578             && strEQ(name, SvPVX_const(sv)))
579         {
580             if (is_our && (SvPAD_OUR(sv)))
581                 break; /* "our" masking "our" */
582             Perl_warner(aTHX_ packWARN(WARN_MISC),
583                 "\"%s\" variable %"SVf" masks earlier declaration in same %s",
584                 (is_our ? "our" : PL_parser->in_my == KEY_my ? "my" : "state"),
585                 sv,
586                 (COP_SEQ_RANGE_HIGH(sv) == PAD_MAX ? "scope" : "statement"));
587             --off;
588             break;
589         }
590     }
591     /* check the rest of the pad */
592     if (is_our) {
593         do {
594             SV * const sv = svp[off];
595             if (sv
596                 && sv != &PL_sv_undef
597                 && !SvFAKE(sv)
598                 && (COP_SEQ_RANGE_HIGH(sv) == PAD_MAX || COP_SEQ_RANGE_HIGH(sv) == 0)
599                 && SvOURSTASH(sv) == ourstash
600                 && strEQ(name, SvPVX_const(sv)))
601             {
602                 Perl_warner(aTHX_ packWARN(WARN_MISC),
603                     "\"our\" variable %"SVf" redeclared", sv);
604                 if ((I32)off <= PL_comppad_name_floor)
605                     Perl_warner(aTHX_ packWARN(WARN_MISC),
606                         "\t(Did you mean \"local\" instead of \"our\"?)\n");
607                 break;
608             }
609         } while ( off-- > 0 );
610     }
611 }
612
613
614 /*
615 =for apidoc pad_findmy
616
617 Given a lexical name, try to find its offset, first in the current pad,
618 or failing that, in the pads of any lexically enclosing subs (including
619 the complications introduced by eval). If the name is found in an outer pad,
620 then a fake entry is added to the current pad.
621 Returns the offset in the current pad, or NOT_IN_PAD on failure.
622
623 =cut
624 */
625
626 PADOFFSET
627 Perl_pad_findmy(pTHX_ const char *name, STRLEN len, U32 flags)
628 {
629     dVAR;
630     SV *out_sv;
631     int out_flags;
632     I32 offset;
633     const AV *nameav;
634     SV **name_svp;
635
636     PERL_ARGS_ASSERT_PAD_FINDMY;
637
638     pad_peg("pad_findmy");
639
640     if (flags)
641         Perl_croak(aTHX_ "panic: pad_findmy illegal flag bits 0x%" UVxf,
642                    (UV)flags);
643
644     /* Yes, it is a bug (read work in progress) that we're not really using this
645        length parameter, and instead relying on strlen() later on. But I'm not
646        comfortable about changing the pad API piecemeal to use and rely on
647        lengths. This only exists to avoid an "unused parameter" warning.  */
648     if (len < 2) 
649         return NOT_IN_PAD;
650
651     /* But until we're using the length for real, cross check that we're being
652        told the truth.  */
653     assert(strlen(name) == len);
654
655     offset = pad_findlex(name, PL_compcv, PL_cop_seqmax, 1,
656                 NULL, &out_sv, &out_flags);
657     if ((PADOFFSET)offset != NOT_IN_PAD) 
658         return offset;
659
660     /* look for an our that's being introduced; this allows
661      *    our $foo = 0 unless defined $foo;
662      * to not give a warning. (Yes, this is a hack) */
663
664     nameav = MUTABLE_AV(AvARRAY(CvPADLIST(PL_compcv))[0]);
665     name_svp = AvARRAY(nameav);
666     for (offset = AvFILLp(nameav); offset > 0; offset--) {
667         const SV * const namesv = name_svp[offset];
668         if (namesv && namesv != &PL_sv_undef
669             && !SvFAKE(namesv)
670             && (SvPAD_OUR(namesv))
671             && strEQ(SvPVX_const(namesv), name)
672             && COP_SEQ_RANGE_LOW(namesv) == PAD_MAX /* min */
673         )
674             return offset;
675     }
676     return NOT_IN_PAD;
677 }
678
679 /*
680  * Returns the offset of a lexical $_, if there is one, at run time.
681  * Used by the UNDERBAR XS macro.
682  */
683
684 PADOFFSET
685 Perl_find_rundefsvoffset(pTHX)
686 {
687     dVAR;
688     SV *out_sv;
689     int out_flags;
690     return pad_findlex("$_", find_runcv(NULL), PL_curcop->cop_seq, 1,
691             NULL, &out_sv, &out_flags);
692 }
693
694 /*
695 =for apidoc pad_findlex
696
697 Find a named lexical anywhere in a chain of nested pads. Add fake entries
698 in the inner pads if it's found in an outer one.
699
700 Returns the offset in the bottom pad of the lex or the fake lex.
701 cv is the CV in which to start the search, and seq is the current cop_seq
702 to match against. If warn is true, print appropriate warnings.  The out_*
703 vars return values, and so are pointers to where the returned values
704 should be stored. out_capture, if non-null, requests that the innermost
705 instance of the lexical is captured; out_name_sv is set to the innermost
706 matched namesv or fake namesv; out_flags returns the flags normally
707 associated with the IVX field of a fake namesv.
708
709 Note that pad_findlex() is recursive; it recurses up the chain of CVs,
710 then comes back down, adding fake entries as it goes. It has to be this way
711 because fake namesvs in anon protoypes have to store in xlow the index into
712 the parent pad.
713
714 =cut
715 */
716
717 /* the CV has finished being compiled. This is not a sufficient test for
718  * all CVs (eg XSUBs), but suffices for the CVs found in a lexical chain */
719 #define CvCOMPILED(cv)  CvROOT(cv)
720
721 /* the CV does late binding of its lexicals */
722 #define CvLATE(cv) (CvANON(cv) || SvTYPE(cv) == SVt_PVFM)
723
724
725 STATIC PADOFFSET
726 S_pad_findlex(pTHX_ const char *name, const CV* cv, U32 seq, int warn,
727         SV** out_capture, SV** out_name_sv, int *out_flags)
728 {
729     dVAR;
730     I32 offset, new_offset;
731     SV *new_capture;
732     SV **new_capturep;
733     const AV * const padlist = CvPADLIST(cv);
734
735     PERL_ARGS_ASSERT_PAD_FINDLEX;
736
737     *out_flags = 0;
738
739     DEBUG_Xv(PerlIO_printf(Perl_debug_log,
740         "Pad findlex cv=0x%"UVxf" searching \"%s\" seq=%d%s\n",
741         PTR2UV(cv), name, (int)seq, out_capture ? " capturing" : "" ));
742
743     /* first, search this pad */
744
745     if (padlist) { /* not an undef CV */
746         I32 fake_offset = 0;
747         const AV * const nameav = MUTABLE_AV(AvARRAY(padlist)[0]);
748         SV * const * const name_svp = AvARRAY(nameav);
749
750         for (offset = AvFILLp(nameav); offset > 0; offset--) {
751             const SV * const namesv = name_svp[offset];
752             if (namesv && namesv != &PL_sv_undef
753                     && strEQ(SvPVX_const(namesv), name))
754             {
755                 if (SvFAKE(namesv))
756                     fake_offset = offset; /* in case we don't find a real one */
757                 else if (  seq >  COP_SEQ_RANGE_LOW(namesv)     /* min */
758                         && seq <= COP_SEQ_RANGE_HIGH(namesv))   /* max */
759                     break;
760             }
761         }
762
763         if (offset > 0 || fake_offset > 0 ) { /* a match! */
764             if (offset > 0) { /* not fake */
765                 fake_offset = 0;
766                 *out_name_sv = name_svp[offset]; /* return the namesv */
767
768                 /* set PAD_FAKELEX_MULTI if this lex can have multiple
769                  * instances. For now, we just test !CvUNIQUE(cv), but
770                  * ideally, we should detect my's declared within loops
771                  * etc - this would allow a wider range of 'not stayed
772                  * shared' warnings. We also treated alreadly-compiled
773                  * lexes as not multi as viewed from evals. */
774
775                 *out_flags = CvANON(cv) ?
776                         PAD_FAKELEX_ANON :
777                             (!CvUNIQUE(cv) && ! CvCOMPILED(cv))
778                                 ? PAD_FAKELEX_MULTI : 0;
779
780                 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
781                     "Pad findlex cv=0x%"UVxf" matched: offset=%ld (%lu,%lu)\n",
782                     PTR2UV(cv), (long)offset,
783                     (unsigned long)COP_SEQ_RANGE_LOW(*out_name_sv),
784                     (unsigned long)COP_SEQ_RANGE_HIGH(*out_name_sv)));
785             }
786             else { /* fake match */
787                 offset = fake_offset;
788                 *out_name_sv = name_svp[offset]; /* return the namesv */
789                 *out_flags = PARENT_FAKELEX_FLAGS(*out_name_sv);
790                 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
791                     "Pad findlex cv=0x%"UVxf" matched: offset=%ld flags=0x%lx index=%lu\n",
792                     PTR2UV(cv), (long)offset, (unsigned long)*out_flags,
793                     (unsigned long) PARENT_PAD_INDEX(*out_name_sv) 
794                 ));
795             }
796
797             /* return the lex? */
798
799             if (out_capture) {
800
801                 /* our ? */
802                 if (SvPAD_OUR(*out_name_sv)) {
803                     *out_capture = NULL;
804                     return offset;
805                 }
806
807                 /* trying to capture from an anon prototype? */
808                 if (CvCOMPILED(cv)
809                         ? CvANON(cv) && CvCLONE(cv) && !CvCLONED(cv)
810                         : *out_flags & PAD_FAKELEX_ANON)
811                 {
812                     if (warn)
813                         Perl_ck_warner(aTHX_ packWARN(WARN_CLOSURE),
814                                        "Variable \"%s\" is not available", name);
815                     *out_capture = NULL;
816                 }
817
818                 /* real value */
819                 else {
820                     int newwarn = warn;
821                     if (!CvCOMPILED(cv) && (*out_flags & PAD_FAKELEX_MULTI)
822                          && !SvPAD_STATE(name_svp[offset])
823                          && warn && ckWARN(WARN_CLOSURE)) {
824                         newwarn = 0;
825                         Perl_warner(aTHX_ packWARN(WARN_CLOSURE),
826                             "Variable \"%s\" will not stay shared", name);
827                     }
828
829                     if (fake_offset && CvANON(cv)
830                             && CvCLONE(cv) &&!CvCLONED(cv))
831                     {
832                         SV *n;
833                         /* not yet caught - look further up */
834                         DEBUG_Xv(PerlIO_printf(Perl_debug_log,
835                             "Pad findlex cv=0x%"UVxf" chasing lex in outer pad\n",
836                             PTR2UV(cv)));
837                         n = *out_name_sv;
838                         (void) pad_findlex(name, CvOUTSIDE(cv),
839                             CvOUTSIDE_SEQ(cv),
840                             newwarn, out_capture, out_name_sv, out_flags);
841                         *out_name_sv = n;
842                         return offset;
843                     }
844
845                     *out_capture = AvARRAY(MUTABLE_AV(AvARRAY(padlist)[
846                                     CvDEPTH(cv) ? CvDEPTH(cv) : 1]))[offset];
847                     DEBUG_Xv(PerlIO_printf(Perl_debug_log,
848                         "Pad findlex cv=0x%"UVxf" found lex=0x%"UVxf"\n",
849                         PTR2UV(cv), PTR2UV(*out_capture)));
850
851                     if (SvPADSTALE(*out_capture)
852                         && !SvPAD_STATE(name_svp[offset]))
853                     {
854                         Perl_ck_warner(aTHX_ packWARN(WARN_CLOSURE),
855                                        "Variable \"%s\" is not available", name);
856                         *out_capture = NULL;
857                     }
858                 }
859                 if (!*out_capture) {
860                     if (*name == '@')
861                         *out_capture = sv_2mortal(MUTABLE_SV(newAV()));
862                     else if (*name == '%')
863                         *out_capture = sv_2mortal(MUTABLE_SV(newHV()));
864                     else
865                         *out_capture = sv_newmortal();
866                 }
867             }
868
869             return offset;
870         }
871     }
872
873     /* it's not in this pad - try above */
874
875     if (!CvOUTSIDE(cv))
876         return NOT_IN_PAD;
877
878     /* out_capture non-null means caller wants us to capture lex; in
879      * addition we capture ourselves unless it's an ANON/format */
880     new_capturep = out_capture ? out_capture :
881                 CvLATE(cv) ? NULL : &new_capture;
882
883     offset = pad_findlex(name, CvOUTSIDE(cv), CvOUTSIDE_SEQ(cv), 1,
884                 new_capturep, out_name_sv, out_flags);
885     if ((PADOFFSET)offset == NOT_IN_PAD)
886         return NOT_IN_PAD;
887
888     /* found in an outer CV. Add appropriate fake entry to this pad */
889
890     /* don't add new fake entries (via eval) to CVs that we have already
891      * finished compiling, or to undef CVs */
892     if (CvCOMPILED(cv) || !padlist)
893         return 0; /* this dummy (and invalid) value isnt used by the caller */
894
895     {
896         SV *new_namesv;
897         AV *  const ocomppad_name = PL_comppad_name;
898         PAD * const ocomppad = PL_comppad;
899         PL_comppad_name = MUTABLE_AV(AvARRAY(padlist)[0]);
900         PL_comppad = MUTABLE_AV(AvARRAY(padlist)[1]);
901         PL_curpad = AvARRAY(PL_comppad);
902
903         new_offset = pad_add_name(
904             SvPVX_const(*out_name_sv),
905             SvPAD_TYPED(*out_name_sv)
906                     ? SvSTASH(*out_name_sv) : NULL,
907             SvOURSTASH(*out_name_sv),
908             1,  /* fake */
909             SvPAD_STATE(*out_name_sv) ? 1 : 0 /* state variable ? */
910         );
911
912         new_namesv = AvARRAY(PL_comppad_name)[new_offset];
913         PARENT_FAKELEX_FLAGS_set(new_namesv, *out_flags);
914
915         PARENT_PAD_INDEX_set(new_namesv, 0);
916         if (SvPAD_OUR(new_namesv)) {
917             NOOP;   /* do nothing */
918         }
919         else if (CvLATE(cv)) {
920             /* delayed creation - just note the offset within parent pad */
921             PARENT_PAD_INDEX_set(new_namesv, offset);
922             CvCLONE_on(cv);
923         }
924         else {
925             /* immediate creation - capture outer value right now */
926             av_store(PL_comppad, new_offset, SvREFCNT_inc(*new_capturep));
927             DEBUG_Xv(PerlIO_printf(Perl_debug_log,
928                 "Pad findlex cv=0x%"UVxf" saved captured sv 0x%"UVxf" at offset %ld\n",
929                 PTR2UV(cv), PTR2UV(*new_capturep), (long)new_offset));
930         }
931         *out_name_sv = new_namesv;
932         *out_flags = PARENT_FAKELEX_FLAGS(new_namesv);
933
934         PL_comppad_name = ocomppad_name;
935         PL_comppad = ocomppad;
936         PL_curpad = ocomppad ? AvARRAY(ocomppad) : NULL;
937     }
938     return new_offset;
939 }
940
941
942 #ifdef DEBUGGING
943 /*
944 =for apidoc pad_sv
945
946 Get the value at offset po in the current pad.
947 Use macro PAD_SV instead of calling this function directly.
948
949 =cut
950 */
951
952
953 SV *
954 Perl_pad_sv(pTHX_ PADOFFSET po)
955 {
956     dVAR;
957     ASSERT_CURPAD_ACTIVE("pad_sv");
958
959     if (!po)
960         Perl_croak(aTHX_ "panic: pad_sv po");
961     DEBUG_X(PerlIO_printf(Perl_debug_log,
962         "Pad 0x%"UVxf"[0x%"UVxf"] sv:      %ld sv=0x%"UVxf"\n",
963         PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(PL_curpad[po]))
964     );
965     return PL_curpad[po];
966 }
967
968
969 /*
970 =for apidoc pad_setsv
971
972 Set the entry at offset po in the current pad to sv.
973 Use the macro PAD_SETSV() rather than calling this function directly.
974
975 =cut
976 */
977
978 void
979 Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv)
980 {
981     dVAR;
982
983     PERL_ARGS_ASSERT_PAD_SETSV;
984
985     ASSERT_CURPAD_ACTIVE("pad_setsv");
986
987     DEBUG_X(PerlIO_printf(Perl_debug_log,
988         "Pad 0x%"UVxf"[0x%"UVxf"] setsv:   %ld sv=0x%"UVxf"\n",
989         PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(sv))
990     );
991     PL_curpad[po] = sv;
992 }
993 #endif
994
995
996
997 /*
998 =for apidoc pad_block_start
999
1000 Update the pad compilation state variables on entry to a new block
1001
1002 =cut
1003 */
1004
1005 /* XXX DAPM perhaps:
1006  *      - integrate this in general state-saving routine ???
1007  *      - combine with the state-saving going on in pad_new ???
1008  *      - introduce a new SAVE type that does all this in one go ?
1009  */
1010
1011 void
1012 Perl_pad_block_start(pTHX_ int full)
1013 {
1014     dVAR;
1015     ASSERT_CURPAD_ACTIVE("pad_block_start");
1016     SAVEI32(PL_comppad_name_floor);
1017     PL_comppad_name_floor = AvFILLp(PL_comppad_name);
1018     if (full)
1019         PL_comppad_name_fill = PL_comppad_name_floor;
1020     if (PL_comppad_name_floor < 0)
1021         PL_comppad_name_floor = 0;
1022     SAVEI32(PL_min_intro_pending);
1023     SAVEI32(PL_max_intro_pending);
1024     PL_min_intro_pending = 0;
1025     SAVEI32(PL_comppad_name_fill);
1026     SAVEI32(PL_padix_floor);
1027     PL_padix_floor = PL_padix;
1028     PL_pad_reset_pending = FALSE;
1029 }
1030
1031
1032 /*
1033 =for apidoc intro_my
1034
1035 "Introduce" my variables to visible status.
1036
1037 =cut
1038 */
1039
1040 U32
1041 Perl_intro_my(pTHX)
1042 {
1043     dVAR;
1044     SV **svp;
1045     I32 i;
1046
1047     ASSERT_CURPAD_ACTIVE("intro_my");
1048     if (! PL_min_intro_pending)
1049         return PL_cop_seqmax;
1050
1051     svp = AvARRAY(PL_comppad_name);
1052     for (i = PL_min_intro_pending; i <= PL_max_intro_pending; i++) {
1053         SV * const sv = svp[i];
1054
1055         if (sv && sv != &PL_sv_undef && !SvFAKE(sv) && !COP_SEQ_RANGE_HIGH(sv)) {
1056             COP_SEQ_RANGE_HIGH_set(sv, PAD_MAX);        /* Don't know scope end yet. */
1057             COP_SEQ_RANGE_LOW_set(sv, PL_cop_seqmax);
1058             DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1059                 "Pad intromy: %ld \"%s\", (%lu,%lu)\n",
1060                 (long)i, SvPVX_const(sv),
1061                 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1062                 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
1063             );
1064         }
1065     }
1066     PL_min_intro_pending = 0;
1067     PL_comppad_name_fill = PL_max_intro_pending; /* Needn't search higher */
1068     DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1069                 "Pad intromy: seq -> %ld\n", (long)(PL_cop_seqmax+1)));
1070
1071     return PL_cop_seqmax++;
1072 }
1073
1074 /*
1075 =for apidoc pad_leavemy
1076
1077 Cleanup at end of scope during compilation: set the max seq number for
1078 lexicals in this scope and warn of any lexicals that never got introduced.
1079
1080 =cut
1081 */
1082
1083 void
1084 Perl_pad_leavemy(pTHX)
1085 {
1086     dVAR;
1087     I32 off;
1088     SV * const * const svp = AvARRAY(PL_comppad_name);
1089
1090     PL_pad_reset_pending = FALSE;
1091
1092     ASSERT_CURPAD_ACTIVE("pad_leavemy");
1093     if (PL_min_intro_pending && PL_comppad_name_fill < PL_min_intro_pending) {
1094         for (off = PL_max_intro_pending; off >= PL_min_intro_pending; off--) {
1095             const SV * const sv = svp[off];
1096             if (sv && sv != &PL_sv_undef && !SvFAKE(sv))
1097                 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
1098                                  "%"SVf" never introduced",
1099                                  SVfARG(sv));
1100         }
1101     }
1102     /* "Deintroduce" my variables that are leaving with this scope. */
1103     for (off = AvFILLp(PL_comppad_name); off > PL_comppad_name_fill; off--) {
1104         const SV * const sv = svp[off];
1105         if (sv && sv != &PL_sv_undef && !SvFAKE(sv) && COP_SEQ_RANGE_HIGH(sv) == PAD_MAX) {
1106             COP_SEQ_RANGE_HIGH_set(sv, PL_cop_seqmax);
1107             DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1108                 "Pad leavemy: %ld \"%s\", (%lu,%lu)\n",
1109                 (long)off, SvPVX_const(sv),
1110                 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1111                 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
1112             );
1113         }
1114     }
1115     PL_cop_seqmax++;
1116     DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1117             "Pad leavemy: seq = %ld\n", (long)PL_cop_seqmax));
1118 }
1119
1120
1121 /*
1122 =for apidoc pad_swipe
1123
1124 Abandon the tmp in the current pad at offset po and replace with a
1125 new one.
1126
1127 =cut
1128 */
1129
1130 void
1131 Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust)
1132 {
1133     dVAR;
1134     ASSERT_CURPAD_LEGAL("pad_swipe");
1135     if (!PL_curpad)
1136         return;
1137     if (AvARRAY(PL_comppad) != PL_curpad)
1138         Perl_croak(aTHX_ "panic: pad_swipe curpad");
1139     if (!po)
1140         Perl_croak(aTHX_ "panic: pad_swipe po");
1141
1142     DEBUG_X(PerlIO_printf(Perl_debug_log,
1143                 "Pad 0x%"UVxf"[0x%"UVxf"] swipe:   %ld\n",
1144                 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po));
1145
1146     if (PL_curpad[po])
1147         SvPADTMP_off(PL_curpad[po]);
1148     if (refadjust)
1149         SvREFCNT_dec(PL_curpad[po]);
1150
1151
1152     /* if pad tmps aren't shared between ops, then there's no need to
1153      * create a new tmp when an existing op is freed */
1154 #ifdef USE_BROKEN_PAD_RESET
1155     PL_curpad[po] = newSV(0);
1156     SvPADTMP_on(PL_curpad[po]);
1157 #else
1158     PL_curpad[po] = &PL_sv_undef;
1159 #endif
1160     if ((I32)po < PL_padix)
1161         PL_padix = po - 1;
1162 }
1163
1164
1165 /*
1166 =for apidoc pad_reset
1167
1168 Mark all the current temporaries for reuse
1169
1170 =cut
1171 */
1172
1173 /* XXX pad_reset() is currently disabled because it results in serious bugs.
1174  * It causes pad temp TARGs to be shared between OPs. Since TARGs are pushed
1175  * on the stack by OPs that use them, there are several ways to get an alias
1176  * to  a shared TARG.  Such an alias will change randomly and unpredictably.
1177  * We avoid doing this until we can think of a Better Way.
1178  * GSAR 97-10-29 */
1179 static void
1180 S_pad_reset(pTHX)
1181 {
1182     dVAR;
1183 #ifdef USE_BROKEN_PAD_RESET
1184     if (AvARRAY(PL_comppad) != PL_curpad)
1185         Perl_croak(aTHX_ "panic: pad_reset curpad");
1186
1187     DEBUG_X(PerlIO_printf(Perl_debug_log,
1188             "Pad 0x%"UVxf"[0x%"UVxf"] reset:     padix %ld -> %ld",
1189             PTR2UV(PL_comppad), PTR2UV(PL_curpad),
1190                 (long)PL_padix, (long)PL_padix_floor
1191             )
1192     );
1193
1194     if (!PL_tainting) { /* Can't mix tainted and non-tainted temporaries. */
1195         register I32 po;
1196         for (po = AvMAX(PL_comppad); po > PL_padix_floor; po--) {
1197             if (PL_curpad[po] && !SvIMMORTAL(PL_curpad[po]))
1198                 SvPADTMP_off(PL_curpad[po]);
1199         }
1200         PL_padix = PL_padix_floor;
1201     }
1202 #endif
1203     PL_pad_reset_pending = FALSE;
1204 }
1205
1206
1207 /*
1208 =for apidoc pad_tidy
1209
1210 Tidy up a pad after we've finished compiling it:
1211     * remove most stuff from the pads of anonsub prototypes;
1212     * give it a @_;
1213     * mark tmps as such.
1214
1215 =cut
1216 */
1217
1218 /* XXX DAPM surely most of this stuff should be done properly
1219  * at the right time beforehand, rather than going around afterwards
1220  * cleaning up our mistakes ???
1221  */
1222
1223 void
1224 Perl_pad_tidy(pTHX_ padtidy_type type)
1225 {
1226     dVAR;
1227
1228     ASSERT_CURPAD_ACTIVE("pad_tidy");
1229
1230     /* If this CV has had any 'eval-capable' ops planted in it
1231      * (ie it contains eval '...', //ee, /$var/ or /(?{..})/), Then any
1232      * anon prototypes in the chain of CVs should be marked as cloneable,
1233      * so that for example the eval's CV in C<< sub { eval '$x' } >> gets
1234      * the right CvOUTSIDE.
1235      * If running with -d, *any* sub may potentially have an eval
1236      * excuted within it.
1237      */
1238
1239     if (PL_cv_has_eval || PL_perldb) {
1240         const CV *cv;
1241         for (cv = PL_compcv ;cv; cv = CvOUTSIDE(cv)) {
1242             if (cv != PL_compcv && CvCOMPILED(cv))
1243                 break; /* no need to mark already-compiled code */
1244             if (CvANON(cv)) {
1245                 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1246                     "Pad clone on cv=0x%"UVxf"\n", PTR2UV(cv)));
1247                 CvCLONE_on(cv);
1248             }
1249         }
1250     }
1251
1252     /* extend curpad to match namepad */
1253     if (AvFILLp(PL_comppad_name) < AvFILLp(PL_comppad))
1254         av_store(PL_comppad_name, AvFILLp(PL_comppad), NULL);
1255
1256     if (type == padtidy_SUBCLONE) {
1257         SV * const * const namep = AvARRAY(PL_comppad_name);
1258         PADOFFSET ix;
1259
1260         for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
1261             SV *namesv;
1262
1263             if (SvIMMORTAL(PL_curpad[ix]) || IS_PADGV(PL_curpad[ix]) || IS_PADCONST(PL_curpad[ix]))
1264                 continue;
1265             /*
1266              * The only things that a clonable function needs in its
1267              * pad are anonymous subs.
1268              * The rest are created anew during cloning.
1269              */
1270             if (!((namesv = namep[ix]) != NULL &&
1271                   namesv != &PL_sv_undef &&
1272                    *SvPVX_const(namesv) == '&'))
1273             {
1274                 SvREFCNT_dec(PL_curpad[ix]);
1275                 PL_curpad[ix] = NULL;
1276             }
1277         }
1278     }
1279     else if (type == padtidy_SUB) {
1280         /* XXX DAPM this same bit of code keeps appearing !!! Rationalise? */
1281         AV * const av = newAV();                        /* Will be @_ */
1282         av_extend(av, 0);
1283         av_store(PL_comppad, 0, MUTABLE_SV(av));
1284         AvREIFY_only(av);
1285     }
1286
1287     /* XXX DAPM rationalise these two similar branches */
1288
1289     if (type == padtidy_SUB) {
1290         PADOFFSET ix;
1291         for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
1292             if (SvIMMORTAL(PL_curpad[ix]) || IS_PADGV(PL_curpad[ix]) || IS_PADCONST(PL_curpad[ix]))
1293                 continue;
1294             if (!SvPADMY(PL_curpad[ix]))
1295                 SvPADTMP_on(PL_curpad[ix]);
1296         }
1297     }
1298     else if (type == padtidy_FORMAT) {
1299         PADOFFSET ix;
1300         for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
1301             if (!SvPADMY(PL_curpad[ix]) && !SvIMMORTAL(PL_curpad[ix]))
1302                 SvPADTMP_on(PL_curpad[ix]);
1303         }
1304     }
1305     PL_curpad = AvARRAY(PL_comppad);
1306 }
1307
1308
1309 /*
1310 =for apidoc pad_free
1311
1312 Free the SV at offset po in the current pad.
1313
1314 =cut
1315 */
1316
1317 /* XXX DAPM integrate with pad_swipe ???? */
1318 void
1319 Perl_pad_free(pTHX_ PADOFFSET po)
1320 {
1321     dVAR;
1322     ASSERT_CURPAD_LEGAL("pad_free");
1323     if (!PL_curpad)
1324         return;
1325     if (AvARRAY(PL_comppad) != PL_curpad)
1326         Perl_croak(aTHX_ "panic: pad_free curpad");
1327     if (!po)
1328         Perl_croak(aTHX_ "panic: pad_free po");
1329
1330     DEBUG_X(PerlIO_printf(Perl_debug_log,
1331             "Pad 0x%"UVxf"[0x%"UVxf"] free:    %ld\n",
1332             PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po)
1333     );
1334
1335     if (PL_curpad[po] && PL_curpad[po] != &PL_sv_undef) {
1336         SvPADTMP_off(PL_curpad[po]);
1337 #ifdef USE_ITHREADS
1338         /* SV could be a shared hash key (eg bugid #19022) */
1339         if (!SvIsCOW(PL_curpad[po]))
1340             SvREADONLY_off(PL_curpad[po]);      /* could be a freed constant */
1341 #endif
1342     }
1343     if ((I32)po < PL_padix)
1344         PL_padix = po - 1;
1345 }
1346
1347
1348
1349 /*
1350 =for apidoc do_dump_pad
1351
1352 Dump the contents of a padlist
1353
1354 =cut
1355 */
1356
1357 void
1358 Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full)
1359 {
1360     dVAR;
1361     const AV *pad_name;
1362     const AV *pad;
1363     SV **pname;
1364     SV **ppad;
1365     I32 ix;
1366
1367     PERL_ARGS_ASSERT_DO_DUMP_PAD;
1368
1369     if (!padlist) {
1370         return;
1371     }
1372     pad_name = MUTABLE_AV(*av_fetch(MUTABLE_AV(padlist), 0, FALSE));
1373     pad = MUTABLE_AV(*av_fetch(MUTABLE_AV(padlist), 1, FALSE));
1374     pname = AvARRAY(pad_name);
1375     ppad = AvARRAY(pad);
1376     Perl_dump_indent(aTHX_ level, file,
1377             "PADNAME = 0x%"UVxf"(0x%"UVxf") PAD = 0x%"UVxf"(0x%"UVxf")\n",
1378             PTR2UV(pad_name), PTR2UV(pname), PTR2UV(pad), PTR2UV(ppad)
1379     );
1380
1381     for (ix = 1; ix <= AvFILLp(pad_name); ix++) {
1382         const SV *namesv = pname[ix];
1383         if (namesv && namesv == &PL_sv_undef) {
1384             namesv = NULL;
1385         }
1386         if (namesv) {
1387             if (SvFAKE(namesv))
1388                 Perl_dump_indent(aTHX_ level+1, file,
1389                     "%2d. 0x%"UVxf"<%lu> FAKE \"%s\" flags=0x%lx index=%lu\n",
1390                     (int) ix,
1391                     PTR2UV(ppad[ix]),
1392                     (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
1393                     SvPVX_const(namesv),
1394                     (unsigned long)PARENT_FAKELEX_FLAGS(namesv),
1395                     (unsigned long)PARENT_PAD_INDEX(namesv)
1396
1397                 );
1398             else
1399                 Perl_dump_indent(aTHX_ level+1, file,
1400                     "%2d. 0x%"UVxf"<%lu> (%lu,%lu) \"%s\"\n",
1401                     (int) ix,
1402                     PTR2UV(ppad[ix]),
1403                     (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
1404                     (unsigned long)COP_SEQ_RANGE_LOW(namesv),
1405                     (unsigned long)COP_SEQ_RANGE_HIGH(namesv),
1406                     SvPVX_const(namesv)
1407                 );
1408         }
1409         else if (full) {
1410             Perl_dump_indent(aTHX_ level+1, file,
1411                 "%2d. 0x%"UVxf"<%lu>\n",
1412                 (int) ix,
1413                 PTR2UV(ppad[ix]),
1414                 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0)
1415             );
1416         }
1417     }
1418 }
1419
1420
1421
1422 /*
1423 =for apidoc cv_dump
1424
1425 dump the contents of a CV
1426
1427 =cut
1428 */
1429
1430 #ifdef DEBUGGING
1431 STATIC void
1432 S_cv_dump(pTHX_ const CV *cv, const char *title)
1433 {
1434     dVAR;
1435     const CV * const outside = CvOUTSIDE(cv);
1436     AV* const padlist = CvPADLIST(cv);
1437
1438     PERL_ARGS_ASSERT_CV_DUMP;
1439
1440     PerlIO_printf(Perl_debug_log,
1441                   "  %s: CV=0x%"UVxf" (%s), OUTSIDE=0x%"UVxf" (%s)\n",
1442                   title,
1443                   PTR2UV(cv),
1444                   (CvANON(cv) ? "ANON"
1445                    : (SvTYPE(cv) == SVt_PVFM) ? "FORMAT"
1446                    : (cv == PL_main_cv) ? "MAIN"
1447                    : CvUNIQUE(cv) ? "UNIQUE"
1448                    : CvGV(cv) ? GvNAME(CvGV(cv)) : "UNDEFINED"),
1449                   PTR2UV(outside),
1450                   (!outside ? "null"
1451                    : CvANON(outside) ? "ANON"
1452                    : (outside == PL_main_cv) ? "MAIN"
1453                    : CvUNIQUE(outside) ? "UNIQUE"
1454                    : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
1455
1456     PerlIO_printf(Perl_debug_log,
1457                     "    PADLIST = 0x%"UVxf"\n", PTR2UV(padlist));
1458     do_dump_pad(1, Perl_debug_log, padlist, 1);
1459 }
1460 #endif /* DEBUGGING */
1461
1462
1463
1464
1465
1466 /*
1467 =for apidoc cv_clone
1468
1469 Clone a CV: make a new CV which points to the same code etc, but which
1470 has a newly-created pad built by copying the prototype pad and capturing
1471 any outer lexicals.
1472
1473 =cut
1474 */
1475
1476 CV *
1477 Perl_cv_clone(pTHX_ CV *proto)
1478 {
1479     dVAR;
1480     I32 ix;
1481     AV* const protopadlist = CvPADLIST(proto);
1482     const AV *const protopad_name = (const AV *)*av_fetch(protopadlist, 0, FALSE);
1483     const AV *const protopad = (const AV *)*av_fetch(protopadlist, 1, FALSE);
1484     SV** const pname = AvARRAY(protopad_name);
1485     SV** const ppad = AvARRAY(protopad);
1486     const I32 fname = AvFILLp(protopad_name);
1487     const I32 fpad = AvFILLp(protopad);
1488     CV* cv;
1489     SV** outpad;
1490     CV* outside;
1491     long depth;
1492
1493     PERL_ARGS_ASSERT_CV_CLONE;
1494
1495     assert(!CvUNIQUE(proto));
1496
1497     /* Since cloneable anon subs can be nested, CvOUTSIDE may point
1498      * to a prototype; we instead want the cloned parent who called us.
1499      * Note that in general for formats, CvOUTSIDE != find_runcv */
1500
1501     outside = CvOUTSIDE(proto);
1502     if (outside && CvCLONE(outside) && ! CvCLONED(outside))
1503         outside = find_runcv(NULL);
1504     depth = CvDEPTH(outside);
1505     assert(depth || SvTYPE(proto) == SVt_PVFM);
1506     if (!depth)
1507         depth = 1;
1508     assert(CvPADLIST(outside));
1509
1510     ENTER;
1511     SAVESPTR(PL_compcv);
1512
1513     cv = PL_compcv = MUTABLE_CV(newSV_type(SvTYPE(proto)));
1514     CvFLAGS(cv) = CvFLAGS(proto) & ~(CVf_CLONE|CVf_WEAKOUTSIDE);
1515     CvCLONED_on(cv);
1516
1517 #ifdef USE_ITHREADS
1518     CvFILE(cv)          = CvISXSUB(proto) ? CvFILE(proto)
1519                                           : savepv(CvFILE(proto));
1520 #else
1521     CvFILE(cv)          = CvFILE(proto);
1522 #endif
1523     CvGV(cv)            = CvGV(proto);
1524     CvSTASH(cv)         = CvSTASH(proto);
1525     OP_REFCNT_LOCK;
1526     CvROOT(cv)          = OpREFCNT_inc(CvROOT(proto));
1527     OP_REFCNT_UNLOCK;
1528     CvSTART(cv)         = CvSTART(proto);
1529     CvOUTSIDE(cv)       = MUTABLE_CV(SvREFCNT_inc_simple(outside));
1530     CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(proto);
1531
1532     if (SvPOK(proto))
1533         sv_setpvn(MUTABLE_SV(cv), SvPVX_const(proto), SvCUR(proto));
1534
1535     CvPADLIST(cv) = pad_new(padnew_CLONE|padnew_SAVE);
1536
1537     av_fill(PL_comppad, fpad);
1538     for (ix = fname; ix >= 0; ix--)
1539         av_store(PL_comppad_name, ix, SvREFCNT_inc(pname[ix]));
1540
1541     PL_curpad = AvARRAY(PL_comppad);
1542
1543     outpad = AvARRAY(AvARRAY(CvPADLIST(outside))[depth]);
1544
1545     for (ix = fpad; ix > 0; ix--) {
1546         SV* const namesv = (ix <= fname) ? pname[ix] : NULL;
1547         SV *sv = NULL;
1548         if (namesv && namesv != &PL_sv_undef) { /* lexical */
1549             if (SvFAKE(namesv)) {   /* lexical from outside? */
1550                 sv = outpad[PARENT_PAD_INDEX(namesv)];
1551                 assert(sv);
1552                 /* formats may have an inactive parent,
1553                    while my $x if $false can leave an active var marked as
1554                    stale. And state vars are always available */
1555                 if (SvPADSTALE(sv) && !SvPAD_STATE(namesv)) {
1556                     Perl_ck_warner(aTHX_ packWARN(WARN_CLOSURE),
1557                                    "Variable \"%s\" is not available", SvPVX_const(namesv));
1558                     sv = NULL;
1559                 }
1560                 else 
1561                     SvREFCNT_inc_simple_void_NN(sv);
1562             }
1563             if (!sv) {
1564                 const char sigil = SvPVX_const(namesv)[0];
1565                 if (sigil == '&')
1566                     sv = SvREFCNT_inc(ppad[ix]);
1567                 else if (sigil == '@')
1568                     sv = MUTABLE_SV(newAV());
1569                 else if (sigil == '%')
1570                     sv = MUTABLE_SV(newHV());
1571                 else
1572                     sv = newSV(0);
1573                 SvPADMY_on(sv);
1574                 /* reset the 'assign only once' flag on each state var */
1575                 if (SvPAD_STATE(namesv))
1576                     SvPADSTALE_on(sv);
1577             }
1578         }
1579         else if (IS_PADGV(ppad[ix]) || IS_PADCONST(ppad[ix])) {
1580             sv = SvREFCNT_inc_NN(ppad[ix]);
1581         }
1582         else {
1583             sv = newSV(0);
1584             SvPADTMP_on(sv);
1585         }
1586         PL_curpad[ix] = sv;
1587     }
1588
1589     DEBUG_Xv(
1590         PerlIO_printf(Perl_debug_log, "\nPad CV clone\n");
1591         cv_dump(outside, "Outside");
1592         cv_dump(proto,   "Proto");
1593         cv_dump(cv,      "To");
1594     );
1595
1596     LEAVE;
1597
1598     if (CvCONST(cv)) {
1599         /* Constant sub () { $x } closing over $x - see lib/constant.pm:
1600          * The prototype was marked as a candiate for const-ization,
1601          * so try to grab the current const value, and if successful,
1602          * turn into a const sub:
1603          */
1604         SV* const const_sv = op_const_sv(CvSTART(cv), cv);
1605         if (const_sv) {
1606             SvREFCNT_dec(cv);
1607             cv = newCONSTSUB(CvSTASH(proto), NULL, const_sv);
1608         }
1609         else {
1610             CvCONST_off(cv);
1611         }
1612     }
1613
1614     return cv;
1615 }
1616
1617
1618 /*
1619 =for apidoc pad_fixup_inner_anons
1620
1621 For any anon CVs in the pad, change CvOUTSIDE of that CV from
1622 old_cv to new_cv if necessary. Needed when a newly-compiled CV has to be
1623 moved to a pre-existing CV struct.
1624
1625 =cut
1626 */
1627
1628 void
1629 Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv)
1630 {
1631     dVAR;
1632     I32 ix;
1633     AV * const comppad_name = MUTABLE_AV(AvARRAY(padlist)[0]);
1634     AV * const comppad = MUTABLE_AV(AvARRAY(padlist)[1]);
1635     SV ** const namepad = AvARRAY(comppad_name);
1636     SV ** const curpad = AvARRAY(comppad);
1637
1638     PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS;
1639     PERL_UNUSED_ARG(old_cv);
1640
1641     for (ix = AvFILLp(comppad_name); ix > 0; ix--) {
1642         const SV * const namesv = namepad[ix];
1643         if (namesv && namesv != &PL_sv_undef
1644             && *SvPVX_const(namesv) == '&')
1645         {
1646             CV * const innercv = MUTABLE_CV(curpad[ix]);
1647             assert(CvWEAKOUTSIDE(innercv));
1648             assert(CvOUTSIDE(innercv) == old_cv);
1649             CvOUTSIDE(innercv) = new_cv;
1650         }
1651     }
1652 }
1653
1654
1655 /*
1656 =for apidoc pad_push
1657
1658 Push a new pad frame onto the padlist, unless there's already a pad at
1659 this depth, in which case don't bother creating a new one.  Then give
1660 the new pad an @_ in slot zero.
1661
1662 =cut
1663 */
1664
1665 void
1666 Perl_pad_push(pTHX_ PADLIST *padlist, int depth)
1667 {
1668     dVAR;
1669
1670     PERL_ARGS_ASSERT_PAD_PUSH;
1671
1672     if (depth > AvFILLp(padlist)) {
1673         SV** const svp = AvARRAY(padlist);
1674         AV* const newpad = newAV();
1675         SV** const oldpad = AvARRAY(svp[depth-1]);
1676         I32 ix = AvFILLp((const AV *)svp[1]);
1677         const I32 names_fill = AvFILLp((const AV *)svp[0]);
1678         SV** const names = AvARRAY(svp[0]);
1679         AV *av;
1680
1681         for ( ;ix > 0; ix--) {
1682             if (names_fill >= ix && names[ix] != &PL_sv_undef) {
1683                 const char sigil = SvPVX_const(names[ix])[0];
1684                 if ((SvFLAGS(names[ix]) & SVf_FAKE)
1685                         || (SvFLAGS(names[ix]) & SVpad_STATE)
1686                         || sigil == '&')
1687                 {
1688                     /* outer lexical or anon code */
1689                     av_store(newpad, ix, SvREFCNT_inc(oldpad[ix]));
1690                 }
1691                 else {          /* our own lexical */
1692                     SV *sv; 
1693                     if (sigil == '@')
1694                         sv = MUTABLE_SV(newAV());
1695                     else if (sigil == '%')
1696                         sv = MUTABLE_SV(newHV());
1697                     else
1698                         sv = newSV(0);
1699                     av_store(newpad, ix, sv);
1700                     SvPADMY_on(sv);
1701                 }
1702             }
1703             else if (IS_PADGV(oldpad[ix]) || IS_PADCONST(oldpad[ix])) {
1704                 av_store(newpad, ix, SvREFCNT_inc_NN(oldpad[ix]));
1705             }
1706             else {
1707                 /* save temporaries on recursion? */
1708                 SV * const sv = newSV(0);
1709                 av_store(newpad, ix, sv);
1710                 SvPADTMP_on(sv);
1711             }
1712         }
1713         av = newAV();
1714         av_extend(av, 0);
1715         av_store(newpad, 0, MUTABLE_SV(av));
1716         AvREIFY_only(av);
1717
1718         av_store(padlist, depth, MUTABLE_SV(newpad));
1719         AvFILLp(padlist) = depth;
1720     }
1721 }
1722
1723
1724 HV *
1725 Perl_pad_compname_type(pTHX_ const PADOFFSET po)
1726 {
1727     dVAR;
1728     SV* const * const av = av_fetch(PL_comppad_name, po, FALSE);
1729     if ( SvPAD_TYPED(*av) ) {
1730         return SvSTASH(*av);
1731     }
1732     return NULL;
1733 }
1734
1735 /*
1736  * Local variables:
1737  * c-indentation-style: bsd
1738  * c-basic-offset: 4
1739  * indent-tabs-mode: t
1740  * End:
1741  *
1742  * ex: set ts=8 sts=4 sw=4 noet:
1743  */