This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for ba0a4150f
[perl5.git] / pad.c
CommitLineData
dd2155a4
DM
1/* pad.c
2 *
1129b882
NC
3 * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 * by Larry Wall and others
dd2155a4
DM
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.
4ac71550
TC
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
dd2155a4 17 *
4ac71550 18 * [p.23 of _The Lord of the Rings_, I/i: "A Long-Expected Party"]
dd2155a4
DM
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
cc76b5cc 30=for apidoc Amx|PADLIST *|CvPADLIST|CV *cv
166f8a29 31
58a9b2fe 32CV's can have CvPADLIST(cv) set to point to a PADLIST. This is the CV's
cc76b5cc
Z
33scratchpad, which stores lexical variables and opcode temporary and
34per-thread values.
dd2155a4 35
58a9b2fe 36For these purposes "formats" are a kind-of CV; eval""s are too (except they're
dd2155a4 37not callable at will and are always thrown away after the eval"" is done
58a9b2fe 38executing). Require'd files are simply evals without any outer lexical
b5c19bd7 39scope.
dd2155a4 40
796b6530 41XSUBs do not have a C<CvPADLIST>. C<dXSTARG> fetches values from C<PL_curpad>,
dd2155a4 42but that is really the callers pad (a slot of which is allocated by
796b6530
KW
43every entersub). Do not get or set C<CvPADLIST> if a CV is an XSUB (as
44determined by C<CvISXSUB()>), C<CvPADLIST> slot is reused for a different
eacbb379 45internal purpose in XSUBs.
dd2155a4 46
58a9b2fe 47The PADLIST has a C array where pads are stored.
dd2155a4 48
9b7476d7
FC
49The 0th entry of the PADLIST is a PADNAMELIST
50which represents the "names" or rather
58a9b2fe 51the "static type information" for lexicals. The individual elements of a
9b7476d7 52PADNAMELIST are PADNAMEs. Future
7a5eb04d 53refactorings might stop the PADNAMELIST from being stored in the PADLIST's
86d2498c 54array, so don't rely on it. See L</PadlistNAMES>.
dd2155a4 55
58a9b2fe
FC
56The CvDEPTH'th entry of a PADLIST is a PAD (an AV) which is the stack frame
57at that depth of recursion into the CV. The 0th slot of a frame AV is an
796b6530 58AV which is C<@_>. Other entries are storage for variables and op targets.
dd2155a4 59
58a9b2fe 60Iterating over the PADNAMELIST iterates over all possible pad
796b6530 61items. Pad slots for targets (C<SVs_PADTMP>)
307a54be 62and GVs end up having &PL_padname_undef "names", while slots for constants
796b6530
KW
63have C<&PL_padname_const> "names" (see C<L</pad_alloc>>). That
64C<&PL_padname_undef>
65and C<&PL_padname_const> are used is an implementation detail subject to
66change. To test for them, use C<!PadnamePV(name)> and
61b16eb9 67S<C<PadnamePV(name) && !PadnameLEN(name)>>, respectively.
dd2155a4 68
796b6530 69Only C<my>/C<our> variable slots get valid names.
dd2155a4
DM
70The rest are op targets/GVs/constants which are statically allocated
71or resolved at compile time. These don't have names by which they
58a9b2fe 72can be looked up from Perl code at run time through eval"" the way
796b6530 73C<my>/C<our> variables can be. Since they can't be looked up by "name"
dd2155a4 74but only by their index allocated at compile time (which is usually
796b6530 75in C<PL_op->op_targ>), wasting a name SV for them doesn't make sense.
dd2155a4 76
307a54be 77The pad names in the PADNAMELIST have their PV holding the name of
796b6530 78the variable. The C<COP_SEQ_RANGE_LOW> and C<_HIGH> fields form a range
307a54be
FC
79(low+1..high inclusive) of cop_seq numbers for which the name is
80valid. During compilation, these fields may hold the special value
61f4bfbf 81PERL_PADSEQ_INTRO to indicate various stages:
0d311cdb 82
8560fbdd
KW
83 COP_SEQ_RANGE_LOW _HIGH
84 ----------------- -----
85 PERL_PADSEQ_INTRO 0 variable not yet introduced:
86 { my ($x
87 valid-seq# PERL_PADSEQ_INTRO variable in scope:
88 { my ($x)
89 valid-seq# valid-seq# compilation of scope complete:
90 { my ($x) }
0d311cdb 91
796b6530
KW
92For typed lexicals C<PadnameTYPE> points at the type stash. For C<our>
93lexicals, C<PadnameOURSTASH> points at the stash of the associated global (so
307a54be 94that duplicate C<our> declarations in the same package can be detected).
796b6530 95C<PadnameGEN> is sometimes used to store the generation number during
307a54be
FC
96compilation.
97
796b6530 98If C<PadnameOUTER> is set on the pad name, then that slot in the frame AV
307a54be
FC
99is a REFCNT'ed reference to a lexical from "outside". Such entries
100are sometimes referred to as 'fake'. In this case, the name does not
101use 'low' and 'high' to store a cop_seq range, since it is in scope
102throughout. Instead 'high' stores some flags containing info about
b5c19bd7 103the real lexical (is it declared in an anon, and is it capable of being
307a54be 104instantiated multiple times?), and for fake ANONs, 'low' contains the index
b5c19bd7
DM
105within the parent's pad where the lexical's value is stored, to make
106cloning quicker.
dd2155a4 107
796b6530 108If the 'name' is C<&> the corresponding entry in the PAD
dd2155a4 109is a CV representing a possible closure.
dd2155a4 110
71f882da
DM
111Note that formats are treated as anon subs, and are cloned each time
112write is called (if necessary).
113
796b6530 114The flag C<SVs_PADSTALE> is cleared on lexicals each time the C<my()> is executed,
58a9b2fe 115and set on scope exit. This allows the
796b6530 116C<"Variable $x is not available"> warning
e6e7068b
DM
117to be generated in evals, such as
118
119 { my $x = 1; sub f { eval '$x'} } f();
120
796b6530 121For state vars, C<SVs_PADSTALE> is overloaded to mean 'not yet initialised',
c9956dca 122but this internal state is stored in a separate pad entry.
d1186544 123
36c300bb 124=for apidoc AmxU|PADNAMELIST *|PL_comppad_name
cc76b5cc
Z
125
126During compilation, this points to the array containing the names part
127of the pad for the currently-compiling code.
128
36c300bb 129=for apidoc AmxU|PAD *|PL_comppad
cc76b5cc
Z
130
131During compilation, this points to the array containing the values
132part of the pad for the currently-compiling code. (At runtime a CV may
133have many such value arrays; at compile time just one is constructed.)
134At runtime, this points to the array containing the currently-relevant
135values for the pad for the currently-executing code.
136
137=for apidoc AmxU|SV **|PL_curpad
138
139Points directly to the body of the L</PL_comppad> array.
c14a2249 140(I.e., this is C<PAD_ARRAY(PL_comppad)>.)
cc76b5cc 141
dd2155a4
DM
142=cut
143*/
144
145
146#include "EXTERN.h"
147#define PERL_IN_PAD_C
148#include "perl.h"
952306ac 149#include "keywords.h"
dd2155a4 150
3441fb63 151#define COP_SEQ_RANGE_LOW_set(sv,val) \
0f94cb1f 152 STMT_START { (sv)->xpadn_low = (val); } STMT_END
3441fb63 153#define COP_SEQ_RANGE_HIGH_set(sv,val) \
0f94cb1f 154 STMT_START { (sv)->xpadn_high = (val); } STMT_END
809abb02 155
0f94cb1f
FC
156#define PARENT_PAD_INDEX_set COP_SEQ_RANGE_LOW_set
157#define PARENT_FAKELEX_FLAGS_set COP_SEQ_RANGE_HIGH_set
dd2155a4 158
eacbb379
DD
159#ifdef DEBUGGING
160void
e69651e7 161Perl_set_padlist(CV * cv, PADLIST *padlist){
eacbb379
DD
162 PERL_ARGS_ASSERT_SET_PADLIST;
163# if PTRSIZE == 8
e5964223 164 assert((Size_t)padlist != UINT64_C(0xEFEFEFEFEFEFEFEF));
eacbb379 165# elif PTRSIZE == 4
a1c99363 166 assert((Size_t)padlist != 0xEFEFEFEF);
eacbb379
DD
167# else
168# error unknown pointer size
169# endif
e5964223 170 assert(!CvISXSUB(cv));
eacbb379
DD
171 ((XPVCV*)MUTABLE_PTR(SvANY(cv)))->xcv_padlist_u.xcv_padlist = padlist;
172}
173#endif
5b16296c
BF
174
175/*
cc76b5cc 176=for apidoc Am|PADLIST *|pad_new|int flags
dd2155a4 177
cc76b5cc
Z
178Create a new padlist, updating the global variables for the
179currently-compiling padlist to point to the new padlist. The following
180flags can be OR'ed together:
dd2155a4
DM
181
182 padnew_CLONE this pad is for a cloned CV
cc76b5cc 183 padnew_SAVE save old globals on the save stack
dd2155a4
DM
184 padnew_SAVESUB also save extra stuff for start of sub
185
186=cut
187*/
188
189PADLIST *
c7c737cb 190Perl_pad_new(pTHX_ int flags)
dd2155a4 191{
7261499d 192 PADLIST *padlist;
9b7476d7
FC
193 PADNAMELIST *padname;
194 PAD *pad;
7261499d 195 PAD **ary;
dd2155a4 196
f3548bdc
DM
197 ASSERT_CURPAD_LEGAL("pad_new");
198
dd2155a4
DM
199 /* XXX DAPM really need a new SAVEt_PAD which restores all or most
200 * vars (based on flags) rather than storing vals + addresses for
201 * each individually. Also see pad_block_start.
202 * XXX DAPM Try to see whether all these conditionals are required
203 */
204
205 /* save existing state, ... */
206
207 if (flags & padnew_SAVE) {
3979c56f 208 SAVECOMPPAD();
dd2155a4 209 if (! (flags & padnew_CLONE)) {
cbacc9aa 210 SAVESPTR(PL_comppad_name);
dd2155a4 211 SAVEI32(PL_padix);
b54c5e14 212 SAVEI32(PL_constpadix);
dd2155a4
DM
213 SAVEI32(PL_comppad_name_fill);
214 SAVEI32(PL_min_intro_pending);
215 SAVEI32(PL_max_intro_pending);
8bbe96d7 216 SAVEBOOL(PL_cv_has_eval);
dd2155a4 217 if (flags & padnew_SAVESUB) {
f0cb02e3 218 SAVEBOOL(PL_pad_reset_pending);
dd2155a4
DM
219 }
220 }
221 }
222 /* XXX DAPM interestingly, PL_comppad_name_floor never seems to be
223 * saved - check at some pt that this is okay */
224
225 /* ... create new pad ... */
226
7261499d 227 Newxz(padlist, 1, PADLIST);
dd2155a4
DM
228 pad = newAV();
229
230 if (flags & padnew_CLONE) {
231 /* XXX DAPM I dont know why cv_clone needs it
232 * doing differently yet - perhaps this separate branch can be
233 * dispensed with eventually ???
234 */
235
e1ec3a88 236 AV * const a0 = newAV(); /* will be @_ */
ad64d0ec 237 av_store(pad, 0, MUTABLE_SV(a0));
11ca45c0 238 AvREIFY_only(a0);
9ef8d569 239
9b7476d7 240 PadnamelistREFCNT(padname = PL_comppad_name)++;
dd2155a4
DM
241 }
242 else {
b4db5868 243 padlist->xpadl_id = PL_padlist_generation++;
a0714e2c 244 av_store(pad, 0, NULL);
9b7476d7 245 padname = newPADNAMELIST(0);
0f94cb1f 246 padnamelist_store(padname, 0, &PL_padname_undef);
dd2155a4
DM
247 }
248
7a6072a8
NC
249 /* Most subroutines never recurse, hence only need 2 entries in the padlist
250 array - names, and depth=1. The default for av_store() is to allocate
251 0..3, and even an explicit call to av_extend() with <3 will be rounded
252 up, so we inline the allocation of the array here. */
7261499d 253 Newx(ary, 2, PAD *);
86d2498c
FC
254 PadlistMAX(padlist) = 1;
255 PadlistARRAY(padlist) = ary;
9b7476d7 256 ary[0] = (PAD *)padname;
7261499d 257 ary[1] = pad;
dd2155a4
DM
258
259 /* ... then update state variables */
260
403799bf
NC
261 PL_comppad = pad;
262 PL_curpad = AvARRAY(pad);
dd2155a4
DM
263
264 if (! (flags & padnew_CLONE)) {
9ef8d569 265 PL_comppad_name = padname;
dd2155a4
DM
266 PL_comppad_name_fill = 0;
267 PL_min_intro_pending = 0;
268 PL_padix = 0;
b54c5e14 269 PL_constpadix = 0;
b5c19bd7 270 PL_cv_has_eval = 0;
dd2155a4
DM
271 }
272
273 DEBUG_X(PerlIO_printf(Perl_debug_log,
b5c19bd7 274 "Pad 0x%"UVxf"[0x%"UVxf"] new: compcv=0x%"UVxf
dd2155a4 275 " name=0x%"UVxf" flags=0x%"UVxf"\n",
b5c19bd7 276 PTR2UV(PL_comppad), PTR2UV(PL_curpad), PTR2UV(PL_compcv),
dd2155a4
DM
277 PTR2UV(padname), (UV)flags
278 )
279 );
280
281 return (PADLIST*)padlist;
282}
283
dd2155a4 284
c4528262
NC
285/*
286=head1 Embedding Functions
287
288=for apidoc cv_undef
289
72d33970 290Clear out all the active components of a CV. This can happen either
c4528262 291by an explicit C<undef &foo>, or by the reference count going to zero.
796b6530 292In the former case, we keep the C<CvOUTSIDE> pointer, so that any anonymous
c4528262
NC
293children can still follow the full lexical scope chain.
294
295=cut
296*/
297
298void
299Perl_cv_undef(pTHX_ CV *cv)
300{
b7acb0a3
FC
301 PERL_ARGS_ASSERT_CV_UNDEF;
302 cv_undef_flags(cv, 0);
303}
304
305void
306Perl_cv_undef_flags(pTHX_ CV *cv, U32 flags)
307{
52ec28d5
DD
308 CV cvbody;/*CV body will never be realloced inside this func,
309 so dont read it more than once, use fake CV so existing macros
310 will work, the indirection and CV head struct optimized away*/
311 SvANY(&cvbody) = SvANY(cv);
c4528262 312
b7acb0a3 313 PERL_ARGS_ASSERT_CV_UNDEF_FLAGS;
c4528262
NC
314
315 DEBUG_X(PerlIO_printf(Perl_debug_log,
316 "CV undef: cv=0x%"UVxf" comppad=0x%"UVxf"\n",
317 PTR2UV(cv), PTR2UV(PL_comppad))
318 );
319
52ec28d5
DD
320 if (CvFILE(&cvbody)) {
321 char * file = CvFILE(&cvbody);
322 CvFILE(&cvbody) = NULL;
323 if(CvDYNFILE(&cvbody))
324 Safefree(file);
c4528262 325 }
dd2155a4 326
52ec28d5
DD
327 /* CvSLABBED_off(&cvbody); *//* turned off below */
328 /* release the sub's body */
329 if (!CvISXSUB(&cvbody)) {
330 if(CvROOT(&cvbody)) {
331 assert(SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM); /*unsafe is safe */
332 if (CvDEPTHunsafe(&cvbody)) {
333 assert(SvTYPE(cv) == SVt_PVCV);
334 Perl_croak_nocontext("Can't undef active subroutine");
335 }
336 ENTER;
337
338 PAD_SAVE_SETNULLPAD();
339
340 if (CvSLABBED(&cvbody)) OpslabREFCNT_dec_padok(OpSLAB(CvROOT(&cvbody)));
341 op_free(CvROOT(&cvbody));
342 CvROOT(&cvbody) = NULL;
343 CvSTART(&cvbody) = NULL;
344 LEAVE;
345 }
346 else if (CvSLABBED(&cvbody)) {
347 if( CvSTART(&cvbody)) {
348 ENTER;
349 PAD_SAVE_SETNULLPAD();
350
351 /* discard any leaked ops */
352 if (PL_parser)
353 parser_free_nexttoke_ops(PL_parser, (OPSLAB *)CvSTART(&cvbody));
354 opslab_force_free((OPSLAB *)CvSTART(&cvbody));
355 CvSTART(&cvbody) = NULL;
356
357 LEAVE;
358 }
7aef8e5b 359#ifdef DEBUGGING
52ec28d5 360 else Perl_warn(aTHX_ "Slab leaked from cv %p", (void*)cv);
8be227ab 361#endif
52ec28d5
DD
362 }
363 }
364 else { /* dont bother checking if CvXSUB(cv) is true, less branching */
365 CvXSUB(&cvbody) = NULL;
366 }
c4528262 367 SvPOK_off(MUTABLE_SV(cv)); /* forget prototype */
2f14e398 368 sv_unmagic((SV *)cv, PERL_MAGIC_checkcall);
b7acb0a3 369 if (!(flags & CV_UNDEF_KEEP_NAME)) {
52ec28d5
DD
370 if (CvNAMED(&cvbody)) {
371 CvNAME_HEK_set(&cvbody, NULL);
372 CvNAMED_off(&cvbody);
b7acb0a3
FC
373 }
374 else CvGV_set(cv, NULL);
375 }
c4528262 376
c2736fce
NC
377 /* This statement and the subsequence if block was pad_undef(). */
378 pad_peg("pad_undef");
379
eacbb379 380 if (!CvISXSUB(&cvbody) && CvPADLIST(&cvbody)) {
c2736fce 381 I32 ix;
52ec28d5 382 const PADLIST *padlist = CvPADLIST(&cvbody);
c2736fce
NC
383
384 /* Free the padlist associated with a CV.
385 If parts of it happen to be current, we null the relevant PL_*pad*
386 global vars so that we don't have any dangling references left.
387 We also repoint the CvOUTSIDE of any about-to-be-orphaned inner
388 subs to the outer of this cv. */
389
390 DEBUG_X(PerlIO_printf(Perl_debug_log,
391 "Pad undef: cv=0x%"UVxf" padlist=0x%"UVxf" comppad=0x%"UVxf"\n",
392 PTR2UV(cv), PTR2UV(padlist), PTR2UV(PL_comppad))
393 );
394
395 /* detach any '&' anon children in the pad; if afterwards they
396 * are still live, fix up their CvOUTSIDEs to point to our outside,
397 * bypassing us. */
398 /* XXX DAPM for efficiency, we should only do this if we know we have
399 * children, or integrate this loop with general cleanup */
400
401 if (PL_phase != PERL_PHASE_DESTRUCT) { /* don't bother during global destruction */
52ec28d5
DD
402 CV * const outercv = CvOUTSIDE(&cvbody);
403 const U32 seq = CvOUTSIDE_SEQ(&cvbody);
9b7476d7 404 PADNAMELIST * const comppad_name = PadlistNAMES(padlist);
cab74fca 405 PADNAME ** const namepad = PadnamelistARRAY(comppad_name);
86d2498c 406 PAD * const comppad = PadlistARRAY(padlist)[1];
c2736fce 407 SV ** const curpad = AvARRAY(comppad);
9b7476d7 408 for (ix = PadnamelistMAX(comppad_name); ix > 0; ix--) {
cab74fca
FC
409 PADNAME * const name = namepad[ix];
410 if (name && PadnamePV(name) && *PadnamePV(name) == '&')
c2736fce
NC
411 {
412 CV * const innercv = MUTABLE_CV(curpad[ix]);
413 U32 inner_rc = SvREFCNT(innercv);
414 assert(inner_rc);
e09ac076 415 assert(SvTYPE(innercv) != SVt_PVFM);
c2736fce
NC
416
417 if (SvREFCNT(comppad) < 2) { /* allow for /(?{ sub{} })/ */
418 curpad[ix] = NULL;
fc2b2dca 419 SvREFCNT_dec_NN(innercv);
c2736fce
NC
420 inner_rc--;
421 }
422
423 /* in use, not just a prototype */
b03210bf
FC
424 if (inner_rc && SvTYPE(innercv) == SVt_PVCV
425 && (CvOUTSIDE(innercv) == cv))
426 {
c2736fce
NC
427 assert(CvWEAKOUTSIDE(innercv));
428 /* don't relink to grandfather if he's being freed */
429 if (outercv && SvREFCNT(outercv)) {
430 CvWEAKOUTSIDE_off(innercv);
431 CvOUTSIDE(innercv) = outercv;
432 CvOUTSIDE_SEQ(innercv) = seq;
433 SvREFCNT_inc_simple_void_NN(outercv);
434 }
435 else {
436 CvOUTSIDE(innercv) = NULL;
437 }
438 }
439 }
440 }
441 }
442
86d2498c 443 ix = PadlistMAX(padlist);
aa2f79cf 444 while (ix > 0) {
86d2498c 445 PAD * const sv = PadlistARRAY(padlist)[ix--];
c2736fce 446 if (sv) {
7261499d 447 if (sv == PL_comppad) {
c2736fce
NC
448 PL_comppad = NULL;
449 PL_curpad = NULL;
450 }
fc2b2dca 451 SvREFCNT_dec_NN(sv);
c2736fce 452 }
aa2f79cf
NC
453 }
454 {
9b7476d7
FC
455 PADNAMELIST * const names = PadlistNAMES(padlist);
456 if (names == PL_comppad_name && PadnamelistREFCNT(names) == 1)
aa2f79cf 457 PL_comppad_name = NULL;
9b7476d7 458 PadnamelistREFCNT_dec(names);
c2736fce 459 }
86d2498c 460 if (PadlistARRAY(padlist)) Safefree(PadlistARRAY(padlist));
7261499d 461 Safefree(padlist);
eacbb379 462 CvPADLIST_set(&cvbody, NULL);
c2736fce 463 }
db6e00bd
DD
464 else if (CvISXSUB(&cvbody))
465 CvHSCXT(&cvbody) = NULL;
eacbb379 466 /* else is (!CvISXSUB(&cvbody) && !CvPADLIST(&cvbody)) {do nothing;} */
c2736fce 467
c4528262
NC
468
469 /* remove CvOUTSIDE unless this is an undef rather than a free */
52ec28d5
DD
470 if (!SvREFCNT(cv)) {
471 CV * outside = CvOUTSIDE(&cvbody);
472 if(outside) {
473 CvOUTSIDE(&cvbody) = NULL;
474 if (!CvWEAKOUTSIDE(&cvbody))
475 SvREFCNT_dec_NN(outside);
476 }
c4528262 477 }
52ec28d5
DD
478 if (CvCONST(&cvbody)) {
479 SvREFCNT_dec(MUTABLE_SV(CvXSUBANY(&cvbody).any_ptr));
480 /* CvCONST_off(cv); *//* turned off below */
c4528262
NC
481 }
482 /* delete all flags except WEAKOUTSIDE and CVGV_RC, which indicate the
b7acb0a3
FC
483 * ref status of CvOUTSIDE and CvGV, and ANON, NAMED and
484 * LEXICAL, which are used to determine the sub's name. */
52ec28d5 485 CvFLAGS(&cvbody) &= (CVf_WEAKOUTSIDE|CVf_CVGV_RC|CVf_ANON|CVf_LEXICAL
b7acb0a3 486 |CVf_NAMED);
c4528262 487}
dd2155a4 488
50dc2bd3
FC
489/*
490=for apidoc cv_forget_slab
491
796b6530 492When a CV has a reference count on its slab (C<CvSLABBED>), it is responsible
50dc2bd3
FC
493for making sure it is freed. (Hence, no two CVs should ever have a
494reference count on the same slab.) The CV only needs to reference the slab
796b6530 495during compilation. Once it is compiled and C<CvROOT> attached, it has
50dc2bd3
FC
496finished its job, so it can forget the slab.
497
498=cut
499*/
500
8be227ab
FC
501void
502Perl_cv_forget_slab(pTHX_ CV *cv)
503{
de0885da 504 bool slabbed;
3107b51f 505 OPSLAB *slab = NULL;
8be227ab 506
de0885da
DM
507 if (!cv)
508 return;
509 slabbed = cBOOL(CvSLABBED(cv));
8be227ab
FC
510 if (!slabbed) return;
511
512 CvSLABBED_off(cv);
513
3107b51f
FC
514 if (CvROOT(cv)) slab = OpSLAB(CvROOT(cv));
515 else if (CvSTART(cv)) slab = (OPSLAB *)CvSTART(cv);
7aef8e5b 516#ifdef DEBUGGING
eb212a1c 517 else if (slabbed) Perl_warn(aTHX_ "Slab leaked from cv %p", (void*)cv);
7aef8e5b 518#endif
3107b51f 519
3107b51f 520 if (slab) {
f3e29105
NC
521#ifdef PERL_DEBUG_READONLY_OPS
522 const size_t refcnt = slab->opslab_refcnt;
523#endif
3107b51f 524 OpslabREFCNT_dec(slab);
f3e29105 525#ifdef PERL_DEBUG_READONLY_OPS
3107b51f 526 if (refcnt > 1) Slab_to_ro(slab);
8be227ab 527#endif
f3e29105 528 }
7aef8e5b 529}
8be227ab 530
cc76b5cc 531/*
307a54be 532=for apidoc m|PADOFFSET|pad_alloc_name|PADNAME *name|U32 flags|HV *typestash|HV *ourstash
cc76b5cc 533
1a115e49
FC
534Allocates a place in the currently-compiling
535pad (via L<perlapi/pad_alloc>) and
2d7f6611 536then stores a name for that entry. C<name> is adopted and
307a54be 537becomes the name entry; it must already contain the name
2d7f6611
KW
538string. C<typestash> and C<ourstash> and the C<padadd_STATE>
539flag get added to C<name>. None of the other
1a115e49 540processing of L<perlapi/pad_add_name_pvn>
cc76b5cc
Z
541is done. Returns the offset of the allocated pad slot.
542
543=cut
544*/
545
3291825f 546static PADOFFSET
e1c02f84
FC
547S_pad_alloc_name(pTHX_ PADNAME *name, U32 flags, HV *typestash,
548 HV *ourstash)
3291825f 549{
3291825f
NC
550 const PADOFFSET offset = pad_alloc(OP_PADSV, SVs_PADMY);
551
cc76b5cc 552 PERL_ARGS_ASSERT_PAD_ALLOC_NAME;
3291825f 553
cc76b5cc 554 ASSERT_CURPAD_ACTIVE("pad_alloc_name");
3291825f
NC
555
556 if (typestash) {
e1c02f84 557 SvPAD_TYPED_on(name);
0f94cb1f
FC
558 PadnameTYPE(name) =
559 MUTABLE_HV(SvREFCNT_inc_simple_NN(MUTABLE_SV(typestash)));
3291825f
NC
560 }
561 if (ourstash) {
e1c02f84
FC
562 SvPAD_OUR_on(name);
563 SvOURSTASH_set(name, ourstash);
3291825f
NC
564 SvREFCNT_inc_simple_void_NN(ourstash);
565 }
59cfed7d 566 else if (flags & padadd_STATE) {
e1c02f84 567 SvPAD_STATE_on(name);
3291825f
NC
568 }
569
0f94cb1f 570 padnamelist_store(PL_comppad_name, offset, name);
dd5d1b89
FC
571 if (PadnameLEN(name) > 1)
572 PadnamelistMAXNAMED(PL_comppad_name) = offset;
3291825f
NC
573 return offset;
574}
575
dd2155a4 576/*
cc76b5cc 577=for apidoc Am|PADOFFSET|pad_add_name_pvn|const char *namepv|STRLEN namelen|U32 flags|HV *typestash|HV *ourstash
dd2155a4 578
cc76b5cc
Z
579Allocates a place in the currently-compiling pad for a named lexical
580variable. Stores the name and other metadata in the name part of the
581pad, and makes preparations to manage the variable's lexical scoping.
582Returns the offset of the allocated pad slot.
dd2155a4 583
2d7f6611
KW
584C<namepv>/C<namelen> specify the variable's name, including leading sigil.
585If C<typestash> is non-null, the name is for a typed lexical, and this
586identifies the type. If C<ourstash> is non-null, it's a lexical reference
cc76b5cc
Z
587to a package variable, and this identifies the package. The following
588flags can be OR'ed together:
589
8560fbdd
KW
590 padadd_OUR redundantly specifies if it's a package var
591 padadd_STATE variable will retain value persistently
592 padadd_NO_DUP_CHECK skip check for lexical shadowing
dd2155a4
DM
593
594=cut
595*/
596
dd2155a4 597PADOFFSET
cc76b5cc
Z
598Perl_pad_add_name_pvn(pTHX_ const char *namepv, STRLEN namelen,
599 U32 flags, HV *typestash, HV *ourstash)
dd2155a4 600{
3291825f 601 PADOFFSET offset;
e1c02f84 602 PADNAME *name;
dd2155a4 603
cc76b5cc 604 PERL_ARGS_ASSERT_PAD_ADD_NAME_PVN;
7918f24d 605
2502ffdf 606 if (flags & ~(padadd_OUR|padadd_STATE|padadd_NO_DUP_CHECK))
cc76b5cc 607 Perl_croak(aTHX_ "panic: pad_add_name_pvn illegal flag bits 0x%" UVxf,
cca43f78
NC
608 (UV)flags);
609
0f94cb1f 610 name = newPADNAMEpvn(namepv, namelen);
dd2155a4 611
59cfed7d 612 if ((flags & padadd_NO_DUP_CHECK) == 0) {
c2b36a6d 613 ENTER;
0f94cb1f 614 SAVEFREEPADNAME(name); /* in case of fatal warnings */
2d12d04f 615 /* check for duplicate declaration */
e1c02f84 616 pad_check_dup(name, flags & padadd_OUR, ourstash);
0f94cb1f 617 PadnameREFCNT(name)++;
c2b36a6d 618 LEAVE;
2d12d04f
NC
619 }
620
2502ffdf 621 offset = pad_alloc_name(name, flags, typestash, ourstash);
3291825f
NC
622
623 /* not yet introduced */
e1c02f84
FC
624 COP_SEQ_RANGE_LOW_set(name, PERL_PADSEQ_INTRO);
625 COP_SEQ_RANGE_HIGH_set(name, 0);
3291825f
NC
626
627 if (!PL_min_intro_pending)
628 PL_min_intro_pending = offset;
629 PL_max_intro_pending = offset;
630 /* if it's not a simple scalar, replace with an AV or HV */
c1bf42f3
NC
631 assert(SvTYPE(PL_curpad[offset]) == SVt_NULL);
632 assert(SvREFCNT(PL_curpad[offset]) == 1);
cc76b5cc 633 if (namelen != 0 && *namepv == '@')
c1bf42f3 634 sv_upgrade(PL_curpad[offset], SVt_PVAV);
cc76b5cc 635 else if (namelen != 0 && *namepv == '%')
c1bf42f3 636 sv_upgrade(PL_curpad[offset], SVt_PVHV);
6d5c2147
FC
637 else if (namelen != 0 && *namepv == '&')
638 sv_upgrade(PL_curpad[offset], SVt_PVCV);
c1bf42f3 639 assert(SvPADMY(PL_curpad[offset]));
3291825f
NC
640 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
641 "Pad addname: %ld \"%s\" new lex=0x%"UVxf"\n",
e1c02f84 642 (long)offset, PadnamePV(name),
cc76b5cc 643 PTR2UV(PL_curpad[offset])));
dd2155a4
DM
644
645 return offset;
646}
647
cc76b5cc
Z
648/*
649=for apidoc Am|PADOFFSET|pad_add_name_pv|const char *name|U32 flags|HV *typestash|HV *ourstash
dd2155a4 650
cc76b5cc
Z
651Exactly like L</pad_add_name_pvn>, but takes a nul-terminated string
652instead of a string/length pair.
dd2155a4 653
cc76b5cc
Z
654=cut
655*/
656
657PADOFFSET
658Perl_pad_add_name_pv(pTHX_ const char *name,
0e1b3a4b 659 const U32 flags, HV *typestash, HV *ourstash)
cc76b5cc
Z
660{
661 PERL_ARGS_ASSERT_PAD_ADD_NAME_PV;
662 return pad_add_name_pvn(name, strlen(name), flags, typestash, ourstash);
663}
dd2155a4
DM
664
665/*
cc76b5cc 666=for apidoc Am|PADOFFSET|pad_add_name_sv|SV *name|U32 flags|HV *typestash|HV *ourstash
dd2155a4 667
cc76b5cc
Z
668Exactly like L</pad_add_name_pvn>, but takes the name string in the form
669of an SV instead of a string/length pair.
670
671=cut
672*/
673
674PADOFFSET
675Perl_pad_add_name_sv(pTHX_ SV *name, U32 flags, HV *typestash, HV *ourstash)
676{
677 char *namepv;
678 STRLEN namelen;
679 PERL_ARGS_ASSERT_PAD_ADD_NAME_SV;
2502ffdf 680 namepv = SvPVutf8(name, namelen);
cc76b5cc
Z
681 return pad_add_name_pvn(namepv, namelen, flags, typestash, ourstash);
682}
683
684/*
685=for apidoc Amx|PADOFFSET|pad_alloc|I32 optype|U32 tmptype
686
687Allocates a place in the currently-compiling pad,
688returning the offset of the allocated pad slot.
689No name is initially attached to the pad slot.
2d7f6611 690C<tmptype> is a set of flags indicating the kind of pad entry required,
cc76b5cc
Z
691which will be set in the value SV for the allocated pad entry:
692
693 SVs_PADMY named lexical variable ("my", "our", "state")
694 SVs_PADTMP unnamed temporary store
325e1816
FC
695 SVf_READONLY constant shared between recursion levels
696
697C<SVf_READONLY> has been supported here only since perl 5.20. To work with
c370bd2e
FC
698earlier versions as well, use C<SVf_READONLY|SVs_PADTMP>. C<SVf_READONLY>
699does not cause the SV in the pad slot to be marked read-only, but simply
700tells C<pad_alloc> that it I<will> be made read-only (by the caller), or at
701least should be treated as such.
cc76b5cc 702
2d7f6611 703C<optype> should be an opcode indicating the type of operation that the
cc76b5cc
Z
704pad entry is to support. This doesn't affect operational semantics,
705but is used for debugging.
dd2155a4
DM
706
707=cut
708*/
709
710/* XXX DAPM integrate alloc(), add_name() and add_anon(),
711 * or at least rationalise ??? */
dd2155a4
DM
712
713PADOFFSET
714Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype)
715{
716 SV *sv;
717 I32 retval;
718
6136c704 719 PERL_UNUSED_ARG(optype);
f3548bdc
DM
720 ASSERT_CURPAD_ACTIVE("pad_alloc");
721
dd2155a4 722 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
723 Perl_croak(aTHX_ "panic: pad_alloc, %p!=%p",
724 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
725 if (PL_pad_reset_pending)
726 pad_reset();
c0683843 727 if (tmptype == SVs_PADMY) { /* Not & because this ‘flag’ is 0. */
cc76b5cc 728 /* For a my, simply push a null SV onto the end of PL_comppad. */
235cc2e3 729 sv = *av_fetch(PL_comppad, AvFILLp(PL_comppad) + 1, TRUE);
dd2155a4
DM
730 retval = AvFILLp(PL_comppad);
731 }
732 else {
cc76b5cc
Z
733 /* For a tmp, scan the pad from PL_padix upwards
734 * for a slot which has no name and no active value.
b54c5e14 735 * For a constant, likewise, but use PL_constpadix.
cc76b5cc 736 */
9b7476d7
FC
737 PADNAME * const * const names = PadnamelistARRAY(PL_comppad_name);
738 const SSize_t names_fill = PadnamelistMAX(PL_comppad_name);
b54c5e14
FC
739 const bool konst = cBOOL(tmptype & SVf_READONLY);
740 retval = konst ? PL_constpadix : PL_padix;
dd2155a4
DM
741 for (;;) {
742 /*
833bf1cd
FC
743 * Entries that close over unavailable variables
744 * in outer subs contain values not marked PADMY.
745 * Thus we must skip, not just pad values that are
dd2155a4 746 * marked as current pad values, but also those with names.
1780e744
FC
747 * If pad_reset is enabled, ‘current’ means different
748 * things depending on whether we are allocating a con-
749 * stant or a target. For a target, things marked PADTMP
750 * can be reused; not so for constants.
dd2155a4 751 */
5e6246a7 752 PADNAME *pn;
b54c5e14 753 if (++retval <= names_fill &&
5e6246a7 754 (pn = names[retval]) && PadnamePV(pn))
dd2155a4 755 continue;
b54c5e14 756 sv = *av_fetch(PL_comppad, retval, TRUE);
a90643eb 757 if (!(SvFLAGS(sv) &
53de1311 758#ifdef USE_PAD_RESET
145bf8ee 759 (konst ? SVs_PADTMP : 0))
a90643eb 760#else
145bf8ee 761 SVs_PADTMP
a90643eb 762#endif
13381c39 763 ))
dd2155a4
DM
764 break;
765 }
b54c5e14 766 if (konst) {
0f94cb1f 767 padnamelist_store(PL_comppad_name, retval, &PL_padname_const);
325e1816
FC
768 tmptype &= ~SVf_READONLY;
769 tmptype |= SVs_PADTMP;
770 }
b54c5e14 771 *(konst ? &PL_constpadix : &PL_padix) = retval;
dd2155a4
DM
772 }
773 SvFLAGS(sv) |= tmptype;
774 PL_curpad = AvARRAY(PL_comppad);
775
776 DEBUG_X(PerlIO_printf(Perl_debug_log,
777 "Pad 0x%"UVxf"[0x%"UVxf"] alloc: %ld for %s\n",
778 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long) retval,
779 PL_op_name[optype]));
fd0854ff
DM
780#ifdef DEBUG_LEAKING_SCALARS
781 sv->sv_debug_optype = optype;
782 sv->sv_debug_inpad = 1;
fd0854ff 783#endif
a212c8b5 784 return (PADOFFSET)retval;
dd2155a4
DM
785}
786
787/*
cc76b5cc 788=for apidoc Am|PADOFFSET|pad_add_anon|CV *func|I32 optype
dd2155a4 789
cc76b5cc
Z
790Allocates a place in the currently-compiling pad (via L</pad_alloc>)
791for an anonymous function that is lexically scoped inside the
792currently-compiling function.
2d7f6611 793The function C<func> is linked into the pad, and its C<CvOUTSIDE> link
cc76b5cc
Z
794to the outer scope is weakened to avoid a reference loop.
795
84eea980
FC
796One reference count is stolen, so you may need to do C<SvREFCNT_inc(func)>.
797
2d7f6611 798C<optype> should be an opcode indicating the type of operation that the
cc76b5cc
Z
799pad entry is to support. This doesn't affect operational semantics,
800but is used for debugging.
dd2155a4
DM
801
802=cut
803*/
804
805PADOFFSET
cc76b5cc 806Perl_pad_add_anon(pTHX_ CV* func, I32 optype)
dd2155a4
DM
807{
808 PADOFFSET ix;
0f94cb1f 809 PADNAME * const name = newPADNAMEpvn("&", 1);
7918f24d
NC
810
811 PERL_ARGS_ASSERT_PAD_ADD_ANON;
74a9453a 812 assert (SvTYPE(func) == SVt_PVCV);
7918f24d 813
1dba731d 814 pad_peg("add_anon");
0d311cdb 815 /* These two aren't used; just make sure they're not equal to
0f94cb1f
FC
816 * PERL_PADSEQ_INTRO. They should be 0 by default. */
817 assert(COP_SEQ_RANGE_LOW (name) != PERL_PADSEQ_INTRO);
818 assert(COP_SEQ_RANGE_HIGH(name) != PERL_PADSEQ_INTRO);
cc76b5cc 819 ix = pad_alloc(optype, SVs_PADMY);
9b7476d7 820 padnamelist_store(PL_comppad_name, ix, name);
f3548bdc 821 /* XXX DAPM use PL_curpad[] ? */
74a9453a 822 av_store(PL_comppad, ix, (SV*)func);
7dafbf52
DM
823
824 /* to avoid ref loops, we never have parent + child referencing each
825 * other simultaneously */
74a9453a 826 if (CvOUTSIDE(func)) {
cc76b5cc
Z
827 assert(!CvWEAKOUTSIDE(func));
828 CvWEAKOUTSIDE_on(func);
fc2b2dca 829 SvREFCNT_dec_NN(CvOUTSIDE(func));
7dafbf52 830 }
dd2155a4
DM
831 return ix;
832}
833
a70f21d0
FC
834void
835Perl_pad_add_weakref(pTHX_ CV* func)
836{
837 const PADOFFSET ix = pad_alloc(OP_NULL, SVs_PADMY);
838 PADNAME * const name = newPADNAMEpvn("&", 1);
839 SV * const rv = newRV_inc((SV *)func);
840
841 PERL_ARGS_ASSERT_PAD_ADD_WEAKREF;
842
843 /* These two aren't used; just make sure they're not equal to
844 * PERL_PADSEQ_INTRO. They should be 0 by default. */
845 assert(COP_SEQ_RANGE_LOW (name) != PERL_PADSEQ_INTRO);
846 assert(COP_SEQ_RANGE_HIGH(name) != PERL_PADSEQ_INTRO);
847 padnamelist_store(PL_comppad_name, ix, name);
848 sv_rvweaken(rv);
849 av_store(PL_comppad, ix, rv);
850}
851
dd2155a4 852/*
13087dd8 853=for apidoc pad_check_dup
dd2155a4
DM
854
855Check for duplicate declarations: report any of:
13087dd8 856
796b6530
KW
857 * a 'my' in the current scope with the same name;
858 * an 'our' (anywhere in the pad) with the same name and the
859 same stash as 'ourstash'
13087dd8 860
796b6530 861C<is_our> indicates that the name to check is an C<"our"> declaration.
dd2155a4
DM
862
863=cut
864*/
865
20381b50 866STATIC void
e1c02f84 867S_pad_check_dup(pTHX_ PADNAME *name, U32 flags, const HV *ourstash)
dd2155a4 868{
0aaff5a1 869 PADNAME **svp;
dd2155a4 870 PADOFFSET top, off;
59cfed7d 871 const U32 is_our = flags & padadd_OUR;
dd2155a4 872
7918f24d
NC
873 PERL_ARGS_ASSERT_PAD_CHECK_DUP;
874
f3548bdc 875 ASSERT_CURPAD_ACTIVE("pad_check_dup");
35f82371 876
59cfed7d 877 assert((flags & ~padadd_OUR) == 0);
35f82371 878
9b7476d7 879 if (PadnamelistMAX(PL_comppad_name) < 0 || !ckWARN(WARN_MISC))
dd2155a4
DM
880 return; /* nothing to check */
881
9b7476d7
FC
882 svp = PadnamelistARRAY(PL_comppad_name);
883 top = PadnamelistMAX(PL_comppad_name);
dd2155a4
DM
884 /* check the current scope */
885 /* XXX DAPM - why the (I32) cast - shouldn't we ensure they're the same
886 * type ? */
887 for (off = top; (I32)off > PL_comppad_name_floor; off--) {
0aaff5a1 888 PADNAME * const sv = svp[off];
53c1dcc0 889 if (sv
0aaff5a1
FC
890 && PadnameLEN(sv) == PadnameLEN(name)
891 && !PadnameOUTER(sv)
0d311cdb
DM
892 && ( COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO
893 || COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
0aaff5a1 894 && memEQ(PadnamePV(sv), PadnamePV(name), PadnameLEN(name)))
dd2155a4 895 {
00b1698f 896 if (is_our && (SvPAD_OUR(sv)))
7f73a9f1 897 break; /* "our" masking "our" */
4eb94d7c 898 /* diag_listed_as: "%s" variable %s masks earlier declaration in same %s */
dd2155a4 899 Perl_warner(aTHX_ packWARN(WARN_MISC),
0aaff5a1 900 "\"%s\" %s %"PNf" masks earlier declaration in same %s",
49fb8620
DM
901 ( is_our ? "our" :
902 PL_parser->in_my == KEY_my ? "my" :
903 PL_parser->in_my == KEY_sigvar ? "my" :
904 "state" ),
0aaff5a1
FC
905 *PadnamePV(sv) == '&' ? "subroutine" : "variable",
906 PNfARG(sv),
2df5bdd7
DM
907 (COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO
908 ? "scope" : "statement"));
dd2155a4
DM
909 --off;
910 break;
911 }
912 }
913 /* check the rest of the pad */
914 if (is_our) {
61c5492a 915 while (off > 0) {
0aaff5a1 916 PADNAME * const sv = svp[off];
53c1dcc0 917 if (sv
0aaff5a1
FC
918 && PadnameLEN(sv) == PadnameLEN(name)
919 && !PadnameOUTER(sv)
0d311cdb
DM
920 && ( COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO
921 || COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
73d95100 922 && SvOURSTASH(sv) == ourstash
0aaff5a1 923 && memEQ(PadnamePV(sv), PadnamePV(name), PadnameLEN(name)))
dd2155a4
DM
924 {
925 Perl_warner(aTHX_ packWARN(WARN_MISC),
0aaff5a1 926 "\"our\" variable %"PNf" redeclared", PNfARG(sv));
624f69f5 927 if ((I32)off <= PL_comppad_name_floor)
7f73a9f1
RGS
928 Perl_warner(aTHX_ packWARN(WARN_MISC),
929 "\t(Did you mean \"local\" instead of \"our\"?)\n");
dd2155a4
DM
930 break;
931 }
61c5492a
NC
932 --off;
933 }
dd2155a4
DM
934 }
935}
936
937
dd2155a4 938/*
cc76b5cc 939=for apidoc Am|PADOFFSET|pad_findmy_pvn|const char *namepv|STRLEN namelen|U32 flags
dd2155a4 940
cc76b5cc
Z
941Given the name of a lexical variable, find its position in the
942currently-compiling pad.
2d7f6611
KW
943C<namepv>/C<namelen> specify the variable's name, including leading sigil.
944C<flags> is reserved and must be zero.
cc76b5cc
Z
945If it is not in the current pad but appears in the pad of any lexically
946enclosing scope, then a pseudo-entry for it is added in the current pad.
947Returns the offset in the current pad,
948or C<NOT_IN_PAD> if no such lexical is in scope.
dd2155a4
DM
949
950=cut
951*/
952
953PADOFFSET
cc76b5cc 954Perl_pad_findmy_pvn(pTHX_ const char *namepv, STRLEN namelen, U32 flags)
dd2155a4 955{
e1c02f84 956 PADNAME *out_pn;
b5c19bd7 957 int out_flags;
929a0744 958 I32 offset;
9b7476d7 959 const PADNAMELIST *namelist;
e1c02f84 960 PADNAME **name_p;
dd2155a4 961
cc76b5cc 962 PERL_ARGS_ASSERT_PAD_FINDMY_PVN;
7918f24d 963
cc76b5cc 964 pad_peg("pad_findmy_pvn");
f8f98e0a 965
2502ffdf 966 if (flags)
cc76b5cc 967 Perl_croak(aTHX_ "panic: pad_findmy_pvn illegal flag bits 0x%" UVxf,
f8f98e0a
NC
968 (UV)flags);
969
b12396ac
TC
970 /* compilation errors can zero PL_compcv */
971 if (!PL_compcv)
972 return NOT_IN_PAD;
973
fbb889c8 974 offset = pad_findlex(namepv, namelen, flags,
e1c02f84 975 PL_compcv, PL_cop_seqmax, 1, NULL, &out_pn, &out_flags);
9f7d9405 976 if ((PADOFFSET)offset != NOT_IN_PAD)
929a0744
DM
977 return offset;
978
f0727190
FC
979 /* Skip the ‘our’ hack for subroutines, as the warning does not apply.
980 */
981 if (*namepv == '&') return NOT_IN_PAD;
982
929a0744
DM
983 /* look for an our that's being introduced; this allows
984 * our $foo = 0 unless defined $foo;
985 * to not give a warning. (Yes, this is a hack) */
986
9b7476d7
FC
987 namelist = PadlistNAMES(CvPADLIST(PL_compcv));
988 name_p = PadnamelistARRAY(namelist);
989 for (offset = PadnamelistMAXNAMED(namelist); offset > 0; offset--) {
e1c02f84
FC
990 const PADNAME * const name = name_p[offset];
991 if (name && PadnameLEN(name) == namelen
992 && !PadnameOUTER(name)
993 && (PadnameIsOUR(name))
2502ffdf
FC
994 && ( PadnamePV(name) == namepv
995 || memEQ(PadnamePV(name), namepv, namelen) )
e1c02f84 996 && COP_SEQ_RANGE_LOW(name) == PERL_PADSEQ_INTRO
929a0744
DM
997 )
998 return offset;
999 }
1000 return NOT_IN_PAD;
dd2155a4
DM
1001}
1002
e1f795dc 1003/*
cc76b5cc
Z
1004=for apidoc Am|PADOFFSET|pad_findmy_pv|const char *name|U32 flags
1005
1006Exactly like L</pad_findmy_pvn>, but takes a nul-terminated string
1007instead of a string/length pair.
1008
1009=cut
1010*/
1011
1012PADOFFSET
1013Perl_pad_findmy_pv(pTHX_ const char *name, U32 flags)
1014{
1015 PERL_ARGS_ASSERT_PAD_FINDMY_PV;
1016 return pad_findmy_pvn(name, strlen(name), flags);
1017}
1018
1019/*
1020=for apidoc Am|PADOFFSET|pad_findmy_sv|SV *name|U32 flags
1021
1022Exactly like L</pad_findmy_pvn>, but takes the name string in the form
1023of an SV instead of a string/length pair.
1024
1025=cut
1026*/
1027
1028PADOFFSET
1029Perl_pad_findmy_sv(pTHX_ SV *name, U32 flags)
1030{
1031 char *namepv;
1032 STRLEN namelen;
1033 PERL_ARGS_ASSERT_PAD_FINDMY_SV;
2502ffdf 1034 namepv = SvPVutf8(name, namelen);
cc76b5cc
Z
1035 return pad_findmy_pvn(namepv, namelen, flags);
1036}
1037
1038/*
1039=for apidoc Amp|PADOFFSET|find_rundefsvoffset
1040
af7ce3e6
FC
1041Until the lexical C<$_> feature was removed, this function would
1042find the position of the lexical C<$_> in the pad of the
1043currently-executing function and returns the offset in the current pad,
1044or C<NOT_IN_PAD>.
1045
1046Now it always returns C<NOT_IN_PAD>.
cc76b5cc
Z
1047
1048=cut
1049*/
e1f795dc
RGS
1050
1051PADOFFSET
29289021 1052Perl_find_rundefsvoffset(pTHX)
e1f795dc 1053{
af7ce3e6
FC
1054 PERL_UNUSED_CONTEXT; /* Can we just remove the pTHX from the sig? */
1055 return NOT_IN_PAD;
e1f795dc 1056}
dd2155a4 1057
dd2155a4 1058/*
cc76b5cc
Z
1059=for apidoc Am|SV *|find_rundefsv
1060
af7ce3e6 1061Returns the global variable C<$_>.
cc76b5cc
Z
1062
1063=cut
1064*/
789bd863
VP
1065
1066SV *
1067Perl_find_rundefsv(pTHX)
1068{
af7ce3e6 1069 return DEFSV;
789bd863
VP
1070}
1071
1072/*
e1c02f84 1073=for apidoc m|PADOFFSET|pad_findlex|const char *namepv|STRLEN namelen|U32 flags|const CV* cv|U32 seq|int warn|SV** out_capture|PADNAME** out_name|int *out_flags
dd2155a4 1074
72d33970 1075Find a named lexical anywhere in a chain of nested pads. Add fake entries
b5c19bd7
DM
1076in the inner pads if it's found in an outer one.
1077
1078Returns the offset in the bottom pad of the lex or the fake lex.
796b6530
KW
1079C<cv> is the CV in which to start the search, and seq is the current C<cop_seq>
1080to match against. If C<warn> is true, print appropriate warnings. The C<out_>*
b5c19bd7 1081vars return values, and so are pointers to where the returned values
796b6530
KW
1082should be stored. C<out_capture>, if non-null, requests that the innermost
1083instance of the lexical is captured; C<out_name> is set to the innermost
1084matched pad name or fake pad name; C<out_flags> returns the flags normally
1085associated with the C<PARENT_FAKELEX_FLAGS> field of a fake pad name.
b5c19bd7 1086
796b6530 1087Note that C<pad_findlex()> is recursive; it recurses up the chain of CVs,
72d33970
FC
1088then comes back down, adding fake entries
1089as it goes. It has to be this way
796b6530 1090because fake names in anon protoypes have to store in C<xlow> the index into
b5c19bd7 1091the parent pad.
dd2155a4
DM
1092
1093=cut
1094*/
1095
b5c19bd7
DM
1096/* the CV has finished being compiled. This is not a sufficient test for
1097 * all CVs (eg XSUBs), but suffices for the CVs found in a lexical chain */
1098#define CvCOMPILED(cv) CvROOT(cv)
1099
71f882da 1100/* the CV does late binding of its lexicals */
e07561e6 1101#define CvLATE(cv) (CvANON(cv) || CvCLONE(cv) || SvTYPE(cv) == SVt_PVFM)
71f882da 1102
445f13ff 1103static void
e6df7a56 1104S_unavailable(pTHX_ PADNAME *name)
445f13ff
FC
1105{
1106 /* diag_listed_as: Variable "%s" is not available */
1107 Perl_ck_warner(aTHX_ packWARN(WARN_CLOSURE),
e6df7a56
FC
1108 "%se \"%"PNf"\" is not available",
1109 *PadnamePV(name) == '&'
445f13ff
FC
1110 ? "Subroutin"
1111 : "Variabl",
e6df7a56 1112 PNfARG(name));
445f13ff 1113}
b5c19bd7 1114
dd2155a4 1115STATIC PADOFFSET
fbb889c8 1116S_pad_findlex(pTHX_ const char *namepv, STRLEN namelen, U32 flags, const CV* cv, U32 seq,
e1c02f84 1117 int warn, SV** out_capture, PADNAME** out_name, int *out_flags)
dd2155a4 1118{
b5c19bd7
DM
1119 I32 offset, new_offset;
1120 SV *new_capture;
1121 SV **new_capturep;
b70d5558 1122 const PADLIST * const padlist = CvPADLIST(cv);
7ef30830 1123 const bool staleok = !!(flags & padadd_STALEOK);
dd2155a4 1124
7918f24d
NC
1125 PERL_ARGS_ASSERT_PAD_FINDLEX;
1126
2502ffdf
FC
1127 flags &= ~ padadd_STALEOK; /* one-shot flag */
1128 if (flags)
2435e5d3
BF
1129 Perl_croak(aTHX_ "panic: pad_findlex illegal flag bits 0x%" UVxf,
1130 (UV)flags);
1131
b5c19bd7 1132 *out_flags = 0;
a3985cdc 1133
b5c19bd7 1134 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
cc76b5cc 1135 "Pad findlex cv=0x%"UVxf" searching \"%.*s\" seq=%d%s\n",
4c760560 1136 PTR2UV(cv), (int)namelen, namepv, (int)seq,
cc76b5cc 1137 out_capture ? " capturing" : "" ));
dd2155a4 1138
b5c19bd7 1139 /* first, search this pad */
dd2155a4 1140
b5c19bd7
DM
1141 if (padlist) { /* not an undef CV */
1142 I32 fake_offset = 0;
9b7476d7
FC
1143 const PADNAMELIST * const names = PadlistNAMES(padlist);
1144 PADNAME * const * const name_p = PadnamelistARRAY(names);
ee6cee0c 1145
9b7476d7 1146 for (offset = PadnamelistMAXNAMED(names); offset > 0; offset--) {
e1c02f84
FC
1147 const PADNAME * const name = name_p[offset];
1148 if (name && PadnameLEN(name) == namelen
2502ffdf
FC
1149 && ( PadnamePV(name) == namepv
1150 || memEQ(PadnamePV(name), namepv, namelen) ))
b5c19bd7 1151 {
e1c02f84 1152 if (PadnameOUTER(name)) {
b5c19bd7 1153 fake_offset = offset; /* in case we don't find a real one */
6012dc80
DM
1154 continue;
1155 }
e1c02f84 1156 if (PadnameIN_SCOPE(name, seq))
03414f05 1157 break;
ee6cee0c
DM
1158 }
1159 }
1160
b5c19bd7
DM
1161 if (offset > 0 || fake_offset > 0 ) { /* a match! */
1162 if (offset > 0) { /* not fake */
1163 fake_offset = 0;
e1c02f84 1164 *out_name = name_p[offset]; /* return the name */
b5c19bd7
DM
1165
1166 /* set PAD_FAKELEX_MULTI if this lex can have multiple
1167 * instances. For now, we just test !CvUNIQUE(cv), but
1168 * ideally, we should detect my's declared within loops
1169 * etc - this would allow a wider range of 'not stayed
486ec47a 1170 * shared' warnings. We also treated already-compiled
b5c19bd7
DM
1171 * lexes as not multi as viewed from evals. */
1172
1173 *out_flags = CvANON(cv) ?
1174 PAD_FAKELEX_ANON :
1175 (!CvUNIQUE(cv) && ! CvCOMPILED(cv))
1176 ? PAD_FAKELEX_MULTI : 0;
1177
1178 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02
NC
1179 "Pad findlex cv=0x%"UVxf" matched: offset=%ld (%lu,%lu)\n",
1180 PTR2UV(cv), (long)offset,
e1c02f84
FC
1181 (unsigned long)COP_SEQ_RANGE_LOW(*out_name),
1182 (unsigned long)COP_SEQ_RANGE_HIGH(*out_name)));
b5c19bd7
DM
1183 }
1184 else { /* fake match */
1185 offset = fake_offset;
e1c02f84
FC
1186 *out_name = name_p[offset]; /* return the name */
1187 *out_flags = PARENT_FAKELEX_FLAGS(*out_name);
b5c19bd7 1188 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
19a5c512 1189 "Pad findlex cv=0x%"UVxf" matched: offset=%ld flags=0x%lx index=%lu\n",
b5c19bd7 1190 PTR2UV(cv), (long)offset, (unsigned long)*out_flags,
e1c02f84 1191 (unsigned long) PARENT_PAD_INDEX(*out_name)
b5c19bd7
DM
1192 ));
1193 }
dd2155a4 1194
b5c19bd7 1195 /* return the lex? */
dd2155a4 1196
b5c19bd7 1197 if (out_capture) {
dd2155a4 1198
b5c19bd7 1199 /* our ? */
e1c02f84 1200 if (PadnameIsOUR(*out_name)) {
a0714e2c 1201 *out_capture = NULL;
b5c19bd7
DM
1202 return offset;
1203 }
ee6cee0c 1204
b5c19bd7
DM
1205 /* trying to capture from an anon prototype? */
1206 if (CvCOMPILED(cv)
1207 ? CvANON(cv) && CvCLONE(cv) && !CvCLONED(cv)
1208 : *out_flags & PAD_FAKELEX_ANON)
1209 {
a2a5de95 1210 if (warn)
445f13ff 1211 S_unavailable(aTHX_
f5658c36 1212 *out_name);
0727928e 1213
a0714e2c 1214 *out_capture = NULL;
b5c19bd7 1215 }
ee6cee0c 1216
b5c19bd7
DM
1217 /* real value */
1218 else {
1219 int newwarn = warn;
1220 if (!CvCOMPILED(cv) && (*out_flags & PAD_FAKELEX_MULTI)
e1c02f84 1221 && !PadnameIsSTATE(name_p[offset])
b5c19bd7
DM
1222 && warn && ckWARN(WARN_CLOSURE)) {
1223 newwarn = 0;
2a9203e9
FC
1224 /* diag_listed_as: Variable "%s" will not stay
1225 shared */
b5c19bd7 1226 Perl_warner(aTHX_ packWARN(WARN_CLOSURE),
2a9203e9
FC
1227 "%se \"%"UTF8f"\" will not stay shared",
1228 *namepv == '&' ? "Subroutin" : "Variabl",
8d98b5bc 1229 UTF8fARG(1, namelen, namepv));
b5c19bd7 1230 }
dd2155a4 1231
b5c19bd7
DM
1232 if (fake_offset && CvANON(cv)
1233 && CvCLONE(cv) &&!CvCLONED(cv))
1234 {
e1c02f84 1235 PADNAME *n;
b5c19bd7
DM
1236 /* not yet caught - look further up */
1237 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1238 "Pad findlex cv=0x%"UVxf" chasing lex in outer pad\n",
1239 PTR2UV(cv)));
e1c02f84 1240 n = *out_name;
fbb889c8 1241 (void) pad_findlex(namepv, namelen, flags, CvOUTSIDE(cv),
282e1742 1242 CvOUTSIDE_SEQ(cv),
e1c02f84
FC
1243 newwarn, out_capture, out_name, out_flags);
1244 *out_name = n;
b5c19bd7 1245 return offset;
dd2155a4 1246 }
b5c19bd7 1247
86d2498c 1248 *out_capture = AvARRAY(PadlistARRAY(padlist)[
7261499d 1249 CvDEPTH(cv) ? CvDEPTH(cv) : 1])[offset];
b5c19bd7
DM
1250 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1251 "Pad findlex cv=0x%"UVxf" found lex=0x%"UVxf"\n",
19a5c512 1252 PTR2UV(cv), PTR2UV(*out_capture)));
b5c19bd7 1253
d1186544 1254 if (SvPADSTALE(*out_capture)
7ef30830 1255 && (!CvDEPTH(cv) || !staleok)
e1c02f84 1256 && !PadnameIsSTATE(name_p[offset]))
d1186544 1257 {
445f13ff 1258 S_unavailable(aTHX_
f5658c36 1259 name_p[offset]);
a0714e2c 1260 *out_capture = NULL;
dd2155a4
DM
1261 }
1262 }
b5c19bd7 1263 if (!*out_capture) {
cc76b5cc 1264 if (namelen != 0 && *namepv == '@')
ad64d0ec 1265 *out_capture = sv_2mortal(MUTABLE_SV(newAV()));
cc76b5cc 1266 else if (namelen != 0 && *namepv == '%')
ad64d0ec 1267 *out_capture = sv_2mortal(MUTABLE_SV(newHV()));
6d5c2147
FC
1268 else if (namelen != 0 && *namepv == '&')
1269 *out_capture = sv_2mortal(newSV_type(SVt_PVCV));
b5c19bd7
DM
1270 else
1271 *out_capture = sv_newmortal();
1272 }
dd2155a4 1273 }
b5c19bd7
DM
1274
1275 return offset;
ee6cee0c 1276 }
b5c19bd7
DM
1277 }
1278
1279 /* it's not in this pad - try above */
1280
1281 if (!CvOUTSIDE(cv))
1282 return NOT_IN_PAD;
9f7d9405 1283
b5c19bd7 1284 /* out_capture non-null means caller wants us to capture lex; in
71f882da 1285 * addition we capture ourselves unless it's an ANON/format */
b5c19bd7 1286 new_capturep = out_capture ? out_capture :
4608196e 1287 CvLATE(cv) ? NULL : &new_capture;
b5c19bd7 1288
7ef30830
FC
1289 offset = pad_findlex(namepv, namelen,
1290 flags | padadd_STALEOK*(new_capturep == &new_capture),
1291 CvOUTSIDE(cv), CvOUTSIDE_SEQ(cv), 1,
e1c02f84 1292 new_capturep, out_name, out_flags);
9f7d9405 1293 if ((PADOFFSET)offset == NOT_IN_PAD)
b5c19bd7 1294 return NOT_IN_PAD;
9f7d9405 1295
b5c19bd7
DM
1296 /* found in an outer CV. Add appropriate fake entry to this pad */
1297
1298 /* don't add new fake entries (via eval) to CVs that we have already
1299 * finished compiling, or to undef CVs */
1300 if (CvCOMPILED(cv) || !padlist)
1301 return 0; /* this dummy (and invalid) value isnt used by the caller */
1302
1303 {
0f94cb1f 1304 PADNAME *new_name = newPADNAMEouter(*out_name);
9b7476d7 1305 PADNAMELIST * const ocomppad_name = PL_comppad_name;
53c1dcc0 1306 PAD * const ocomppad = PL_comppad;
9b7476d7 1307 PL_comppad_name = PadlistNAMES(padlist);
86d2498c 1308 PL_comppad = PadlistARRAY(padlist)[1];
b5c19bd7
DM
1309 PL_curpad = AvARRAY(PL_comppad);
1310
3291825f 1311 new_offset
e1c02f84
FC
1312 = pad_alloc_name(new_name,
1313 PadnameIsSTATE(*out_name) ? padadd_STATE : 0,
1314 PadnameTYPE(*out_name),
1315 PadnameOURSTASH(*out_name)
3291825f
NC
1316 );
1317
3291825f
NC
1318 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1319 "Pad addname: %ld \"%.*s\" FAKE\n",
1320 (long)new_offset,
e1c02f84
FC
1321 (int) PadnameLEN(new_name),
1322 PadnamePV(new_name)));
1323 PARENT_FAKELEX_FLAGS_set(new_name, *out_flags);
b5c19bd7 1324
e1c02f84
FC
1325 PARENT_PAD_INDEX_set(new_name, 0);
1326 if (PadnameIsOUR(new_name)) {
6f207bd3 1327 NOOP; /* do nothing */
b5c19bd7 1328 }
71f882da 1329 else if (CvLATE(cv)) {
b5c19bd7 1330 /* delayed creation - just note the offset within parent pad */
e1c02f84 1331 PARENT_PAD_INDEX_set(new_name, offset);
b5c19bd7
DM
1332 CvCLONE_on(cv);
1333 }
1334 else {
1335 /* immediate creation - capture outer value right now */
1336 av_store(PL_comppad, new_offset, SvREFCNT_inc(*new_capturep));
81df9f6f 1337 /* But also note the offset, as newMYSUB needs it */
e1c02f84 1338 PARENT_PAD_INDEX_set(new_name, offset);
b5c19bd7
DM
1339 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1340 "Pad findlex cv=0x%"UVxf" saved captured sv 0x%"UVxf" at offset %ld\n",
1341 PTR2UV(cv), PTR2UV(*new_capturep), (long)new_offset));
dd2155a4 1342 }
e1c02f84
FC
1343 *out_name = new_name;
1344 *out_flags = PARENT_FAKELEX_FLAGS(new_name);
b5c19bd7
DM
1345
1346 PL_comppad_name = ocomppad_name;
1347 PL_comppad = ocomppad;
4608196e 1348 PL_curpad = ocomppad ? AvARRAY(ocomppad) : NULL;
dd2155a4 1349 }
b5c19bd7 1350 return new_offset;
dd2155a4
DM
1351}
1352
fb8a9836 1353#ifdef DEBUGGING
cc76b5cc 1354
dd2155a4 1355/*
cc76b5cc 1356=for apidoc Am|SV *|pad_sv|PADOFFSET po
dd2155a4 1357
2d7f6611 1358Get the value at offset C<po> in the current (compiling or executing) pad.
796b6530 1359Use macro C<PAD_SV> instead of calling this function directly.
dd2155a4
DM
1360
1361=cut
1362*/
1363
dd2155a4
DM
1364SV *
1365Perl_pad_sv(pTHX_ PADOFFSET po)
1366{
f3548bdc 1367 ASSERT_CURPAD_ACTIVE("pad_sv");
dd2155a4 1368
dd2155a4
DM
1369 if (!po)
1370 Perl_croak(aTHX_ "panic: pad_sv po");
dd2155a4
DM
1371 DEBUG_X(PerlIO_printf(Perl_debug_log,
1372 "Pad 0x%"UVxf"[0x%"UVxf"] sv: %ld sv=0x%"UVxf"\n",
f3548bdc 1373 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(PL_curpad[po]))
dd2155a4
DM
1374 );
1375 return PL_curpad[po];
1376}
1377
dd2155a4 1378/*
cc76b5cc 1379=for apidoc Am|void|pad_setsv|PADOFFSET po|SV *sv
dd2155a4 1380
2d7f6611 1381Set the value at offset C<po> in the current (compiling or executing) pad.
796b6530 1382Use the macro C<PAD_SETSV()> rather than calling this function directly.
dd2155a4
DM
1383
1384=cut
1385*/
1386
dd2155a4
DM
1387void
1388Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv)
1389{
7918f24d
NC
1390 PERL_ARGS_ASSERT_PAD_SETSV;
1391
f3548bdc 1392 ASSERT_CURPAD_ACTIVE("pad_setsv");
dd2155a4
DM
1393
1394 DEBUG_X(PerlIO_printf(Perl_debug_log,
1395 "Pad 0x%"UVxf"[0x%"UVxf"] setsv: %ld sv=0x%"UVxf"\n",
f3548bdc 1396 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(sv))
dd2155a4
DM
1397 );
1398 PL_curpad[po] = sv;
1399}
dd2155a4 1400
cc76b5cc 1401#endif /* DEBUGGING */
dd2155a4
DM
1402
1403/*
cc76b5cc 1404=for apidoc m|void|pad_block_start|int full
dd2155a4 1405
e89fca5e 1406Update the pad compilation state variables on entry to a new block.
dd2155a4
DM
1407
1408=cut
1409*/
1410
1411/* XXX DAPM perhaps:
1412 * - integrate this in general state-saving routine ???
1413 * - combine with the state-saving going on in pad_new ???
1414 * - introduce a new SAVE type that does all this in one go ?
1415 */
1416
1417void
1418Perl_pad_block_start(pTHX_ int full)
1419{
f3548bdc 1420 ASSERT_CURPAD_ACTIVE("pad_block_start");
dd2155a4 1421 SAVEI32(PL_comppad_name_floor);
9b7476d7 1422 PL_comppad_name_floor = PadnamelistMAX(PL_comppad_name);
dd2155a4
DM
1423 if (full)
1424 PL_comppad_name_fill = PL_comppad_name_floor;
1425 if (PL_comppad_name_floor < 0)
1426 PL_comppad_name_floor = 0;
1427 SAVEI32(PL_min_intro_pending);
1428 SAVEI32(PL_max_intro_pending);
1429 PL_min_intro_pending = 0;
1430 SAVEI32(PL_comppad_name_fill);
1431 SAVEI32(PL_padix_floor);
1780e744
FC
1432 /* PL_padix_floor is what PL_padix is reset to at the start of each
1433 statement, by pad_reset(). We set it when entering a new scope
1434 to keep things like this working:
1435 print "$foo$bar", do { this(); that() . "foo" };
1436 We must not let "$foo$bar" and the later concatenation share the
1437 same target. */
dd2155a4
DM
1438 PL_padix_floor = PL_padix;
1439 PL_pad_reset_pending = FALSE;
1440}
1441
dd2155a4 1442/*
25f5d540 1443=for apidoc Am|U32|intro_my
dd2155a4 1444
25f5d540
LM
1445"Introduce" C<my> variables to visible status. This is called during parsing
1446at the end of each statement to make lexical variables visible to subsequent
1447statements.
dd2155a4
DM
1448
1449=cut
1450*/
1451
1452U32
1453Perl_intro_my(pTHX)
1454{
6a0435be 1455 PADNAME **svp;
dd2155a4 1456 I32 i;
6012dc80 1457 U32 seq;
dd2155a4 1458
f3548bdc 1459 ASSERT_CURPAD_ACTIVE("intro_my");
8635e3c2
FC
1460 if (PL_compiling.cop_seq) {
1461 seq = PL_compiling.cop_seq;
1462 PL_compiling.cop_seq = 0;
1463 }
1464 else
1465 seq = PL_cop_seqmax;
dd2155a4 1466 if (! PL_min_intro_pending)
8635e3c2 1467 return seq;
dd2155a4 1468
9b7476d7 1469 svp = PadnamelistARRAY(PL_comppad_name);
dd2155a4 1470 for (i = PL_min_intro_pending; i <= PL_max_intro_pending; i++) {
6a0435be 1471 PADNAME * const sv = svp[i];
53c1dcc0 1472
6a0435be 1473 if (sv && PadnameLEN(sv) && !PadnameOUTER(sv)
0d311cdb
DM
1474 && COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO)
1475 {
2df5bdd7 1476 COP_SEQ_RANGE_HIGH_set(sv, PERL_PADSEQ_INTRO); /* Don't know scope end yet. */
809abb02 1477 COP_SEQ_RANGE_LOW_set(sv, PL_cop_seqmax);
dd2155a4 1478 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1479 "Pad intromy: %ld \"%s\", (%lu,%lu)\n",
6a0435be 1480 (long)i, PadnamePV(sv),
809abb02
NC
1481 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1482 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4
DM
1483 );
1484 }
1485 }
953c8b80 1486 COP_SEQMAX_INC;
dd2155a4
DM
1487 PL_min_intro_pending = 0;
1488 PL_comppad_name_fill = PL_max_intro_pending; /* Needn't search higher */
1489 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
6012dc80 1490 "Pad intromy: seq -> %ld\n", (long)(PL_cop_seqmax)));
dd2155a4 1491
6012dc80 1492 return seq;
dd2155a4
DM
1493}
1494
1495/*
cc76b5cc 1496=for apidoc m|void|pad_leavemy
dd2155a4
DM
1497
1498Cleanup at end of scope during compilation: set the max seq number for
1499lexicals in this scope and warn of any lexicals that never got introduced.
1500
1501=cut
1502*/
1503
6d5c2147 1504OP *
dd2155a4
DM
1505Perl_pad_leavemy(pTHX)
1506{
1507 I32 off;
6d5c2147 1508 OP *o = NULL;
9b7476d7 1509 PADNAME * const * const svp = PadnamelistARRAY(PL_comppad_name);
dd2155a4
DM
1510
1511 PL_pad_reset_pending = FALSE;
1512
f3548bdc 1513 ASSERT_CURPAD_ACTIVE("pad_leavemy");
dd2155a4
DM
1514 if (PL_min_intro_pending && PL_comppad_name_fill < PL_min_intro_pending) {
1515 for (off = PL_max_intro_pending; off >= PL_min_intro_pending; off--) {
01b9977c
FC
1516 const PADNAME * const name = svp[off];
1517 if (name && PadnameLEN(name) && !PadnameOUTER(name))
9b387841 1518 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
01b9977c
FC
1519 "%"PNf" never introduced",
1520 PNfARG(name));
dd2155a4
DM
1521 }
1522 }
1523 /* "Deintroduce" my variables that are leaving with this scope. */
9b7476d7
FC
1524 for (off = PadnamelistMAX(PL_comppad_name);
1525 off > PL_comppad_name_fill; off--) {
01b9977c
FC
1526 PADNAME * const sv = svp[off];
1527 if (sv && PadnameLEN(sv) && !PadnameOUTER(sv)
2df5bdd7
DM
1528 && COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
1529 {
809abb02 1530 COP_SEQ_RANGE_HIGH_set(sv, PL_cop_seqmax);
dd2155a4 1531 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1532 "Pad leavemy: %ld \"%s\", (%lu,%lu)\n",
01b9977c 1533 (long)off, PadnamePV(sv),
809abb02
NC
1534 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1535 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4 1536 );
6d5c2147
FC
1537 if (!PadnameIsSTATE(sv) && !PadnameIsOUR(sv)
1538 && *PadnamePV(sv) == '&' && PadnameLEN(sv) > 1) {
1539 OP *kid = newOP(OP_INTROCV, 0);
1540 kid->op_targ = off;
1541 o = op_prepend_elem(OP_LINESEQ, kid, o);
1542 }
dd2155a4
DM
1543 }
1544 }
953c8b80 1545 COP_SEQMAX_INC;
dd2155a4
DM
1546 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1547 "Pad leavemy: seq = %ld\n", (long)PL_cop_seqmax));
6d5c2147 1548 return o;
dd2155a4
DM
1549}
1550
dd2155a4 1551/*
cc76b5cc 1552=for apidoc m|void|pad_swipe|PADOFFSET po|bool refadjust
dd2155a4 1553
796b6530 1554Abandon the tmp in the current pad at offset C<po> and replace with a
dd2155a4
DM
1555new one.
1556
1557=cut
1558*/
1559
1560void
1561Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust)
1562{
f3548bdc 1563 ASSERT_CURPAD_LEGAL("pad_swipe");
dd2155a4
DM
1564 if (!PL_curpad)
1565 return;
1566 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1567 Perl_croak(aTHX_ "panic: pad_swipe curpad, %p!=%p",
1568 AvARRAY(PL_comppad), PL_curpad);
9100eeb1
Z
1569 if (!po || ((SSize_t)po) > AvFILLp(PL_comppad))
1570 Perl_croak(aTHX_ "panic: pad_swipe po=%ld, fill=%ld",
1571 (long)po, (long)AvFILLp(PL_comppad));
dd2155a4
DM
1572
1573 DEBUG_X(PerlIO_printf(Perl_debug_log,
1574 "Pad 0x%"UVxf"[0x%"UVxf"] swipe: %ld\n",
1575 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po));
1576
dd2155a4
DM
1577 if (refadjust)
1578 SvREFCNT_dec(PL_curpad[po]);
1579
9ad9869c
DM
1580
1581 /* if pad tmps aren't shared between ops, then there's no need to
1582 * create a new tmp when an existing op is freed */
53de1311 1583#ifdef USE_PAD_RESET
561b68a9 1584 PL_curpad[po] = newSV(0);
dd2155a4 1585 SvPADTMP_on(PL_curpad[po]);
9ad9869c 1586#else
ce0d59fd 1587 PL_curpad[po] = NULL;
97bf4a8d 1588#endif
325e1816 1589 if (PadnamelistMAX(PL_comppad_name) != -1
4891fdfa 1590 && (PADOFFSET)PadnamelistMAX(PL_comppad_name) >= po) {
ce0d59fd
FC
1591 if (PadnamelistARRAY(PL_comppad_name)[po]) {
1592 assert(!PadnameLEN(PadnamelistARRAY(PL_comppad_name)[po]));
1593 }
0f94cb1f 1594 PadnamelistARRAY(PL_comppad_name)[po] = &PL_padname_undef;
325e1816 1595 }
b54c5e14
FC
1596 /* Use PL_constpadix here, not PL_padix. The latter may have been
1597 reset by pad_reset. We don’t want pad_alloc to have to scan the
1598 whole pad when allocating a constant. */
1599 if ((I32)po < PL_constpadix)
1600 PL_constpadix = po - 1;
dd2155a4
DM
1601}
1602
dd2155a4 1603/*
cc76b5cc 1604=for apidoc m|void|pad_reset
dd2155a4
DM
1605
1606Mark all the current temporaries for reuse
1607
1608=cut
1609*/
1610
1780e744
FC
1611/* pad_reset() causes pad temp TARGs (operator targets) to be shared
1612 * between OPs from different statements. During compilation, at the start
1613 * of each statement pad_reset resets PL_padix back to its previous value.
1614 * When allocating a target, pad_alloc begins its scan through the pad at
1615 * PL_padix+1. */
1f676739 1616static void
82af08ae 1617S_pad_reset(pTHX)
dd2155a4 1618{
53de1311 1619#ifdef USE_PAD_RESET
dd2155a4 1620 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1621 Perl_croak(aTHX_ "panic: pad_reset curpad, %p!=%p",
1622 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1623
1624 DEBUG_X(PerlIO_printf(Perl_debug_log,
1625 "Pad 0x%"UVxf"[0x%"UVxf"] reset: padix %ld -> %ld",
1626 PTR2UV(PL_comppad), PTR2UV(PL_curpad),
1627 (long)PL_padix, (long)PL_padix_floor
1628 )
1629 );
1630
284167a5 1631 if (!TAINTING_get) { /* Can't mix tainted and non-tainted temporaries. */
dd2155a4
DM
1632 PL_padix = PL_padix_floor;
1633 }
1634#endif
1635 PL_pad_reset_pending = FALSE;
1636}
1637
dd2155a4 1638/*
cc76b5cc
Z
1639=for apidoc Amx|void|pad_tidy|padtidy_type type
1640
1641Tidy up a pad at the end of compilation of the code to which it belongs.
1642Jobs performed here are: remove most stuff from the pads of anonsub
796b6530 1643prototypes; give it a C<@_>; mark temporaries as such. C<type> indicates
cc76b5cc 1644the kind of subroutine:
dd2155a4 1645
cc76b5cc
Z
1646 padtidy_SUB ordinary subroutine
1647 padtidy_SUBCLONE prototype for lexical closure
1648 padtidy_FORMAT format
dd2155a4
DM
1649
1650=cut
1651*/
1652
1653/* XXX DAPM surely most of this stuff should be done properly
1654 * at the right time beforehand, rather than going around afterwards
1655 * cleaning up our mistakes ???
1656 */
1657
1658void
1659Perl_pad_tidy(pTHX_ padtidy_type type)
1660{
27da23d5 1661 dVAR;
dd2155a4 1662
f3548bdc 1663 ASSERT_CURPAD_ACTIVE("pad_tidy");
b5c19bd7 1664
db21619c
DM
1665 /* If this CV has had any 'eval-capable' ops planted in it:
1666 * i.e. it contains any of:
1667 *
1668 * * eval '...',
1669 * * //ee,
1670 * * use re 'eval'; /$var/
1671 * * /(?{..})/),
1672 *
1673 * Then any anon prototypes in the chain of CVs should be marked as
1674 * cloneable, so that for example the eval's CV in
1675 *
1676 * sub { eval '$x' }
1677 *
1678 * gets the right CvOUTSIDE. If running with -d, *any* sub may
1679 * potentially have an eval executed within it.
b5c19bd7
DM
1680 */
1681
1682 if (PL_cv_has_eval || PL_perldb) {
e1ec3a88 1683 const CV *cv;
b5c19bd7
DM
1684 for (cv = PL_compcv ;cv; cv = CvOUTSIDE(cv)) {
1685 if (cv != PL_compcv && CvCOMPILED(cv))
1686 break; /* no need to mark already-compiled code */
1687 if (CvANON(cv)) {
1688 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1689 "Pad clone on cv=0x%"UVxf"\n", PTR2UV(cv)));
1690 CvCLONE_on(cv);
1691 }
00cc8743 1692 CvHASEVAL_on(cv);
b5c19bd7
DM
1693 }
1694 }
1695
eb8137a9 1696 /* extend namepad to match curpad */
9b7476d7
FC
1697 if (PadnamelistMAX(PL_comppad_name) < AvFILLp(PL_comppad))
1698 padnamelist_store(PL_comppad_name, AvFILLp(PL_comppad), NULL);
dd2155a4
DM
1699
1700 if (type == padtidy_SUBCLONE) {
9b7476d7 1701 PADNAME ** const namep = PadnamelistARRAY(PL_comppad_name);
504618e9 1702 PADOFFSET ix;
b5c19bd7 1703
dd2155a4 1704 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
dbfcda05
FC
1705 PADNAME *namesv;
1706 if (!namep[ix]) namep[ix] = &PL_padname_undef;
dd2155a4 1707
dd2155a4
DM
1708 /*
1709 * The only things that a clonable function needs in its
3a6ce63a 1710 * pad are anonymous subs, constants and GVs.
dd2155a4
DM
1711 * The rest are created anew during cloning.
1712 */
b561f196 1713 if (!PL_curpad[ix] || SvIMMORTAL(PL_curpad[ix]))
3a6ce63a 1714 continue;
ce0d59fd
FC
1715 namesv = namep[ix];
1716 if (!(PadnamePV(namesv) &&
dbfcda05 1717 (!PadnameLEN(namesv) || *PadnamePV(namesv) == '&')))
dd2155a4
DM
1718 {
1719 SvREFCNT_dec(PL_curpad[ix]);
a0714e2c 1720 PL_curpad[ix] = NULL;
dd2155a4
DM
1721 }
1722 }
1723 }
1724 else if (type == padtidy_SUB) {
1725 /* XXX DAPM this same bit of code keeps appearing !!! Rationalise? */
53c1dcc0 1726 AV * const av = newAV(); /* Will be @_ */
ad64d0ec 1727 av_store(PL_comppad, 0, MUTABLE_SV(av));
11ca45c0 1728 AvREIFY_only(av);
dd2155a4
DM
1729 }
1730
4cee4ca8 1731 if (type == padtidy_SUB || type == padtidy_FORMAT) {
9b7476d7 1732 PADNAME ** const namep = PadnamelistARRAY(PL_comppad_name);
504618e9 1733 PADOFFSET ix;
dd2155a4 1734 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
0f94cb1f 1735 if (!namep[ix]) namep[ix] = &PL_padname_undef;
2347c8c0 1736 if (!PL_curpad[ix] || SvIMMORTAL(PL_curpad[ix]))
dd2155a4 1737 continue;
0f94cb1f 1738 if (SvPADMY(PL_curpad[ix]) && !PadnameOUTER(namep[ix])) {
adf8f095
NC
1739 /* This is a work around for how the current implementation of
1740 ?{ } blocks in regexps interacts with lexicals.
1741
1742 One of our lexicals.
1743 Can't do this on all lexicals, otherwise sub baz() won't
1744 compile in
1745
1746 my $foo;
1747
1748 sub bar { ++$foo; }
1749
1750 sub baz { ++$foo; }
1751
1752 because completion of compiling &bar calling pad_tidy()
1753 would cause (top level) $foo to be marked as stale, and
1754 "no longer available". */
1755 SvPADSTALE_on(PL_curpad[ix]);
1756 }
dd2155a4
DM
1757 }
1758 }
f3548bdc 1759 PL_curpad = AvARRAY(PL_comppad);
dd2155a4
DM
1760}
1761
dd2155a4 1762/*
cc76b5cc 1763=for apidoc m|void|pad_free|PADOFFSET po
dd2155a4 1764
8627550a 1765Free the SV at offset po in the current pad.
dd2155a4
DM
1766
1767=cut
1768*/
1769
1770/* XXX DAPM integrate with pad_swipe ???? */
1771void
1772Perl_pad_free(pTHX_ PADOFFSET po)
1773{
53de1311 1774#ifndef USE_PAD_RESET
ad9e6ae1 1775 SV *sv;
ff06c6b2 1776#endif
f3548bdc 1777 ASSERT_CURPAD_LEGAL("pad_free");
dd2155a4
DM
1778 if (!PL_curpad)
1779 return;
1780 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1781 Perl_croak(aTHX_ "panic: pad_free curpad, %p!=%p",
1782 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1783 if (!po)
1784 Perl_croak(aTHX_ "panic: pad_free po");
1785
1786 DEBUG_X(PerlIO_printf(Perl_debug_log,
1787 "Pad 0x%"UVxf"[0x%"UVxf"] free: %ld\n",
1788 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po)
1789 );
1790
53de1311 1791#ifndef USE_PAD_RESET
ad9e6ae1
DM
1792 sv = PL_curpad[po];
1793 if (sv && sv != &PL_sv_undef && !SvPADMY(sv))
1794 SvFLAGS(sv) &= ~SVs_PADTMP;
1795
dd2155a4
DM
1796 if ((I32)po < PL_padix)
1797 PL_padix = po - 1;
53d3c048 1798#endif
dd2155a4
DM
1799}
1800
dd2155a4 1801/*
cc76b5cc 1802=for apidoc m|void|do_dump_pad|I32 level|PerlIO *file|PADLIST *padlist|int full
dd2155a4
DM
1803
1804Dump the contents of a padlist
1805
1806=cut
1807*/
1808
1809void
1810Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full)
1811{
9b7476d7 1812 const PADNAMELIST *pad_name;
e1ec3a88 1813 const AV *pad;
01326933 1814 PADNAME **pname;
dd2155a4 1815 SV **ppad;
dd2155a4
DM
1816 I32 ix;
1817
7918f24d
NC
1818 PERL_ARGS_ASSERT_DO_DUMP_PAD;
1819
dd2155a4
DM
1820 if (!padlist) {
1821 return;
1822 }
9b7476d7 1823 pad_name = PadlistNAMES(padlist);
86d2498c 1824 pad = PadlistARRAY(padlist)[1];
9b7476d7 1825 pname = PadnamelistARRAY(pad_name);
dd2155a4
DM
1826 ppad = AvARRAY(pad);
1827 Perl_dump_indent(aTHX_ level, file,
1828 "PADNAME = 0x%"UVxf"(0x%"UVxf") PAD = 0x%"UVxf"(0x%"UVxf")\n",
1829 PTR2UV(pad_name), PTR2UV(pname), PTR2UV(pad), PTR2UV(ppad)
1830 );
1831
9b7476d7 1832 for (ix = 1; ix <= PadnamelistMAX(pad_name); ix++) {
01326933 1833 const PADNAME *namesv = pname[ix];
325e1816 1834 if (namesv && !PadnameLEN(namesv)) {
a0714e2c 1835 namesv = NULL;
dd2155a4
DM
1836 }
1837 if (namesv) {
01326933 1838 if (PadnameOUTER(namesv))
ee6cee0c 1839 Perl_dump_indent(aTHX_ level+1, file,
c0fd1b42 1840 "%2d. 0x%"UVxf"<%lu> FAKE \"%s\" flags=0x%lx index=%lu\n",
ee6cee0c
DM
1841 (int) ix,
1842 PTR2UV(ppad[ix]),
1843 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
01326933 1844 PadnamePV(namesv),
809abb02
NC
1845 (unsigned long)PARENT_FAKELEX_FLAGS(namesv),
1846 (unsigned long)PARENT_PAD_INDEX(namesv)
b5c19bd7 1847
ee6cee0c
DM
1848 );
1849 else
1850 Perl_dump_indent(aTHX_ level+1, file,
809abb02 1851 "%2d. 0x%"UVxf"<%lu> (%lu,%lu) \"%s\"\n",
ee6cee0c
DM
1852 (int) ix,
1853 PTR2UV(ppad[ix]),
1854 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
809abb02
NC
1855 (unsigned long)COP_SEQ_RANGE_LOW(namesv),
1856 (unsigned long)COP_SEQ_RANGE_HIGH(namesv),
01326933 1857 PadnamePV(namesv)
ee6cee0c 1858 );
dd2155a4
DM
1859 }
1860 else if (full) {
1861 Perl_dump_indent(aTHX_ level+1, file,
1862 "%2d. 0x%"UVxf"<%lu>\n",
1863 (int) ix,
1864 PTR2UV(ppad[ix]),
1865 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0)
1866 );
1867 }
1868 }
1869}
1870
cc76b5cc 1871#ifdef DEBUGGING
dd2155a4
DM
1872
1873/*
cc76b5cc 1874=for apidoc m|void|cv_dump|CV *cv|const char *title
dd2155a4
DM
1875
1876dump the contents of a CV
1877
1878=cut
1879*/
1880
dd2155a4 1881STATIC void
e1ec3a88 1882S_cv_dump(pTHX_ const CV *cv, const char *title)
dd2155a4 1883{
53c1dcc0 1884 const CV * const outside = CvOUTSIDE(cv);
b70d5558 1885 PADLIST* const padlist = CvPADLIST(cv);
dd2155a4 1886
7918f24d
NC
1887 PERL_ARGS_ASSERT_CV_DUMP;
1888
dd2155a4
DM
1889 PerlIO_printf(Perl_debug_log,
1890 " %s: CV=0x%"UVxf" (%s), OUTSIDE=0x%"UVxf" (%s)\n",
1891 title,
1892 PTR2UV(cv),
1893 (CvANON(cv) ? "ANON"
71f882da 1894 : (SvTYPE(cv) == SVt_PVFM) ? "FORMAT"
dd2155a4
DM
1895 : (cv == PL_main_cv) ? "MAIN"
1896 : CvUNIQUE(cv) ? "UNIQUE"
1897 : CvGV(cv) ? GvNAME(CvGV(cv)) : "UNDEFINED"),
1898 PTR2UV(outside),
1899 (!outside ? "null"
1900 : CvANON(outside) ? "ANON"
1901 : (outside == PL_main_cv) ? "MAIN"
1902 : CvUNIQUE(outside) ? "UNIQUE"
1903 : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
1904
1905 PerlIO_printf(Perl_debug_log,
1906 " PADLIST = 0x%"UVxf"\n", PTR2UV(padlist));
1907 do_dump_pad(1, Perl_debug_log, padlist, 1);
1908}
dd2155a4 1909
cc76b5cc 1910#endif /* DEBUGGING */
dd2155a4
DM
1911
1912/*
cc76b5cc 1913=for apidoc Am|CV *|cv_clone|CV *proto
dd2155a4 1914
2d7f6611 1915Clone a CV, making a lexical closure. C<proto> supplies the prototype
cc76b5cc
Z
1916of the function: its code, pad structure, and other attributes.
1917The prototype is combined with a capture of outer lexicals to which the
1918code refers, which are taken from the currently-executing instance of
1919the immediately surrounding code.
dd2155a4
DM
1920
1921=cut
1922*/
1923
e0c6a6b8 1924static CV *S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned);
e10681aa 1925
21195f4d 1926static CV *
e0c6a6b8
FC
1927S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned,
1928 bool newcv)
dd2155a4 1929{
dd2155a4 1930 I32 ix;
b70d5558 1931 PADLIST* const protopadlist = CvPADLIST(proto);
9b7476d7 1932 PADNAMELIST *const protopad_name = PadlistNAMES(protopadlist);
86d2498c 1933 const PAD *const protopad = PadlistARRAY(protopadlist)[1];
39899bf0 1934 PADNAME** const pname = PadnamelistARRAY(protopad_name);
53c1dcc0 1935 SV** const ppad = AvARRAY(protopad);
9b7476d7 1936 const I32 fname = PadnamelistMAX(protopad_name);
e1ec3a88 1937 const I32 fpad = AvFILLp(protopad);
b5c19bd7 1938 SV** outpad;
71f882da 1939 long depth;
e0c6a6b8
FC
1940 U32 subclones = 0;
1941 bool trouble = FALSE;
7918f24d 1942
dd2155a4
DM
1943 assert(!CvUNIQUE(proto));
1944
1b5aaca6
FC
1945 /* Anonymous subs have a weak CvOUTSIDE pointer, so its value is not
1946 * reliable. The currently-running sub is always the one we need to
1947 * close over.
8d88fe29
FC
1948 * For my subs, the currently-running sub may not be the one we want.
1949 * We have to check whether it is a clone of CvOUTSIDE.
1b5aaca6
FC
1950 * Note that in general for formats, CvOUTSIDE != find_runcv.
1951 * Since formats may be nested inside closures, CvOUTSIDE may point
71f882da 1952 * to a prototype; we instead want the cloned parent who called us.
af41786f 1953 */
71f882da 1954
e07561e6 1955 if (!outside) {
ebfebee4 1956 if (CvWEAKOUTSIDE(proto))
71f882da 1957 outside = find_runcv(NULL);
e07561e6 1958 else {
af41786f 1959 outside = CvOUTSIDE(proto);
db4cf31d
FC
1960 if ((CvCLONE(outside) && ! CvCLONED(outside))
1961 || !CvPADLIST(outside)
b4db5868 1962 || CvPADLIST(outside)->xpadl_id != protopadlist->xpadl_outid) {
db4cf31d 1963 outside = find_runcv_where(
a56015b9 1964 FIND_RUNCV_padid_eq, PTR2IV(protopadlist->xpadl_outid), NULL
70794f7b 1965 );
db4cf31d 1966 /* outside could be null */
5dff782d 1967 }
e07561e6 1968 }
5dff782d 1969 }
db4cf31d 1970 depth = outside ? CvDEPTH(outside) : 0;
71f882da
DM
1971 if (!depth)
1972 depth = 1;
b5c19bd7 1973
dd2155a4
DM
1974 ENTER;
1975 SAVESPTR(PL_compcv);
e07561e6 1976 PL_compcv = cv;
5fab0186 1977 if (newcv) SAVEFREESV(cv); /* in case of fatal warnings */
dd2155a4 1978
a0d2bbd5
FC
1979 if (CvHASEVAL(cv))
1980 CvOUTSIDE(cv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
dd2155a4 1981
cbacc9aa 1982 SAVESPTR(PL_comppad_name);
9ef8d569 1983 PL_comppad_name = protopad_name;
eacbb379 1984 CvPADLIST_set(cv, pad_new(padnew_CLONE|padnew_SAVE));
b4db5868 1985 CvPADLIST(cv)->xpadl_id = protopadlist->xpadl_id;
dd2155a4 1986
b5c19bd7 1987 av_fill(PL_comppad, fpad);
dd2155a4 1988
dd2155a4
DM
1989 PL_curpad = AvARRAY(PL_comppad);
1990
db4cf31d 1991 outpad = outside && CvPADLIST(outside)
86d2498c 1992 ? AvARRAY(PadlistARRAY(CvPADLIST(outside))[depth])
f2ead8b8 1993 : NULL;
b4db5868 1994 if (outpad) CvPADLIST(cv)->xpadl_outid = CvPADLIST(outside)->xpadl_id;
b5c19bd7 1995
dd2155a4 1996 for (ix = fpad; ix > 0; ix--) {
39899bf0 1997 PADNAME* const namesv = (ix <= fname) ? pname[ix] : NULL;
a0714e2c 1998 SV *sv = NULL;
325e1816 1999 if (namesv && PadnameLEN(namesv)) { /* lexical */
f2047bf1
FC
2000 if (PadnameIsOUR(namesv)) { /* or maybe not so lexical */
2001 NOOP;
2002 }
2003 else {
39899bf0 2004 if (PadnameOUTER(namesv)) { /* lexical from outside? */
5aec98df
FC
2005 /* formats may have an inactive, or even undefined, parent;
2006 but state vars are always available. */
f2ead8b8 2007 if (!outpad || !(sv = outpad[PARENT_PAD_INDEX(namesv)])
cae5dbbe 2008 || ( SvPADSTALE(sv) && !SvPAD_STATE(namesv)
db4cf31d 2009 && (!outside || !CvDEPTH(outside))) ) {
445f13ff 2010 S_unavailable(aTHX_ namesv);
a0714e2c 2011 sv = NULL;
71f882da 2012 }
33894c1a 2013 else
f84c484e 2014 SvREFCNT_inc_simple_void_NN(sv);
dd2155a4 2015 }
71f882da 2016 if (!sv) {
39899bf0 2017 const char sigil = PadnamePV(namesv)[0];
e1ec3a88 2018 if (sigil == '&')
e07561e6
FC
2019 /* If there are state subs, we need to clone them, too.
2020 But they may need to close over variables we have
2021 not cloned yet. So we will have to do a second
2022 pass. Furthermore, there may be state subs clos-
2023 ing over other state subs’ entries, so we have
2024 to put a stub here and then clone into it on the
2025 second pass. */
6d5c2147
FC
2026 if (SvPAD_STATE(namesv) && !CvCLONED(ppad[ix])) {
2027 assert(SvTYPE(ppad[ix]) == SVt_PVCV);
e0c6a6b8
FC
2028 subclones ++;
2029 if (CvOUTSIDE(ppad[ix]) != proto)
2030 trouble = TRUE;
6d5c2147 2031 sv = newSV_type(SVt_PVCV);
f3feca7a 2032 CvLEXICAL_on(sv);
6d5c2147
FC
2033 }
2034 else if (PadnameLEN(namesv)>1 && !PadnameIsOUR(namesv))
2035 {
2036 /* my sub */
81df9f6f
FC
2037 /* Just provide a stub, but name it. It will be
2038 upgrade to the real thing on scope entry. */
f7cf2d13 2039 dVAR;
e1588866 2040 U32 hash;
39899bf0
FC
2041 PERL_HASH(hash, PadnamePV(namesv)+1,
2042 PadnameLEN(namesv) - 1);
81df9f6f 2043 sv = newSV_type(SVt_PVCV);
cf748c3c
FC
2044 CvNAME_HEK_set(
2045 sv,
39899bf0
FC
2046 share_hek(PadnamePV(namesv)+1,
2047 1 - PadnameLEN(namesv),
e1588866 2048 hash)
cf748c3c 2049 );
f3feca7a 2050 CvLEXICAL_on(sv);
6d5c2147
FC
2051 }
2052 else sv = SvREFCNT_inc(ppad[ix]);
e1ec3a88 2053 else if (sigil == '@')
ad64d0ec 2054 sv = MUTABLE_SV(newAV());
e1ec3a88 2055 else if (sigil == '%')
ad64d0ec 2056 sv = MUTABLE_SV(newHV());
dd2155a4 2057 else
561b68a9 2058 sv = newSV(0);
0d3b281c 2059 /* reset the 'assign only once' flag on each state var */
e07561e6 2060 if (sigil != '&' && SvPAD_STATE(namesv))
0d3b281c 2061 SvPADSTALE_on(sv);
dd2155a4 2062 }
f2047bf1 2063 }
dd2155a4 2064 }
4c894bf7 2065 else if (namesv && PadnamePV(namesv)) {
f84c484e 2066 sv = SvREFCNT_inc_NN(ppad[ix]);
dd2155a4
DM
2067 }
2068 else {
561b68a9 2069 sv = newSV(0);
dd2155a4 2070 SvPADTMP_on(sv);
dd2155a4 2071 }
71f882da 2072 PL_curpad[ix] = sv;
dd2155a4
DM
2073 }
2074
e07561e6 2075 if (subclones)
e0c6a6b8
FC
2076 {
2077 if (trouble || cloned) {
2078 /* Uh-oh, we have trouble! At least one of the state subs here
2079 has its CvOUTSIDE pointer pointing somewhere unexpected. It
2080 could be pointing to another state protosub that we are
2081 about to clone. So we have to track which sub clones come
2082 from which protosubs. If the CvOUTSIDE pointer for a parti-
2083 cular sub points to something we have not cloned yet, we
2084 delay cloning it. We must loop through the pad entries,
2085 until we get a full pass with no cloning. If any uncloned
2086 subs remain (probably nested inside anonymous or ‘my’ subs),
2087 then they get cloned in a final pass.
2088 */
2089 bool cloned_in_this_pass;
2090 if (!cloned)
2091 cloned = (HV *)sv_2mortal((SV *)newHV());
2092 do {
2093 cloned_in_this_pass = FALSE;
2094 for (ix = fpad; ix > 0; ix--) {
2095 PADNAME * const name =
2096 (ix <= fname) ? pname[ix] : NULL;
2097 if (name && name != &PL_padname_undef
2098 && !PadnameOUTER(name) && PadnamePV(name)[0] == '&'
2099 && PadnameIsSTATE(name) && !CvCLONED(PL_curpad[ix]))
2100 {
2101 CV * const protokey = CvOUTSIDE(ppad[ix]);
2102 CV ** const cvp = protokey == proto
2103 ? &cv
2104 : (CV **)hv_fetch(cloned, (char *)&protokey,
2105 sizeof(CV *), 0);
2106 if (cvp && *cvp) {
2107 S_cv_clone(aTHX_ (CV *)ppad[ix],
2108 (CV *)PL_curpad[ix],
2109 *cvp, cloned);
b53eee5d 2110 (void)hv_store(cloned, (char *)&ppad[ix],
e0c6a6b8
FC
2111 sizeof(CV *),
2112 SvREFCNT_inc_simple_NN(PL_curpad[ix]),
2113 0);
2114 subclones--;
2115 cloned_in_this_pass = TRUE;
2116 }
2117 }
2118 }
2119 } while (cloned_in_this_pass);
2120 if (subclones)
2121 for (ix = fpad; ix > 0; ix--) {
2122 PADNAME * const name =
2123 (ix <= fname) ? pname[ix] : NULL;
2124 if (name && name != &PL_padname_undef
2125 && !PadnameOUTER(name) && PadnamePV(name)[0] == '&'
2126 && PadnameIsSTATE(name) && !CvCLONED(PL_curpad[ix]))
2127 S_cv_clone(aTHX_ (CV *)ppad[ix],
2128 (CV *)PL_curpad[ix],
2129 CvOUTSIDE(ppad[ix]), cloned);
2130 }
2131 }
2132 else for (ix = fpad; ix > 0; ix--) {
39899bf0
FC
2133 PADNAME * const name = (ix <= fname) ? pname[ix] : NULL;
2134 if (name && name != &PL_padname_undef && !PadnameOUTER(name)
2135 && PadnamePV(name)[0] == '&' && PadnameIsSTATE(name))
e0c6a6b8
FC
2136 S_cv_clone(aTHX_ (CV *)ppad[ix], (CV *)PL_curpad[ix], cv,
2137 NULL);
e07561e6 2138 }
e0c6a6b8 2139 }
e07561e6 2140
5fab0186 2141 if (newcv) SvREFCNT_inc_simple_void_NN(cv);
e10681aa 2142 LEAVE;
21195f4d 2143
1567c65a
FC
2144 if (CvCONST(cv)) {
2145 /* Constant sub () { $x } closing over $x:
2146 * The prototype was marked as a candiate for const-ization,
2147 * so try to grab the current const value, and if successful,
2148 * turn into a const sub:
2149 */
d8d6ddf8
FC
2150 SV* const_sv;
2151 OP *o = CvSTART(cv);
1567c65a 2152 assert(newcv);
d8d6ddf8
FC
2153 for (; o; o = o->op_next)
2154 if (o->op_type == OP_PADSV)
2155 break;
2156 ASSUME(o->op_type == OP_PADSV);
2157 const_sv = PAD_BASE_SV(CvPADLIST(cv), o->op_targ);
2158 /* the candidate should have 1 ref from this pad and 1 ref
2159 * from the parent */
2160 if (const_sv && SvREFCNT(const_sv) == 2) {
1567c65a 2161 const bool was_method = cBOOL(CvMETHOD(cv));
04472a84 2162 bool copied = FALSE;
d8d6ddf8
FC
2163 if (outside) {
2164 PADNAME * const pn =
2165 PadlistNAMESARRAY(CvPADLIST(outside))
2166 [PARENT_PAD_INDEX(PadlistNAMESARRAY(
2167 CvPADLIST(cv))[o->op_targ])];
2168 assert(PadnameOUTER(PadlistNAMESARRAY(CvPADLIST(cv))
2169 [o->op_targ]));
2170 if (PadnameLVALUE(pn)) {
2171 /* We have a lexical that is potentially modifiable
2172 elsewhere, so making a constant will break clo-
2173 sure behaviour. If this is a ‘simple lexical
2174 op tree’, i.e., sub(){$x}, emit a deprecation
2175 warning, but continue to exhibit the old behav-
2176 iour of making it a constant based on the ref-
2177 count of the candidate variable.
2178
2179 A simple lexical op tree looks like this:
2180
2181 leavesub
2182 lineseq
2183 nextstate
2184 padsv
2185 */
e6dae479 2186 if (OpSIBLING(
d8d6ddf8
FC
2187 cUNOPx(cUNOPx(CvROOT(cv))->op_first)->op_first
2188 ) == o
e6dae479 2189 && !OpSIBLING(o))
04472a84 2190 {
d8d6ddf8
FC
2191 Perl_ck_warner_d(aTHX_
2192 packWARN(WARN_DEPRECATED),
2193 "Constants from lexical "
2194 "variables potentially "
2195 "modified elsewhere are "
2196 "deprecated");
04472a84
FC
2197 /* We *copy* the lexical variable, and donate the
2198 copy to newCONSTSUB. Yes, this is ugly, and
2199 should be killed. We need to do this for the
2200 time being, however, because turning on SvPADTMP
2201 on a lexical will have observable effects
2202 elsewhere. */
2203 const_sv = newSVsv(const_sv);
2204 copied = TRUE;
2205 }
d8d6ddf8
FC
2206 else
2207 goto constoff;
2208 }
2209 }
04472a84
FC
2210 if (!copied)
2211 SvREFCNT_inc_simple_void_NN(const_sv);
2212 /* If the lexical is not used elsewhere, it is safe to turn on
2213 SvPADTMP, since it is only when it is used in lvalue con-
2214 text that the difference is observable. */
6dfba0aa 2215 SvREADONLY_on(const_sv);
d8d6ddf8 2216 SvPADTMP_on(const_sv);
1567c65a 2217 SvREFCNT_dec_NN(cv);
1567c65a
FC
2218 cv = newCONSTSUB(CvSTASH(proto), NULL, const_sv);
2219 if (was_method)
2220 CvMETHOD_on(cv);
2221 }
2222 else {
d8d6ddf8 2223 constoff:
1567c65a
FC
2224 CvCONST_off(cv);
2225 }
2226 }
2227
21195f4d 2228 return cv;
e10681aa
FC
2229}
2230
2231static CV *
e0c6a6b8 2232S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned)
e10681aa 2233{
20b7effb 2234#ifdef USE_ITHREADS
c04ef36e 2235 dVAR;
20b7effb 2236#endif
5fab0186 2237 const bool newcv = !cv;
c04ef36e 2238
e10681aa
FC
2239 assert(!CvUNIQUE(proto));
2240
2241 if (!cv) cv = MUTABLE_CV(newSV_type(SvTYPE(proto)));
2242 CvFLAGS(cv) = CvFLAGS(proto) & ~(CVf_CLONE|CVf_WEAKOUTSIDE|CVf_CVGV_RC
2243 |CVf_SLABBED);
2244 CvCLONED_on(cv);
2245
2246 CvFILE(cv) = CvDYNFILE(proto) ? savepv(CvFILE(proto))
2247 : CvFILE(proto);
2248 if (CvNAMED(proto))
2e800d79 2249 CvNAME_HEK_set(cv, share_hek_hek(CvNAME_HEK(proto)));
e10681aa
FC
2250 else CvGV_set(cv,CvGV(proto));
2251 CvSTASH_set(cv, CvSTASH(proto));
2252 OP_REFCNT_LOCK;
2253 CvROOT(cv) = OpREFCNT_inc(CvROOT(proto));
2254 OP_REFCNT_UNLOCK;
2255 CvSTART(cv) = CvSTART(proto);
2256 CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(proto);
2257
fdf416b6 2258 if (SvPOK(proto)) {
e10681aa 2259 sv_setpvn(MUTABLE_SV(cv), SvPVX_const(proto), SvCUR(proto));
fdf416b6
BF
2260 if (SvUTF8(proto))
2261 SvUTF8_on(MUTABLE_SV(cv));
2262 }
e10681aa
FC
2263 if (SvMAGIC(proto))
2264 mg_copy((SV *)proto, (SV *)cv, 0, 0);
2265
21195f4d 2266 if (CvPADLIST(proto))
e0c6a6b8 2267 cv = S_cv_clone_pad(aTHX_ proto, cv, outside, cloned, newcv);
e10681aa 2268
dd2155a4
DM
2269 DEBUG_Xv(
2270 PerlIO_printf(Perl_debug_log, "\nPad CV clone\n");
e10681aa 2271 if (CvOUTSIDE(cv)) cv_dump(CvOUTSIDE(cv), "Outside");
dd2155a4
DM
2272 cv_dump(proto, "Proto");
2273 cv_dump(cv, "To");
2274 );
2275
dd2155a4
DM
2276 return cv;
2277}
2278
e07561e6
FC
2279CV *
2280Perl_cv_clone(pTHX_ CV *proto)
2281{
2282 PERL_ARGS_ASSERT_CV_CLONE;
2283
fead5351 2284 if (!CvPADLIST(proto)) Perl_croak(aTHX_ "panic: no pad in cv_clone");
e0c6a6b8 2285 return S_cv_clone(aTHX_ proto, NULL, NULL, NULL);
e07561e6
FC
2286}
2287
6d5c2147
FC
2288/* Called only by pp_clonecv */
2289CV *
2290Perl_cv_clone_into(pTHX_ CV *proto, CV *target)
2291{
2292 PERL_ARGS_ASSERT_CV_CLONE_INTO;
2293 cv_undef(target);
e0c6a6b8 2294 return S_cv_clone(aTHX_ proto, target, NULL, NULL);
6d5c2147
FC
2295}
2296
fb094047
FC
2297/*
2298=for apidoc cv_name
2299
2300Returns an SV containing the name of the CV, mainly for use in error
2301reporting. The CV may actually be a GV instead, in which case the returned
7a275a2e
FC
2302SV holds the GV's name. Anything other than a GV or CV is treated as a
2303string already holding the sub name, but this could change in the future.
fb094047
FC
2304
2305An SV may be passed as a second argument. If so, the name will be assigned
2306to it and it will be returned. Otherwise the returned SV will be a new
2307mortal.
2308
c5608a1f 2309If C<flags> has the C<CV_NAME_NOTQUAL> bit set, then the package name will not be
ecf05a58
FC
2310included. If the first argument is neither a CV nor a GV, this flag is
2311ignored (subject to change).
2312
fb094047
FC
2313=cut
2314*/
2315
c5569a55 2316SV *
ecf05a58 2317Perl_cv_name(pTHX_ CV *cv, SV *sv, U32 flags)
c5569a55
FC
2318{
2319 PERL_ARGS_ASSERT_CV_NAME;
2320 if (!isGV_with_GP(cv) && SvTYPE(cv) != SVt_PVCV) {
2321 if (sv) sv_setsv(sv,(SV *)cv);
2322 return sv ? (sv) : (SV *)cv;
2323 }
2324 {
f3fb6cf3 2325 SV * const retsv = sv ? (sv) : sv_newmortal();
c5569a55
FC
2326 if (SvTYPE(cv) == SVt_PVCV) {
2327 if (CvNAMED(cv)) {
ecf05a58
FC
2328 if (CvLEXICAL(cv) || flags & CV_NAME_NOTQUAL)
2329 sv_sethek(retsv, CvNAME_HEK(cv));
c5569a55
FC
2330 else {
2331 sv_sethek(retsv, HvNAME_HEK(CvSTASH(cv)));
2332 sv_catpvs(retsv, "::");
f34d8cdd 2333 sv_cathek(retsv, CvNAME_HEK(cv));
c5569a55
FC
2334 }
2335 }
ecf05a58 2336 else if (CvLEXICAL(cv) || flags & CV_NAME_NOTQUAL)
c5569a55
FC
2337 sv_sethek(retsv, GvNAME_HEK(GvEGV(CvGV(cv))));
2338 else gv_efullname3(retsv, CvGV(cv), NULL);
2339 }
ecf05a58 2340 else if (flags & CV_NAME_NOTQUAL) sv_sethek(retsv, GvNAME_HEK(cv));
c5569a55
FC
2341 else gv_efullname3(retsv,(GV *)cv,NULL);
2342 return retsv;
2343 }
2344}
2345
dd2155a4 2346/*
cc76b5cc 2347=for apidoc m|void|pad_fixup_inner_anons|PADLIST *padlist|CV *old_cv|CV *new_cv
dd2155a4 2348
796b6530
KW
2349For any anon CVs in the pad, change C<CvOUTSIDE> of that CV from
2350C<old_cv> to C<new_cv> if necessary. Needed when a newly-compiled CV has to be
7dafbf52 2351moved to a pre-existing CV struct.
dd2155a4
DM
2352
2353=cut
2354*/
2355
2356void
2357Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv)
2358{
2359 I32 ix;
9b7476d7 2360 PADNAMELIST * const comppad_name = PadlistNAMES(padlist);
86d2498c 2361 AV * const comppad = PadlistARRAY(padlist)[1];
0f94cb1f 2362 PADNAME ** const namepad = PadnamelistARRAY(comppad_name);
53c1dcc0 2363 SV ** const curpad = AvARRAY(comppad);
7918f24d
NC
2364
2365 PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS;
294a48e9
AL
2366 PERL_UNUSED_ARG(old_cv);
2367
9b7476d7 2368 for (ix = PadnamelistMAX(comppad_name); ix > 0; ix--) {
307cbb9f
FC
2369 const PADNAME *name = namepad[ix];
2370 if (name && name != &PL_padname_undef && !PadnameIsOUR(name)
0f94cb1f 2371 && *PadnamePV(name) == '&')
dd2155a4 2372 {
307cbb9f
FC
2373 CV *innercv = MUTABLE_CV(curpad[ix]);
2374 if (UNLIKELY(PadnameOUTER(name))) {
2375 CV *cv = new_cv;
2376 PADNAME **names = namepad;
2377 PADOFFSET i = ix;
2378 while (PadnameOUTER(name)) {
95c0a761 2379 assert(SvTYPE(cv) == SVt_PVCV);
307cbb9f
FC
2380 cv = CvOUTSIDE(cv);
2381 names = PadlistNAMESARRAY(CvPADLIST(cv));
2382 i = PARENT_PAD_INDEX(name);
2383 name = names[i];
2384 }
2385 innercv = (CV *)PadARRAY(PadlistARRAY(CvPADLIST(cv))[1])[i];
2386 }
2387 if (SvTYPE(innercv) == SVt_PVCV) {
0f94cb1f
FC
2388 /* XXX 0afba48f added code here to check for a proto CV
2389 attached to the pad entry by magic. But shortly there-
2390 after 81df9f6f95 moved the magic to the pad name. The
2391 code here was never updated, so it wasn’t doing anything
2392 and got deleted when PADNAME became a distinct type. Is
2393 there any bug as a result? */
0afba48f 2394 if (CvOUTSIDE(innercv) == old_cv) {
1f122f9b
FC
2395 if (!CvWEAKOUTSIDE(innercv)) {
2396 SvREFCNT_dec(old_cv);
2397 SvREFCNT_inc_simple_void_NN(new_cv);
2398 }
0afba48f
FC
2399 CvOUTSIDE(innercv) = new_cv;
2400 }
e09ac076
FC
2401 }
2402 else { /* format reference */
2403 SV * const rv = curpad[ix];
2404 CV *innercv;
2405 if (!SvOK(rv)) continue;
2406 assert(SvROK(rv));
2407 assert(SvWEAKREF(rv));
2408 innercv = (CV *)SvRV(rv);
2409 assert(!CvWEAKOUTSIDE(innercv));
95c0a761 2410 assert(CvOUTSIDE(innercv) == old_cv);
e09ac076
FC
2411 SvREFCNT_dec(CvOUTSIDE(innercv));
2412 CvOUTSIDE(innercv) = (CV *)SvREFCNT_inc_simple_NN(new_cv);
2413 }
dd2155a4
DM
2414 }
2415 }
2416}
2417
2418/*
cc76b5cc 2419=for apidoc m|void|pad_push|PADLIST *padlist|int depth
dd2155a4
DM
2420
2421Push a new pad frame onto the padlist, unless there's already a pad at
26019298 2422this depth, in which case don't bother creating a new one. Then give
796b6530 2423the new pad an C<@_> in slot zero.
dd2155a4
DM
2424
2425=cut
2426*/
2427
2428void
26019298 2429Perl_pad_push(pTHX_ PADLIST *padlist, int depth)
dd2155a4 2430{
7918f24d
NC
2431 PERL_ARGS_ASSERT_PAD_PUSH;
2432
86d2498c
FC
2433 if (depth > PadlistMAX(padlist) || !PadlistARRAY(padlist)[depth]) {
2434 PAD** const svp = PadlistARRAY(padlist);
44f8325f
AL
2435 AV* const newpad = newAV();
2436 SV** const oldpad = AvARRAY(svp[depth-1]);
502c6561 2437 I32 ix = AvFILLp((const AV *)svp[1]);
9b7476d7 2438 const I32 names_fill = PadnamelistMAX((PADNAMELIST *)svp[0]);
a2ddd1d1 2439 PADNAME ** const names = PadnamelistARRAY((PADNAMELIST *)svp[0]);
26019298
AL
2440 AV *av;
2441
dd2155a4 2442 for ( ;ix > 0; ix--) {
325e1816 2443 if (names_fill >= ix && PadnameLEN(names[ix])) {
a2ddd1d1
FC
2444 const char sigil = PadnamePV(names[ix])[0];
2445 if (PadnameOUTER(names[ix])
2446 || PadnameIsSTATE(names[ix])
fda94784
RGS
2447 || sigil == '&')
2448 {
dd2155a4
DM
2449 /* outer lexical or anon code */
2450 av_store(newpad, ix, SvREFCNT_inc(oldpad[ix]));
2451 }
2452 else { /* our own lexical */
26019298
AL
2453 SV *sv;
2454 if (sigil == '@')
ad64d0ec 2455 sv = MUTABLE_SV(newAV());
26019298 2456 else if (sigil == '%')
ad64d0ec 2457 sv = MUTABLE_SV(newHV());
dd2155a4 2458 else
561b68a9 2459 sv = newSV(0);
26019298 2460 av_store(newpad, ix, sv);
dd2155a4
DM
2461 }
2462 }
778f1807 2463 else if (PadnamePV(names[ix])) {
f84c484e 2464 av_store(newpad, ix, SvREFCNT_inc_NN(oldpad[ix]));
dd2155a4
DM
2465 }
2466 else {
2467 /* save temporaries on recursion? */
561b68a9 2468 SV * const sv = newSV(0);
26019298 2469 av_store(newpad, ix, sv);
dd2155a4
DM
2470 SvPADTMP_on(sv);
2471 }
2472 }
26019298 2473 av = newAV();
ad64d0ec 2474 av_store(newpad, 0, MUTABLE_SV(av));
11ca45c0 2475 AvREIFY_only(av);
26019298 2476
7261499d 2477 padlist_store(padlist, depth, newpad);
dd2155a4
DM
2478 }
2479}
b21dc031 2480
d5b1589c
NC
2481#if defined(USE_ITHREADS)
2482
2483# define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
2484
cc76b5cc 2485/*
b70d5558 2486=for apidoc padlist_dup
cc76b5cc
Z
2487
2488Duplicates a pad.
2489
2490=cut
2491*/
2492
b70d5558
FC
2493PADLIST *
2494Perl_padlist_dup(pTHX_ PADLIST *srcpad, CLONE_PARAMS *param)
d5b1589c 2495{
7261499d
FC
2496 PADLIST *dstpad;
2497 bool cloneall;
2498 PADOFFSET max;
2499
d5b1589c
NC
2500 PERL_ARGS_ASSERT_PADLIST_DUP;
2501
71c165d4 2502 cloneall = cBOOL(param->flags & CLONEf_COPY_STACKS);
86d2498c 2503 assert (SvREFCNT(PadlistARRAY(srcpad)[1]) == 1);
7261499d 2504
86d2498c 2505 max = cloneall ? PadlistMAX(srcpad) : 1;
7261499d
FC
2506
2507 Newx(dstpad, 1, PADLIST);
2508 ptr_table_store(PL_ptr_table, srcpad, dstpad);
86d2498c
FC
2509 PadlistMAX(dstpad) = max;
2510 Newx(PadlistARRAY(dstpad), max + 1, PAD *);
7261499d 2511
9b7476d7
FC
2512 PadlistARRAY(dstpad)[0] = (PAD *)
2513 padnamelist_dup(PadlistNAMES(srcpad), param);
2514 PadnamelistREFCNT(PadlistNAMES(dstpad))++;
7261499d
FC
2515 if (cloneall) {
2516 PADOFFSET depth;
9b7476d7 2517 for (depth = 1; depth <= max; ++depth)
86d2498c
FC
2518 PadlistARRAY(dstpad)[depth] =
2519 av_dup_inc(PadlistARRAY(srcpad)[depth], param);
6de654a5
NC
2520 } else {
2521 /* CvDEPTH() on our subroutine will be set to 0, so there's no need
2522 to build anything other than the first level of pads. */
86d2498c 2523 I32 ix = AvFILLp(PadlistARRAY(srcpad)[1]);
6de654a5 2524 AV *pad1;
9b7476d7 2525 const I32 names_fill = PadnamelistMAX(PadlistNAMES(srcpad));
86d2498c 2526 const PAD *const srcpad1 = PadlistARRAY(srcpad)[1];
6de654a5 2527 SV **oldpad = AvARRAY(srcpad1);
3e020df5 2528 PADNAME ** const names = PadnamelistARRAY(PadlistNAMES(dstpad));
6de654a5
NC
2529 SV **pad1a;
2530 AV *args;
6de654a5 2531
6de654a5
NC
2532 pad1 = newAV();
2533
2534 av_extend(pad1, ix);
86d2498c 2535 PadlistARRAY(dstpad)[1] = pad1;
6de654a5 2536 pad1a = AvARRAY(pad1);
6de654a5
NC
2537
2538 if (ix > -1) {
2539 AvFILLp(pad1) = ix;
2540
2541 for ( ;ix > 0; ix--) {
05d04d9c
NC
2542 if (!oldpad[ix]) {
2543 pad1a[ix] = NULL;
ce0d59fd
FC
2544 } else if (names_fill >= ix && names[ix] &&
2545 PadnameLEN(names[ix])) {
3e020df5
FC
2546 const char sigil = PadnamePV(names[ix])[0];
2547 if (PadnameOUTER(names[ix])
2548 || PadnameIsSTATE(names[ix])
05d04d9c
NC
2549 || sigil == '&')
2550 {
2551 /* outer lexical or anon code */
2552 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2553 }
2554 else { /* our own lexical */
adf8f095
NC
2555 if(SvPADSTALE(oldpad[ix]) && SvREFCNT(oldpad[ix]) > 1) {
2556 /* This is a work around for how the current
2557 implementation of ?{ } blocks in regexps
2558 interacts with lexicals. */
05d04d9c
NC
2559 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2560 } else {
2561 SV *sv;
2562
2563 if (sigil == '@')
2564 sv = MUTABLE_SV(newAV());
2565 else if (sigil == '%')
2566 sv = MUTABLE_SV(newHV());
2567 else
2568 sv = newSV(0);
2569 pad1a[ix] = sv;
05d04d9c
NC
2570 }
2571 }
2572 }
92154801 2573 else if (( names_fill >= ix && names[ix]
ce0d59fd 2574 && PadnamePV(names[ix]) )) {
05d04d9c
NC
2575 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2576 }
2577 else {
2578 /* save temporaries on recursion? */
2579 SV * const sv = newSV(0);
2580 pad1a[ix] = sv;
2581
2582 /* SvREFCNT(oldpad[ix]) != 1 for some code in threads.xs
2583 FIXTHAT before merging this branch.
2584 (And I know how to) */
145bf8ee 2585 if (SvPADTMP(oldpad[ix]))
05d04d9c
NC
2586 SvPADTMP_on(sv);
2587 }
6de654a5
NC
2588 }
2589
2590 if (oldpad[0]) {
2591 args = newAV(); /* Will be @_ */
2592 AvREIFY_only(args);
2593 pad1a[0] = (SV *)args;
2594 }
2595 }
2596 }
d5b1589c
NC
2597
2598 return dstpad;
2599}
2600
cc76b5cc 2601#endif /* USE_ITHREADS */
d5b1589c 2602
7261499d 2603PAD **
5aaab254 2604Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val)
7261499d 2605{
7261499d 2606 PAD **ary;
86d2498c 2607 SSize_t const oldmax = PadlistMAX(padlist);
7261499d
FC
2608
2609 PERL_ARGS_ASSERT_PADLIST_STORE;
2610
2611 assert(key >= 0);
2612
86d2498c
FC
2613 if (key > PadlistMAX(padlist)) {
2614 av_extend_guts(NULL,key,&PadlistMAX(padlist),
2615 (SV ***)&PadlistARRAY(padlist),
2616 (SV ***)&PadlistARRAY(padlist));
2617 Zero(PadlistARRAY(padlist)+oldmax+1, PadlistMAX(padlist)-oldmax,
7261499d
FC
2618 PAD *);
2619 }
86d2498c 2620 ary = PadlistARRAY(padlist);
7261499d
FC
2621 SvREFCNT_dec(ary[key]);
2622 ary[key] = val;
2623 return &ary[key];
2624}
2625
66610fdd 2626/*
9b7476d7
FC
2627=for apidoc newPADNAMELIST
2628
2629Creates a new pad name list. C<max> is the highest index for which space
2630is allocated.
2631
2632=cut
2633*/
2634
2635PADNAMELIST *
a0e9f837 2636Perl_newPADNAMELIST(size_t max)
9b7476d7
FC
2637{
2638 PADNAMELIST *pnl;
2639 Newx(pnl, 1, PADNAMELIST);
2640 Newxz(PadnamelistARRAY(pnl), max+1, PADNAME *);
2641 PadnamelistMAX(pnl) = -1;
2642 PadnamelistREFCNT(pnl) = 1;
2643 PadnamelistMAXNAMED(pnl) = 0;
2644 pnl->xpadnl_max = max;
2645 return pnl;
2646}
2647
2648/*
2649=for apidoc padnamelist_store
2650
2651Stores the pad name (which may be null) at the given index, freeing any
2652existing pad name in that slot.
2653
2654=cut
2655*/
2656
2657PADNAME **
2658Perl_padnamelist_store(pTHX_ PADNAMELIST *pnl, SSize_t key, PADNAME *val)
2659{
2660 PADNAME **ary;
2661
2662 PERL_ARGS_ASSERT_PADNAMELIST_STORE;
2663
2664 assert(key >= 0);
2665
2666 if (key > pnl->xpadnl_max)
2667 av_extend_guts(NULL,key,&pnl->xpadnl_max,
2668 (SV ***)&PadnamelistARRAY(pnl),
2669 (SV ***)&PadnamelistARRAY(pnl));
2670 if (PadnamelistMAX(pnl) < key) {
2671 Zero(PadnamelistARRAY(pnl)+PadnamelistMAX(pnl)+1,
2672 key-PadnamelistMAX(pnl), PADNAME *);
2673 PadnamelistMAX(pnl) = key;
2674 }
2675 ary = PadnamelistARRAY(pnl);
0f94cb1f
FC
2676 if (ary[key])
2677 PadnameREFCNT_dec(ary[key]);
9b7476d7
FC
2678 ary[key] = val;
2679 return &ary[key];
2680}
2681
2682/*
2683=for apidoc padnamelist_fetch
2684
2685Fetches the pad name from the given index.
2686
2687=cut
2688*/
2689
2690PADNAME *
a0e9f837 2691Perl_padnamelist_fetch(PADNAMELIST *pnl, SSize_t key)
9b7476d7
FC
2692{
2693 PERL_ARGS_ASSERT_PADNAMELIST_FETCH;
2694 ASSUME(key >= 0);
2695
2696 return key > PadnamelistMAX(pnl) ? NULL : PadnamelistARRAY(pnl)[key];
2697}
2698
2699void
2700Perl_padnamelist_free(pTHX_ PADNAMELIST *pnl)
2701{
2702 PERL_ARGS_ASSERT_PADNAMELIST_FREE;
2703 if (!--PadnamelistREFCNT(pnl)) {
2704 while(PadnamelistMAX(pnl) >= 0)
0f94cb1f
FC
2705 {
2706 PADNAME * const pn =
2707 PadnamelistARRAY(pnl)[PadnamelistMAX(pnl)--];
2708 if (pn)
2709 PadnameREFCNT_dec(pn);
2710 }
9b7476d7
FC
2711 Safefree(PadnamelistARRAY(pnl));
2712 Safefree(pnl);
2713 }
2714}
2715
2716#if defined(USE_ITHREADS)
2717
2718/*
2719=for apidoc padnamelist_dup
2720
2721Duplicates a pad name list.
2722
2723=cut
2724*/
2725
2726PADNAMELIST *
2727Perl_padnamelist_dup(pTHX_ PADNAMELIST *srcpad, CLONE_PARAMS *param)
2728{
2729 PADNAMELIST *dstpad;
2730 SSize_t max = PadnamelistMAX(srcpad);
2731
2732 PERL_ARGS_ASSERT_PADNAMELIST_DUP;
2733
2734 /* look for it in the table first */
2735 dstpad = (PADNAMELIST *)ptr_table_fetch(PL_ptr_table, srcpad);
2736 if (dstpad)
2737 return dstpad;
2738
2739 dstpad = newPADNAMELIST(max);
2740 PadnamelistREFCNT(dstpad) = 0; /* The caller will increment it. */
2741 PadnamelistMAXNAMED(dstpad) = PadnamelistMAXNAMED(srcpad);
2742 PadnamelistMAX(dstpad) = max;
2743
2744 ptr_table_store(PL_ptr_table, srcpad, dstpad);
2745 for (; max >= 0; max--)
0f94cb1f 2746 if (PadnamelistARRAY(srcpad)[max]) {
9b7476d7 2747 PadnamelistARRAY(dstpad)[max] =
0f94cb1f
FC
2748 padname_dup(PadnamelistARRAY(srcpad)[max], param);
2749 PadnameREFCNT(PadnamelistARRAY(dstpad)[max])++;
2750 }
9b7476d7
FC
2751
2752 return dstpad;
2753}
2754
2755#endif /* USE_ITHREADS */
2756
0f94cb1f
FC
2757/*
2758=for apidoc newPADNAMEpvn
2759
4a4088c4 2760Constructs and returns a new pad name. C<s> must be a UTF-8 string. Do not
0f94cb1f 2761use this for pad names that point to outer lexicals. See
fbe13c60 2762C<L</newPADNAMEouter>>.
0f94cb1f
FC
2763
2764=cut
2765*/
2766
2767PADNAME *
a0e9f837 2768Perl_newPADNAMEpvn(const char *s, STRLEN len)
0f94cb1f
FC
2769{
2770 struct padname_with_str *alloc;
2771 char *alloc2; /* for Newxz */
2772 PADNAME *pn;
2773 PERL_ARGS_ASSERT_NEWPADNAMEPVN;
2774 Newxz(alloc2,
2775 STRUCT_OFFSET(struct padname_with_str, xpadn_str[0]) + len + 1,
2776 char);
2777 alloc = (struct padname_with_str *)alloc2;
2778 pn = (PADNAME *)alloc;
2779 PadnameREFCNT(pn) = 1;
2780 PadnamePV(pn) = alloc->xpadn_str;
2781 Copy(s, PadnamePV(pn), len, char);
2782 *(PadnamePV(pn) + len) = '\0';
2783 PadnameLEN(pn) = len;
2784 return pn;
2785}
2786
2787/*
2788=for apidoc newPADNAMEouter
2789
2790Constructs and returns a new pad name. Only use this function for names
2d7f6611 2791that refer to outer lexicals. (See also L</newPADNAMEpvn>.) C<outer> is
0f94cb1f 2792the outer pad name that this one mirrors. The returned pad name has the
796b6530 2793C<PADNAMEt_OUTER> flag already set.
0f94cb1f
FC
2794
2795=cut
2796*/
2797
2798PADNAME *
a0e9f837 2799Perl_newPADNAMEouter(PADNAME *outer)
0f94cb1f
FC
2800{
2801 PADNAME *pn;
2802 PERL_ARGS_ASSERT_NEWPADNAMEOUTER;
2803 Newxz(pn, 1, PADNAME);
2804 PadnameREFCNT(pn) = 1;
2805 PadnamePV(pn) = PadnamePV(outer);
2806 /* Not PadnameREFCNT(outer), because ‘outer’ may itself close over
2807 another entry. The original pad name owns the buffer. */
2808 PadnameREFCNT(PADNAME_FROM_PV(PadnamePV(outer)))++;
2809 PadnameFLAGS(pn) = PADNAMEt_OUTER;
2810 PadnameLEN(pn) = PadnameLEN(outer);
2811 return pn;
2812}
2813
2814void
2815Perl_padname_free(pTHX_ PADNAME *pn)
2816{
2817 PERL_ARGS_ASSERT_PADNAME_FREE;
2818 if (!--PadnameREFCNT(pn)) {
2819 if (UNLIKELY(pn == &PL_padname_undef || pn == &PL_padname_const)) {
2820 PadnameREFCNT(pn) = SvREFCNT_IMMORTAL;
2821 return;
2822 }
2823 SvREFCNT_dec(PadnameTYPE(pn)); /* Takes care of protocv, too. */
2824 SvREFCNT_dec(PadnameOURSTASH(pn));
2825 if (PadnameOUTER(pn))
2826 PadnameREFCNT_dec(PADNAME_FROM_PV(PadnamePV(pn)));
2827 Safefree(pn);
2828 }
2829}
2830
2831#if defined(USE_ITHREADS)
2832
2833/*
2834=for apidoc padname_dup
2835
2836Duplicates a pad name.
2837
2838=cut
2839*/
2840
2841PADNAME *
2842Perl_padname_dup(pTHX_ PADNAME *src, CLONE_PARAMS *param)
2843{
2844 PADNAME *dst;
2845
2846 PERL_ARGS_ASSERT_PADNAME_DUP;
2847
2848 /* look for it in the table first */
2849 dst = (PADNAME *)ptr_table_fetch(PL_ptr_table, src);
2850 if (dst)
2851 return dst;
2852
2853 if (!PadnamePV(src)) {
2854 dst = &PL_padname_undef;
2855 ptr_table_store(PL_ptr_table, src, dst);
2856 return dst;
2857 }
2858
2859 dst = PadnameOUTER(src)
2860 ? newPADNAMEouter(padname_dup(PADNAME_FROM_PV(PadnamePV(src)), param))
2861 : newPADNAMEpvn(PadnamePV(src), PadnameLEN(src));
2862 ptr_table_store(PL_ptr_table, src, dst);
2863 PadnameLEN(dst) = PadnameLEN(src);
2864 PadnameFLAGS(dst) = PadnameFLAGS(src);
2865 PadnameREFCNT(dst) = 0; /* The caller will increment it. */
2866 PadnameTYPE (dst) = (HV *)sv_dup_inc((SV *)PadnameTYPE(src), param);
2867 PadnameOURSTASH(dst) = (HV *)sv_dup_inc((SV *)PadnameOURSTASH(src),
2868 param);
2869 dst->xpadn_low = src->xpadn_low;
2870 dst->xpadn_high = src->xpadn_high;
2871 dst->xpadn_gen = src->xpadn_gen;
2872 return dst;
2873}
2874
2875#endif /* USE_ITHREADS */
9b7476d7
FC
2876
2877/*
14d04a33 2878 * ex: set ts=8 sts=4 sw=4 et:
37442d52 2879 */