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