This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix compilation errors in win32sck.c with MinGW/gcc -xc++
[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 {
3291825f 1323 /* This relies on sv_setsv_flags() upgrading the destination to the same
486ec47a 1324 type as the source, independent of the flags set, and on it being
3291825f
NC
1325 "good" and only copying flag bits and pointers that it understands.
1326 */
0f94cb1f 1327 PADNAME *new_name = newPADNAMEouter(*out_name);
9b7476d7 1328 PADNAMELIST * const ocomppad_name = PL_comppad_name;
53c1dcc0 1329 PAD * const ocomppad = PL_comppad;
9b7476d7 1330 PL_comppad_name = PadlistNAMES(padlist);
86d2498c 1331 PL_comppad = PadlistARRAY(padlist)[1];
b5c19bd7
DM
1332 PL_curpad = AvARRAY(PL_comppad);
1333
3291825f 1334 new_offset
e1c02f84
FC
1335 = pad_alloc_name(new_name,
1336 PadnameIsSTATE(*out_name) ? padadd_STATE : 0,
1337 PadnameTYPE(*out_name),
1338 PadnameOURSTASH(*out_name)
3291825f
NC
1339 );
1340
3291825f
NC
1341 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1342 "Pad addname: %ld \"%.*s\" FAKE\n",
1343 (long)new_offset,
e1c02f84
FC
1344 (int) PadnameLEN(new_name),
1345 PadnamePV(new_name)));
1346 PARENT_FAKELEX_FLAGS_set(new_name, *out_flags);
b5c19bd7 1347
e1c02f84
FC
1348 PARENT_PAD_INDEX_set(new_name, 0);
1349 if (PadnameIsOUR(new_name)) {
6f207bd3 1350 NOOP; /* do nothing */
b5c19bd7 1351 }
71f882da 1352 else if (CvLATE(cv)) {
b5c19bd7 1353 /* delayed creation - just note the offset within parent pad */
e1c02f84 1354 PARENT_PAD_INDEX_set(new_name, offset);
b5c19bd7
DM
1355 CvCLONE_on(cv);
1356 }
1357 else {
1358 /* immediate creation - capture outer value right now */
1359 av_store(PL_comppad, new_offset, SvREFCNT_inc(*new_capturep));
81df9f6f 1360 /* But also note the offset, as newMYSUB needs it */
e1c02f84 1361 PARENT_PAD_INDEX_set(new_name, offset);
b5c19bd7
DM
1362 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1363 "Pad findlex cv=0x%"UVxf" saved captured sv 0x%"UVxf" at offset %ld\n",
1364 PTR2UV(cv), PTR2UV(*new_capturep), (long)new_offset));
dd2155a4 1365 }
e1c02f84
FC
1366 *out_name = new_name;
1367 *out_flags = PARENT_FAKELEX_FLAGS(new_name);
b5c19bd7
DM
1368
1369 PL_comppad_name = ocomppad_name;
1370 PL_comppad = ocomppad;
4608196e 1371 PL_curpad = ocomppad ? AvARRAY(ocomppad) : NULL;
dd2155a4 1372 }
b5c19bd7 1373 return new_offset;
dd2155a4
DM
1374}
1375
fb8a9836 1376#ifdef DEBUGGING
cc76b5cc 1377
dd2155a4 1378/*
cc76b5cc 1379=for apidoc Am|SV *|pad_sv|PADOFFSET po
dd2155a4 1380
cc76b5cc 1381Get the value at offset I<po> in the current (compiling or executing) pad.
dd2155a4
DM
1382Use macro PAD_SV instead of calling this function directly.
1383
1384=cut
1385*/
1386
dd2155a4
DM
1387SV *
1388Perl_pad_sv(pTHX_ PADOFFSET po)
1389{
f3548bdc 1390 ASSERT_CURPAD_ACTIVE("pad_sv");
dd2155a4 1391
dd2155a4
DM
1392 if (!po)
1393 Perl_croak(aTHX_ "panic: pad_sv po");
dd2155a4
DM
1394 DEBUG_X(PerlIO_printf(Perl_debug_log,
1395 "Pad 0x%"UVxf"[0x%"UVxf"] sv: %ld sv=0x%"UVxf"\n",
f3548bdc 1396 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(PL_curpad[po]))
dd2155a4
DM
1397 );
1398 return PL_curpad[po];
1399}
1400
dd2155a4 1401/*
cc76b5cc 1402=for apidoc Am|void|pad_setsv|PADOFFSET po|SV *sv
dd2155a4 1403
cc76b5cc 1404Set the value at offset I<po> in the current (compiling or executing) pad.
dd2155a4
DM
1405Use the macro PAD_SETSV() rather than calling this function directly.
1406
1407=cut
1408*/
1409
dd2155a4
DM
1410void
1411Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv)
1412{
7918f24d
NC
1413 PERL_ARGS_ASSERT_PAD_SETSV;
1414
f3548bdc 1415 ASSERT_CURPAD_ACTIVE("pad_setsv");
dd2155a4
DM
1416
1417 DEBUG_X(PerlIO_printf(Perl_debug_log,
1418 "Pad 0x%"UVxf"[0x%"UVxf"] setsv: %ld sv=0x%"UVxf"\n",
f3548bdc 1419 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(sv))
dd2155a4
DM
1420 );
1421 PL_curpad[po] = sv;
1422}
dd2155a4 1423
cc76b5cc 1424#endif /* DEBUGGING */
dd2155a4
DM
1425
1426/*
cc76b5cc 1427=for apidoc m|void|pad_block_start|int full
dd2155a4 1428
e89fca5e 1429Update the pad compilation state variables on entry to a new block.
dd2155a4
DM
1430
1431=cut
1432*/
1433
1434/* XXX DAPM perhaps:
1435 * - integrate this in general state-saving routine ???
1436 * - combine with the state-saving going on in pad_new ???
1437 * - introduce a new SAVE type that does all this in one go ?
1438 */
1439
1440void
1441Perl_pad_block_start(pTHX_ int full)
1442{
f3548bdc 1443 ASSERT_CURPAD_ACTIVE("pad_block_start");
dd2155a4 1444 SAVEI32(PL_comppad_name_floor);
9b7476d7 1445 PL_comppad_name_floor = PadnamelistMAX(PL_comppad_name);
dd2155a4
DM
1446 if (full)
1447 PL_comppad_name_fill = PL_comppad_name_floor;
1448 if (PL_comppad_name_floor < 0)
1449 PL_comppad_name_floor = 0;
1450 SAVEI32(PL_min_intro_pending);
1451 SAVEI32(PL_max_intro_pending);
1452 PL_min_intro_pending = 0;
1453 SAVEI32(PL_comppad_name_fill);
1454 SAVEI32(PL_padix_floor);
1780e744
FC
1455 /* PL_padix_floor is what PL_padix is reset to at the start of each
1456 statement, by pad_reset(). We set it when entering a new scope
1457 to keep things like this working:
1458 print "$foo$bar", do { this(); that() . "foo" };
1459 We must not let "$foo$bar" and the later concatenation share the
1460 same target. */
dd2155a4
DM
1461 PL_padix_floor = PL_padix;
1462 PL_pad_reset_pending = FALSE;
1463}
1464
dd2155a4 1465/*
25f5d540 1466=for apidoc Am|U32|intro_my
dd2155a4 1467
25f5d540
LM
1468"Introduce" C<my> variables to visible status. This is called during parsing
1469at the end of each statement to make lexical variables visible to subsequent
1470statements.
dd2155a4
DM
1471
1472=cut
1473*/
1474
1475U32
1476Perl_intro_my(pTHX)
1477{
6a0435be 1478 PADNAME **svp;
dd2155a4 1479 I32 i;
6012dc80 1480 U32 seq;
dd2155a4 1481
f3548bdc 1482 ASSERT_CURPAD_ACTIVE("intro_my");
8635e3c2
FC
1483 if (PL_compiling.cop_seq) {
1484 seq = PL_compiling.cop_seq;
1485 PL_compiling.cop_seq = 0;
1486 }
1487 else
1488 seq = PL_cop_seqmax;
dd2155a4 1489 if (! PL_min_intro_pending)
8635e3c2 1490 return seq;
dd2155a4 1491
9b7476d7 1492 svp = PadnamelistARRAY(PL_comppad_name);
dd2155a4 1493 for (i = PL_min_intro_pending; i <= PL_max_intro_pending; i++) {
6a0435be 1494 PADNAME * const sv = svp[i];
53c1dcc0 1495
6a0435be 1496 if (sv && PadnameLEN(sv) && !PadnameOUTER(sv)
0d311cdb
DM
1497 && COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO)
1498 {
2df5bdd7 1499 COP_SEQ_RANGE_HIGH_set(sv, PERL_PADSEQ_INTRO); /* Don't know scope end yet. */
809abb02 1500 COP_SEQ_RANGE_LOW_set(sv, PL_cop_seqmax);
dd2155a4 1501 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1502 "Pad intromy: %ld \"%s\", (%lu,%lu)\n",
6a0435be 1503 (long)i, PadnamePV(sv),
809abb02
NC
1504 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1505 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4
DM
1506 );
1507 }
1508 }
953c8b80 1509 COP_SEQMAX_INC;
dd2155a4
DM
1510 PL_min_intro_pending = 0;
1511 PL_comppad_name_fill = PL_max_intro_pending; /* Needn't search higher */
1512 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
6012dc80 1513 "Pad intromy: seq -> %ld\n", (long)(PL_cop_seqmax)));
dd2155a4 1514
6012dc80 1515 return seq;
dd2155a4
DM
1516}
1517
1518/*
cc76b5cc 1519=for apidoc m|void|pad_leavemy
dd2155a4
DM
1520
1521Cleanup at end of scope during compilation: set the max seq number for
1522lexicals in this scope and warn of any lexicals that never got introduced.
1523
1524=cut
1525*/
1526
6d5c2147 1527OP *
dd2155a4
DM
1528Perl_pad_leavemy(pTHX)
1529{
1530 I32 off;
6d5c2147 1531 OP *o = NULL;
9b7476d7 1532 PADNAME * const * const svp = PadnamelistARRAY(PL_comppad_name);
dd2155a4
DM
1533
1534 PL_pad_reset_pending = FALSE;
1535
f3548bdc 1536 ASSERT_CURPAD_ACTIVE("pad_leavemy");
dd2155a4
DM
1537 if (PL_min_intro_pending && PL_comppad_name_fill < PL_min_intro_pending) {
1538 for (off = PL_max_intro_pending; off >= PL_min_intro_pending; off--) {
01b9977c
FC
1539 const PADNAME * const name = svp[off];
1540 if (name && PadnameLEN(name) && !PadnameOUTER(name))
9b387841 1541 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
01b9977c
FC
1542 "%"PNf" never introduced",
1543 PNfARG(name));
dd2155a4
DM
1544 }
1545 }
1546 /* "Deintroduce" my variables that are leaving with this scope. */
9b7476d7
FC
1547 for (off = PadnamelistMAX(PL_comppad_name);
1548 off > PL_comppad_name_fill; off--) {
01b9977c
FC
1549 PADNAME * const sv = svp[off];
1550 if (sv && PadnameLEN(sv) && !PadnameOUTER(sv)
2df5bdd7
DM
1551 && COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
1552 {
809abb02 1553 COP_SEQ_RANGE_HIGH_set(sv, PL_cop_seqmax);
dd2155a4 1554 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1555 "Pad leavemy: %ld \"%s\", (%lu,%lu)\n",
01b9977c 1556 (long)off, PadnamePV(sv),
809abb02
NC
1557 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1558 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4 1559 );
6d5c2147
FC
1560 if (!PadnameIsSTATE(sv) && !PadnameIsOUR(sv)
1561 && *PadnamePV(sv) == '&' && PadnameLEN(sv) > 1) {
1562 OP *kid = newOP(OP_INTROCV, 0);
1563 kid->op_targ = off;
1564 o = op_prepend_elem(OP_LINESEQ, kid, o);
1565 }
dd2155a4
DM
1566 }
1567 }
953c8b80 1568 COP_SEQMAX_INC;
dd2155a4
DM
1569 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1570 "Pad leavemy: seq = %ld\n", (long)PL_cop_seqmax));
6d5c2147 1571 return o;
dd2155a4
DM
1572}
1573
dd2155a4 1574/*
cc76b5cc 1575=for apidoc m|void|pad_swipe|PADOFFSET po|bool refadjust
dd2155a4
DM
1576
1577Abandon the tmp in the current pad at offset po and replace with a
1578new one.
1579
1580=cut
1581*/
1582
1583void
1584Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust)
1585{
f3548bdc 1586 ASSERT_CURPAD_LEGAL("pad_swipe");
dd2155a4
DM
1587 if (!PL_curpad)
1588 return;
1589 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1590 Perl_croak(aTHX_ "panic: pad_swipe curpad, %p!=%p",
1591 AvARRAY(PL_comppad), PL_curpad);
9100eeb1
Z
1592 if (!po || ((SSize_t)po) > AvFILLp(PL_comppad))
1593 Perl_croak(aTHX_ "panic: pad_swipe po=%ld, fill=%ld",
1594 (long)po, (long)AvFILLp(PL_comppad));
dd2155a4
DM
1595
1596 DEBUG_X(PerlIO_printf(Perl_debug_log,
1597 "Pad 0x%"UVxf"[0x%"UVxf"] swipe: %ld\n",
1598 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po));
1599
dd2155a4
DM
1600 if (refadjust)
1601 SvREFCNT_dec(PL_curpad[po]);
1602
9ad9869c
DM
1603
1604 /* if pad tmps aren't shared between ops, then there's no need to
1605 * create a new tmp when an existing op is freed */
53de1311 1606#ifdef USE_PAD_RESET
561b68a9 1607 PL_curpad[po] = newSV(0);
dd2155a4 1608 SvPADTMP_on(PL_curpad[po]);
9ad9869c 1609#else
ce0d59fd 1610 PL_curpad[po] = NULL;
97bf4a8d 1611#endif
325e1816 1612 if (PadnamelistMAX(PL_comppad_name) != -1
4891fdfa 1613 && (PADOFFSET)PadnamelistMAX(PL_comppad_name) >= po) {
ce0d59fd
FC
1614 if (PadnamelistARRAY(PL_comppad_name)[po]) {
1615 assert(!PadnameLEN(PadnamelistARRAY(PL_comppad_name)[po]));
1616 }
0f94cb1f 1617 PadnamelistARRAY(PL_comppad_name)[po] = &PL_padname_undef;
325e1816 1618 }
b54c5e14
FC
1619 /* Use PL_constpadix here, not PL_padix. The latter may have been
1620 reset by pad_reset. We don’t want pad_alloc to have to scan the
1621 whole pad when allocating a constant. */
1622 if ((I32)po < PL_constpadix)
1623 PL_constpadix = po - 1;
dd2155a4
DM
1624}
1625
dd2155a4 1626/*
cc76b5cc 1627=for apidoc m|void|pad_reset
dd2155a4
DM
1628
1629Mark all the current temporaries for reuse
1630
1631=cut
1632*/
1633
1780e744
FC
1634/* pad_reset() causes pad temp TARGs (operator targets) to be shared
1635 * between OPs from different statements. During compilation, at the start
1636 * of each statement pad_reset resets PL_padix back to its previous value.
1637 * When allocating a target, pad_alloc begins its scan through the pad at
1638 * PL_padix+1. */
1f676739 1639static void
82af08ae 1640S_pad_reset(pTHX)
dd2155a4 1641{
53de1311 1642#ifdef USE_PAD_RESET
dd2155a4 1643 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1644 Perl_croak(aTHX_ "panic: pad_reset curpad, %p!=%p",
1645 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1646
1647 DEBUG_X(PerlIO_printf(Perl_debug_log,
1648 "Pad 0x%"UVxf"[0x%"UVxf"] reset: padix %ld -> %ld",
1649 PTR2UV(PL_comppad), PTR2UV(PL_curpad),
1650 (long)PL_padix, (long)PL_padix_floor
1651 )
1652 );
1653
284167a5 1654 if (!TAINTING_get) { /* Can't mix tainted and non-tainted temporaries. */
dd2155a4
DM
1655 PL_padix = PL_padix_floor;
1656 }
1657#endif
1658 PL_pad_reset_pending = FALSE;
1659}
1660
dd2155a4 1661/*
cc76b5cc
Z
1662=for apidoc Amx|void|pad_tidy|padtidy_type type
1663
1664Tidy up a pad at the end of compilation of the code to which it belongs.
1665Jobs performed here are: remove most stuff from the pads of anonsub
1666prototypes; give it a @_; mark temporaries as such. I<type> indicates
1667the kind of subroutine:
dd2155a4 1668
cc76b5cc
Z
1669 padtidy_SUB ordinary subroutine
1670 padtidy_SUBCLONE prototype for lexical closure
1671 padtidy_FORMAT format
dd2155a4
DM
1672
1673=cut
1674*/
1675
1676/* XXX DAPM surely most of this stuff should be done properly
1677 * at the right time beforehand, rather than going around afterwards
1678 * cleaning up our mistakes ???
1679 */
1680
1681void
1682Perl_pad_tidy(pTHX_ padtidy_type type)
1683{
27da23d5 1684 dVAR;
dd2155a4 1685
f3548bdc 1686 ASSERT_CURPAD_ACTIVE("pad_tidy");
b5c19bd7 1687
db21619c
DM
1688 /* If this CV has had any 'eval-capable' ops planted in it:
1689 * i.e. it contains any of:
1690 *
1691 * * eval '...',
1692 * * //ee,
1693 * * use re 'eval'; /$var/
1694 * * /(?{..})/),
1695 *
1696 * Then any anon prototypes in the chain of CVs should be marked as
1697 * cloneable, so that for example the eval's CV in
1698 *
1699 * sub { eval '$x' }
1700 *
1701 * gets the right CvOUTSIDE. If running with -d, *any* sub may
1702 * potentially have an eval executed within it.
b5c19bd7
DM
1703 */
1704
1705 if (PL_cv_has_eval || PL_perldb) {
e1ec3a88 1706 const CV *cv;
b5c19bd7
DM
1707 for (cv = PL_compcv ;cv; cv = CvOUTSIDE(cv)) {
1708 if (cv != PL_compcv && CvCOMPILED(cv))
1709 break; /* no need to mark already-compiled code */
1710 if (CvANON(cv)) {
1711 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1712 "Pad clone on cv=0x%"UVxf"\n", PTR2UV(cv)));
1713 CvCLONE_on(cv);
1714 }
00cc8743 1715 CvHASEVAL_on(cv);
b5c19bd7
DM
1716 }
1717 }
1718
eb8137a9 1719 /* extend namepad to match curpad */
9b7476d7
FC
1720 if (PadnamelistMAX(PL_comppad_name) < AvFILLp(PL_comppad))
1721 padnamelist_store(PL_comppad_name, AvFILLp(PL_comppad), NULL);
dd2155a4
DM
1722
1723 if (type == padtidy_SUBCLONE) {
9b7476d7 1724 PADNAME ** const namep = PadnamelistARRAY(PL_comppad_name);
504618e9 1725 PADOFFSET ix;
b5c19bd7 1726
dd2155a4 1727 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
dbfcda05
FC
1728 PADNAME *namesv;
1729 if (!namep[ix]) namep[ix] = &PL_padname_undef;
dd2155a4 1730
dd2155a4
DM
1731 /*
1732 * The only things that a clonable function needs in its
3a6ce63a 1733 * pad are anonymous subs, constants and GVs.
dd2155a4
DM
1734 * The rest are created anew during cloning.
1735 */
b561f196 1736 if (!PL_curpad[ix] || SvIMMORTAL(PL_curpad[ix]))
3a6ce63a 1737 continue;
ce0d59fd
FC
1738 namesv = namep[ix];
1739 if (!(PadnamePV(namesv) &&
dbfcda05 1740 (!PadnameLEN(namesv) || *PadnamePV(namesv) == '&')))
dd2155a4
DM
1741 {
1742 SvREFCNT_dec(PL_curpad[ix]);
a0714e2c 1743 PL_curpad[ix] = NULL;
dd2155a4
DM
1744 }
1745 }
1746 }
1747 else if (type == padtidy_SUB) {
1748 /* XXX DAPM this same bit of code keeps appearing !!! Rationalise? */
53c1dcc0 1749 AV * const av = newAV(); /* Will be @_ */
ad64d0ec 1750 av_store(PL_comppad, 0, MUTABLE_SV(av));
11ca45c0 1751 AvREIFY_only(av);
dd2155a4
DM
1752 }
1753
4cee4ca8 1754 if (type == padtidy_SUB || type == padtidy_FORMAT) {
9b7476d7 1755 PADNAME ** const namep = PadnamelistARRAY(PL_comppad_name);
504618e9 1756 PADOFFSET ix;
dd2155a4 1757 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
0f94cb1f 1758 if (!namep[ix]) namep[ix] = &PL_padname_undef;
2347c8c0 1759 if (!PL_curpad[ix] || SvIMMORTAL(PL_curpad[ix]))
dd2155a4 1760 continue;
0f94cb1f 1761 if (SvPADMY(PL_curpad[ix]) && !PadnameOUTER(namep[ix])) {
adf8f095
NC
1762 /* This is a work around for how the current implementation of
1763 ?{ } blocks in regexps interacts with lexicals.
1764
1765 One of our lexicals.
1766 Can't do this on all lexicals, otherwise sub baz() won't
1767 compile in
1768
1769 my $foo;
1770
1771 sub bar { ++$foo; }
1772
1773 sub baz { ++$foo; }
1774
1775 because completion of compiling &bar calling pad_tidy()
1776 would cause (top level) $foo to be marked as stale, and
1777 "no longer available". */
1778 SvPADSTALE_on(PL_curpad[ix]);
1779 }
dd2155a4
DM
1780 }
1781 }
f3548bdc 1782 PL_curpad = AvARRAY(PL_comppad);
dd2155a4
DM
1783}
1784
dd2155a4 1785/*
cc76b5cc 1786=for apidoc m|void|pad_free|PADOFFSET po
dd2155a4 1787
8627550a 1788Free the SV at offset po in the current pad.
dd2155a4
DM
1789
1790=cut
1791*/
1792
1793/* XXX DAPM integrate with pad_swipe ???? */
1794void
1795Perl_pad_free(pTHX_ PADOFFSET po)
1796{
53de1311 1797#ifndef USE_PAD_RESET
ad9e6ae1 1798 SV *sv;
ff06c6b2 1799#endif
f3548bdc 1800 ASSERT_CURPAD_LEGAL("pad_free");
dd2155a4
DM
1801 if (!PL_curpad)
1802 return;
1803 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1804 Perl_croak(aTHX_ "panic: pad_free curpad, %p!=%p",
1805 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1806 if (!po)
1807 Perl_croak(aTHX_ "panic: pad_free po");
1808
1809 DEBUG_X(PerlIO_printf(Perl_debug_log,
1810 "Pad 0x%"UVxf"[0x%"UVxf"] free: %ld\n",
1811 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po)
1812 );
1813
53de1311 1814#ifndef USE_PAD_RESET
ad9e6ae1
DM
1815 sv = PL_curpad[po];
1816 if (sv && sv != &PL_sv_undef && !SvPADMY(sv))
1817 SvFLAGS(sv) &= ~SVs_PADTMP;
1818
dd2155a4
DM
1819 if ((I32)po < PL_padix)
1820 PL_padix = po - 1;
53d3c048 1821#endif
dd2155a4
DM
1822}
1823
dd2155a4 1824/*
cc76b5cc 1825=for apidoc m|void|do_dump_pad|I32 level|PerlIO *file|PADLIST *padlist|int full
dd2155a4
DM
1826
1827Dump the contents of a padlist
1828
1829=cut
1830*/
1831
1832void
1833Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full)
1834{
9b7476d7 1835 const PADNAMELIST *pad_name;
e1ec3a88 1836 const AV *pad;
01326933 1837 PADNAME **pname;
dd2155a4 1838 SV **ppad;
dd2155a4
DM
1839 I32 ix;
1840
7918f24d
NC
1841 PERL_ARGS_ASSERT_DO_DUMP_PAD;
1842
dd2155a4
DM
1843 if (!padlist) {
1844 return;
1845 }
9b7476d7 1846 pad_name = PadlistNAMES(padlist);
86d2498c 1847 pad = PadlistARRAY(padlist)[1];
9b7476d7 1848 pname = PadnamelistARRAY(pad_name);
dd2155a4
DM
1849 ppad = AvARRAY(pad);
1850 Perl_dump_indent(aTHX_ level, file,
1851 "PADNAME = 0x%"UVxf"(0x%"UVxf") PAD = 0x%"UVxf"(0x%"UVxf")\n",
1852 PTR2UV(pad_name), PTR2UV(pname), PTR2UV(pad), PTR2UV(ppad)
1853 );
1854
9b7476d7 1855 for (ix = 1; ix <= PadnamelistMAX(pad_name); ix++) {
01326933 1856 const PADNAME *namesv = pname[ix];
325e1816 1857 if (namesv && !PadnameLEN(namesv)) {
a0714e2c 1858 namesv = NULL;
dd2155a4
DM
1859 }
1860 if (namesv) {
01326933 1861 if (PadnameOUTER(namesv))
ee6cee0c 1862 Perl_dump_indent(aTHX_ level+1, file,
c0fd1b42 1863 "%2d. 0x%"UVxf"<%lu> FAKE \"%s\" flags=0x%lx index=%lu\n",
ee6cee0c
DM
1864 (int) ix,
1865 PTR2UV(ppad[ix]),
1866 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
01326933 1867 PadnamePV(namesv),
809abb02
NC
1868 (unsigned long)PARENT_FAKELEX_FLAGS(namesv),
1869 (unsigned long)PARENT_PAD_INDEX(namesv)
b5c19bd7 1870
ee6cee0c
DM
1871 );
1872 else
1873 Perl_dump_indent(aTHX_ level+1, file,
809abb02 1874 "%2d. 0x%"UVxf"<%lu> (%lu,%lu) \"%s\"\n",
ee6cee0c
DM
1875 (int) ix,
1876 PTR2UV(ppad[ix]),
1877 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
809abb02
NC
1878 (unsigned long)COP_SEQ_RANGE_LOW(namesv),
1879 (unsigned long)COP_SEQ_RANGE_HIGH(namesv),
01326933 1880 PadnamePV(namesv)
ee6cee0c 1881 );
dd2155a4
DM
1882 }
1883 else if (full) {
1884 Perl_dump_indent(aTHX_ level+1, file,
1885 "%2d. 0x%"UVxf"<%lu>\n",
1886 (int) ix,
1887 PTR2UV(ppad[ix]),
1888 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0)
1889 );
1890 }
1891 }
1892}
1893
cc76b5cc 1894#ifdef DEBUGGING
dd2155a4
DM
1895
1896/*
cc76b5cc 1897=for apidoc m|void|cv_dump|CV *cv|const char *title
dd2155a4
DM
1898
1899dump the contents of a CV
1900
1901=cut
1902*/
1903
dd2155a4 1904STATIC void
e1ec3a88 1905S_cv_dump(pTHX_ const CV *cv, const char *title)
dd2155a4 1906{
53c1dcc0 1907 const CV * const outside = CvOUTSIDE(cv);
b70d5558 1908 PADLIST* const padlist = CvPADLIST(cv);
dd2155a4 1909
7918f24d
NC
1910 PERL_ARGS_ASSERT_CV_DUMP;
1911
dd2155a4
DM
1912 PerlIO_printf(Perl_debug_log,
1913 " %s: CV=0x%"UVxf" (%s), OUTSIDE=0x%"UVxf" (%s)\n",
1914 title,
1915 PTR2UV(cv),
1916 (CvANON(cv) ? "ANON"
71f882da 1917 : (SvTYPE(cv) == SVt_PVFM) ? "FORMAT"
dd2155a4
DM
1918 : (cv == PL_main_cv) ? "MAIN"
1919 : CvUNIQUE(cv) ? "UNIQUE"
1920 : CvGV(cv) ? GvNAME(CvGV(cv)) : "UNDEFINED"),
1921 PTR2UV(outside),
1922 (!outside ? "null"
1923 : CvANON(outside) ? "ANON"
1924 : (outside == PL_main_cv) ? "MAIN"
1925 : CvUNIQUE(outside) ? "UNIQUE"
1926 : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
1927
1928 PerlIO_printf(Perl_debug_log,
1929 " PADLIST = 0x%"UVxf"\n", PTR2UV(padlist));
1930 do_dump_pad(1, Perl_debug_log, padlist, 1);
1931}
dd2155a4 1932
cc76b5cc 1933#endif /* DEBUGGING */
dd2155a4
DM
1934
1935/*
cc76b5cc 1936=for apidoc Am|CV *|cv_clone|CV *proto
dd2155a4 1937
cc76b5cc
Z
1938Clone a CV, making a lexical closure. I<proto> supplies the prototype
1939of the function: its code, pad structure, and other attributes.
1940The prototype is combined with a capture of outer lexicals to which the
1941code refers, which are taken from the currently-executing instance of
1942the immediately surrounding code.
dd2155a4
DM
1943
1944=cut
1945*/
1946
e10681aa
FC
1947static CV *S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside);
1948
21195f4d 1949static CV *
5fab0186 1950S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside, bool newcv)
dd2155a4 1951{
dd2155a4 1952 I32 ix;
b70d5558 1953 PADLIST* const protopadlist = CvPADLIST(proto);
9b7476d7 1954 PADNAMELIST *const protopad_name = PadlistNAMES(protopadlist);
86d2498c 1955 const PAD *const protopad = PadlistARRAY(protopadlist)[1];
39899bf0 1956 PADNAME** const pname = PadnamelistARRAY(protopad_name);
53c1dcc0 1957 SV** const ppad = AvARRAY(protopad);
9b7476d7 1958 const I32 fname = PadnamelistMAX(protopad_name);
e1ec3a88 1959 const I32 fpad = AvFILLp(protopad);
b5c19bd7 1960 SV** outpad;
71f882da 1961 long depth;
e07561e6 1962 bool subclones = FALSE;
7918f24d 1963
dd2155a4
DM
1964 assert(!CvUNIQUE(proto));
1965
1b5aaca6
FC
1966 /* Anonymous subs have a weak CvOUTSIDE pointer, so its value is not
1967 * reliable. The currently-running sub is always the one we need to
1968 * close over.
8d88fe29
FC
1969 * For my subs, the currently-running sub may not be the one we want.
1970 * We have to check whether it is a clone of CvOUTSIDE.
1b5aaca6
FC
1971 * Note that in general for formats, CvOUTSIDE != find_runcv.
1972 * Since formats may be nested inside closures, CvOUTSIDE may point
71f882da 1973 * to a prototype; we instead want the cloned parent who called us.
af41786f 1974 */
71f882da 1975
e07561e6 1976 if (!outside) {
ebfebee4 1977 if (CvWEAKOUTSIDE(proto))
71f882da 1978 outside = find_runcv(NULL);
e07561e6 1979 else {
af41786f 1980 outside = CvOUTSIDE(proto);
db4cf31d
FC
1981 if ((CvCLONE(outside) && ! CvCLONED(outside))
1982 || !CvPADLIST(outside)
b4db5868 1983 || CvPADLIST(outside)->xpadl_id != protopadlist->xpadl_outid) {
db4cf31d 1984 outside = find_runcv_where(
a56015b9 1985 FIND_RUNCV_padid_eq, PTR2IV(protopadlist->xpadl_outid), NULL
70794f7b 1986 );
db4cf31d 1987 /* outside could be null */
5dff782d 1988 }
e07561e6 1989 }
5dff782d 1990 }
db4cf31d 1991 depth = outside ? CvDEPTH(outside) : 0;
71f882da
DM
1992 if (!depth)
1993 depth = 1;
b5c19bd7 1994
dd2155a4
DM
1995 ENTER;
1996 SAVESPTR(PL_compcv);
e07561e6 1997 PL_compcv = cv;
5fab0186 1998 if (newcv) SAVEFREESV(cv); /* in case of fatal warnings */
dd2155a4 1999
a0d2bbd5
FC
2000 if (CvHASEVAL(cv))
2001 CvOUTSIDE(cv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
dd2155a4 2002
cbacc9aa 2003 SAVESPTR(PL_comppad_name);
9ef8d569 2004 PL_comppad_name = protopad_name;
eacbb379 2005 CvPADLIST_set(cv, pad_new(padnew_CLONE|padnew_SAVE));
b4db5868 2006 CvPADLIST(cv)->xpadl_id = protopadlist->xpadl_id;
dd2155a4 2007
b5c19bd7 2008 av_fill(PL_comppad, fpad);
dd2155a4 2009
dd2155a4
DM
2010 PL_curpad = AvARRAY(PL_comppad);
2011
db4cf31d 2012 outpad = outside && CvPADLIST(outside)
86d2498c 2013 ? AvARRAY(PadlistARRAY(CvPADLIST(outside))[depth])
f2ead8b8 2014 : NULL;
b4db5868 2015 if (outpad) CvPADLIST(cv)->xpadl_outid = CvPADLIST(outside)->xpadl_id;
b5c19bd7 2016
dd2155a4 2017 for (ix = fpad; ix > 0; ix--) {
39899bf0 2018 PADNAME* const namesv = (ix <= fname) ? pname[ix] : NULL;
a0714e2c 2019 SV *sv = NULL;
325e1816 2020 if (namesv && PadnameLEN(namesv)) { /* lexical */
f2047bf1
FC
2021 if (PadnameIsOUR(namesv)) { /* or maybe not so lexical */
2022 NOOP;
2023 }
2024 else {
39899bf0 2025 if (PadnameOUTER(namesv)) { /* lexical from outside? */
5aec98df
FC
2026 /* formats may have an inactive, or even undefined, parent;
2027 but state vars are always available. */
f2ead8b8 2028 if (!outpad || !(sv = outpad[PARENT_PAD_INDEX(namesv)])
cae5dbbe 2029 || ( SvPADSTALE(sv) && !SvPAD_STATE(namesv)
db4cf31d 2030 && (!outside || !CvDEPTH(outside))) ) {
445f13ff 2031 S_unavailable(aTHX_ namesv);
a0714e2c 2032 sv = NULL;
71f882da 2033 }
33894c1a 2034 else
f84c484e 2035 SvREFCNT_inc_simple_void_NN(sv);
dd2155a4 2036 }
71f882da 2037 if (!sv) {
39899bf0 2038 const char sigil = PadnamePV(namesv)[0];
e1ec3a88 2039 if (sigil == '&')
e07561e6
FC
2040 /* If there are state subs, we need to clone them, too.
2041 But they may need to close over variables we have
2042 not cloned yet. So we will have to do a second
2043 pass. Furthermore, there may be state subs clos-
2044 ing over other state subs’ entries, so we have
2045 to put a stub here and then clone into it on the
2046 second pass. */
6d5c2147
FC
2047 if (SvPAD_STATE(namesv) && !CvCLONED(ppad[ix])) {
2048 assert(SvTYPE(ppad[ix]) == SVt_PVCV);
2049 subclones = 1;
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
FC
2094 if (subclones)
2095 for (ix = fpad; ix > 0; ix--) {
39899bf0
FC
2096 PADNAME * const name = (ix <= fname) ? pname[ix] : NULL;
2097 if (name && name != &PL_padname_undef && !PadnameOUTER(name)
2098 && PadnamePV(name)[0] == '&' && PadnameIsSTATE(name))
e07561e6
FC
2099 S_cv_clone(aTHX_ (CV *)ppad[ix], (CV *)PL_curpad[ix], cv);
2100 }
2101
5fab0186 2102 if (newcv) SvREFCNT_inc_simple_void_NN(cv);
e10681aa 2103 LEAVE;
21195f4d 2104
1567c65a
FC
2105 if (CvCONST(cv)) {
2106 /* Constant sub () { $x } closing over $x:
2107 * The prototype was marked as a candiate for const-ization,
2108 * so try to grab the current const value, and if successful,
2109 * turn into a const sub:
2110 */
d8d6ddf8
FC
2111 SV* const_sv;
2112 OP *o = CvSTART(cv);
1567c65a 2113 assert(newcv);
d8d6ddf8
FC
2114 for (; o; o = o->op_next)
2115 if (o->op_type == OP_PADSV)
2116 break;
2117 ASSUME(o->op_type == OP_PADSV);
2118 const_sv = PAD_BASE_SV(CvPADLIST(cv), o->op_targ);
2119 /* the candidate should have 1 ref from this pad and 1 ref
2120 * from the parent */
2121 if (const_sv && SvREFCNT(const_sv) == 2) {
1567c65a 2122 const bool was_method = cBOOL(CvMETHOD(cv));
04472a84 2123 bool copied = FALSE;
d8d6ddf8
FC
2124 if (outside) {
2125 PADNAME * const pn =
2126 PadlistNAMESARRAY(CvPADLIST(outside))
2127 [PARENT_PAD_INDEX(PadlistNAMESARRAY(
2128 CvPADLIST(cv))[o->op_targ])];
2129 assert(PadnameOUTER(PadlistNAMESARRAY(CvPADLIST(cv))
2130 [o->op_targ]));
2131 if (PadnameLVALUE(pn)) {
2132 /* We have a lexical that is potentially modifiable
2133 elsewhere, so making a constant will break clo-
2134 sure behaviour. If this is a ‘simple lexical
2135 op tree’, i.e., sub(){$x}, emit a deprecation
2136 warning, but continue to exhibit the old behav-
2137 iour of making it a constant based on the ref-
2138 count of the candidate variable.
2139
2140 A simple lexical op tree looks like this:
2141
2142 leavesub
2143 lineseq
2144 nextstate
2145 padsv
2146 */
e6dae479 2147 if (OpSIBLING(
d8d6ddf8
FC
2148 cUNOPx(cUNOPx(CvROOT(cv))->op_first)->op_first
2149 ) == o
e6dae479 2150 && !OpSIBLING(o))
04472a84 2151 {
d8d6ddf8
FC
2152 Perl_ck_warner_d(aTHX_
2153 packWARN(WARN_DEPRECATED),
2154 "Constants from lexical "
2155 "variables potentially "
2156 "modified elsewhere are "
2157 "deprecated");
04472a84
FC
2158 /* We *copy* the lexical variable, and donate the
2159 copy to newCONSTSUB. Yes, this is ugly, and
2160 should be killed. We need to do this for the
2161 time being, however, because turning on SvPADTMP
2162 on a lexical will have observable effects
2163 elsewhere. */
2164 const_sv = newSVsv(const_sv);
2165 copied = TRUE;
2166 }
d8d6ddf8
FC
2167 else
2168 goto constoff;
2169 }
2170 }
04472a84
FC
2171 if (!copied)
2172 SvREFCNT_inc_simple_void_NN(const_sv);
2173 /* If the lexical is not used elsewhere, it is safe to turn on
2174 SvPADTMP, since it is only when it is used in lvalue con-
2175 text that the difference is observable. */
6dfba0aa 2176 SvREADONLY_on(const_sv);
d8d6ddf8 2177 SvPADTMP_on(const_sv);
1567c65a 2178 SvREFCNT_dec_NN(cv);
1567c65a
FC
2179 cv = newCONSTSUB(CvSTASH(proto), NULL, const_sv);
2180 if (was_method)
2181 CvMETHOD_on(cv);
2182 }
2183 else {
d8d6ddf8 2184 constoff:
1567c65a
FC
2185 CvCONST_off(cv);
2186 }
2187 }
2188
21195f4d 2189 return cv;
e10681aa
FC
2190}
2191
2192static CV *
2193S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside)
2194{
20b7effb 2195#ifdef USE_ITHREADS
c04ef36e 2196 dVAR;
20b7effb 2197#endif
5fab0186 2198 const bool newcv = !cv;
c04ef36e 2199
e10681aa
FC
2200 assert(!CvUNIQUE(proto));
2201
2202 if (!cv) cv = MUTABLE_CV(newSV_type(SvTYPE(proto)));
2203 CvFLAGS(cv) = CvFLAGS(proto) & ~(CVf_CLONE|CVf_WEAKOUTSIDE|CVf_CVGV_RC
2204 |CVf_SLABBED);
2205 CvCLONED_on(cv);
2206
2207 CvFILE(cv) = CvDYNFILE(proto) ? savepv(CvFILE(proto))
2208 : CvFILE(proto);
2209 if (CvNAMED(proto))
2e800d79 2210 CvNAME_HEK_set(cv, share_hek_hek(CvNAME_HEK(proto)));
e10681aa
FC
2211 else CvGV_set(cv,CvGV(proto));
2212 CvSTASH_set(cv, CvSTASH(proto));
2213 OP_REFCNT_LOCK;
2214 CvROOT(cv) = OpREFCNT_inc(CvROOT(proto));
2215 OP_REFCNT_UNLOCK;
2216 CvSTART(cv) = CvSTART(proto);
2217 CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(proto);
2218
fdf416b6 2219 if (SvPOK(proto)) {
e10681aa 2220 sv_setpvn(MUTABLE_SV(cv), SvPVX_const(proto), SvCUR(proto));
fdf416b6
BF
2221 if (SvUTF8(proto))
2222 SvUTF8_on(MUTABLE_SV(cv));
2223 }
e10681aa
FC
2224 if (SvMAGIC(proto))
2225 mg_copy((SV *)proto, (SV *)cv, 0, 0);
2226
21195f4d
FC
2227 if (CvPADLIST(proto))
2228 cv = S_cv_clone_pad(aTHX_ proto, cv, outside, newcv);
e10681aa 2229
dd2155a4
DM
2230 DEBUG_Xv(
2231 PerlIO_printf(Perl_debug_log, "\nPad CV clone\n");
e10681aa 2232 if (CvOUTSIDE(cv)) cv_dump(CvOUTSIDE(cv), "Outside");
dd2155a4
DM
2233 cv_dump(proto, "Proto");
2234 cv_dump(cv, "To");
2235 );
2236
dd2155a4
DM
2237 return cv;
2238}
2239
e07561e6
FC
2240CV *
2241Perl_cv_clone(pTHX_ CV *proto)
2242{
2243 PERL_ARGS_ASSERT_CV_CLONE;
2244
fead5351 2245 if (!CvPADLIST(proto)) Perl_croak(aTHX_ "panic: no pad in cv_clone");
e07561e6
FC
2246 return S_cv_clone(aTHX_ proto, NULL, NULL);
2247}
2248
6d5c2147
FC
2249/* Called only by pp_clonecv */
2250CV *
2251Perl_cv_clone_into(pTHX_ CV *proto, CV *target)
2252{
2253 PERL_ARGS_ASSERT_CV_CLONE_INTO;
2254 cv_undef(target);
2255 return S_cv_clone(aTHX_ proto, target, NULL);
2256}
2257
fb094047
FC
2258/*
2259=for apidoc cv_name
2260
2261Returns an SV containing the name of the CV, mainly for use in error
2262reporting. The CV may actually be a GV instead, in which case the returned
7a275a2e
FC
2263SV holds the GV's name. Anything other than a GV or CV is treated as a
2264string already holding the sub name, but this could change in the future.
fb094047
FC
2265
2266An SV may be passed as a second argument. If so, the name will be assigned
2267to it and it will be returned. Otherwise the returned SV will be a new
2268mortal.
2269
ecf05a58
FC
2270If the I<flags> include CV_NAME_NOTQUAL, then the package name will not be
2271included. If the first argument is neither a CV nor a GV, this flag is
2272ignored (subject to change).
2273
fb094047
FC
2274=cut
2275*/
2276
c5569a55 2277SV *
ecf05a58 2278Perl_cv_name(pTHX_ CV *cv, SV *sv, U32 flags)
c5569a55
FC
2279{
2280 PERL_ARGS_ASSERT_CV_NAME;
2281 if (!isGV_with_GP(cv) && SvTYPE(cv) != SVt_PVCV) {
2282 if (sv) sv_setsv(sv,(SV *)cv);
2283 return sv ? (sv) : (SV *)cv;
2284 }
2285 {
f3fb6cf3 2286 SV * const retsv = sv ? (sv) : sv_newmortal();
c5569a55
FC
2287 if (SvTYPE(cv) == SVt_PVCV) {
2288 if (CvNAMED(cv)) {
ecf05a58
FC
2289 if (CvLEXICAL(cv) || flags & CV_NAME_NOTQUAL)
2290 sv_sethek(retsv, CvNAME_HEK(cv));
c5569a55
FC
2291 else {
2292 sv_sethek(retsv, HvNAME_HEK(CvSTASH(cv)));
2293 sv_catpvs(retsv, "::");
f34d8cdd 2294 sv_cathek(retsv, CvNAME_HEK(cv));
c5569a55
FC
2295 }
2296 }
ecf05a58 2297 else if (CvLEXICAL(cv) || flags & CV_NAME_NOTQUAL)
c5569a55
FC
2298 sv_sethek(retsv, GvNAME_HEK(GvEGV(CvGV(cv))));
2299 else gv_efullname3(retsv, CvGV(cv), NULL);
2300 }
ecf05a58 2301 else if (flags & CV_NAME_NOTQUAL) sv_sethek(retsv, GvNAME_HEK(cv));
c5569a55
FC
2302 else gv_efullname3(retsv,(GV *)cv,NULL);
2303 return retsv;
2304 }
2305}
2306
dd2155a4 2307/*
cc76b5cc 2308=for apidoc m|void|pad_fixup_inner_anons|PADLIST *padlist|CV *old_cv|CV *new_cv
dd2155a4
DM
2309
2310For any anon CVs in the pad, change CvOUTSIDE of that CV from
72d33970 2311old_cv to new_cv if necessary. Needed when a newly-compiled CV has to be
7dafbf52 2312moved to a pre-existing CV struct.
dd2155a4
DM
2313
2314=cut
2315*/
2316
2317void
2318Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv)
2319{
2320 I32 ix;
9b7476d7 2321 PADNAMELIST * const comppad_name = PadlistNAMES(padlist);
86d2498c 2322 AV * const comppad = PadlistARRAY(padlist)[1];
0f94cb1f 2323 PADNAME ** const namepad = PadnamelistARRAY(comppad_name);
53c1dcc0 2324 SV ** const curpad = AvARRAY(comppad);
7918f24d
NC
2325
2326 PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS;
294a48e9
AL
2327 PERL_UNUSED_ARG(old_cv);
2328
9b7476d7 2329 for (ix = PadnamelistMAX(comppad_name); ix > 0; ix--) {
0f94cb1f
FC
2330 const PADNAME * const name = namepad[ix];
2331 if (name && name != &PL_padname_undef && !PadnameIsSTATE(name)
2332 && *PadnamePV(name) == '&')
dd2155a4 2333 {
e09ac076 2334 if (SvTYPE(curpad[ix]) == SVt_PVCV) {
0f94cb1f
FC
2335 /* XXX 0afba48f added code here to check for a proto CV
2336 attached to the pad entry by magic. But shortly there-
2337 after 81df9f6f95 moved the magic to the pad name. The
2338 code here was never updated, so it wasn’t doing anything
2339 and got deleted when PADNAME became a distinct type. Is
2340 there any bug as a result? */
2341 CV * const innercv = MUTABLE_CV(curpad[ix]);
0afba48f 2342 if (CvOUTSIDE(innercv) == old_cv) {
1f122f9b
FC
2343 if (!CvWEAKOUTSIDE(innercv)) {
2344 SvREFCNT_dec(old_cv);
2345 SvREFCNT_inc_simple_void_NN(new_cv);
2346 }
0afba48f
FC
2347 CvOUTSIDE(innercv) = new_cv;
2348 }
e09ac076
FC
2349 }
2350 else { /* format reference */
2351 SV * const rv = curpad[ix];
2352 CV *innercv;
2353 if (!SvOK(rv)) continue;
2354 assert(SvROK(rv));
2355 assert(SvWEAKREF(rv));
2356 innercv = (CV *)SvRV(rv);
2357 assert(!CvWEAKOUTSIDE(innercv));
2358 SvREFCNT_dec(CvOUTSIDE(innercv));
2359 CvOUTSIDE(innercv) = (CV *)SvREFCNT_inc_simple_NN(new_cv);
2360 }
dd2155a4
DM
2361 }
2362 }
2363}
2364
2365/*
cc76b5cc 2366=for apidoc m|void|pad_push|PADLIST *padlist|int depth
dd2155a4
DM
2367
2368Push a new pad frame onto the padlist, unless there's already a pad at
26019298
AL
2369this depth, in which case don't bother creating a new one. Then give
2370the new pad an @_ in slot zero.
dd2155a4
DM
2371
2372=cut
2373*/
2374
2375void
26019298 2376Perl_pad_push(pTHX_ PADLIST *padlist, int depth)
dd2155a4 2377{
7918f24d
NC
2378 PERL_ARGS_ASSERT_PAD_PUSH;
2379
86d2498c
FC
2380 if (depth > PadlistMAX(padlist) || !PadlistARRAY(padlist)[depth]) {
2381 PAD** const svp = PadlistARRAY(padlist);
44f8325f
AL
2382 AV* const newpad = newAV();
2383 SV** const oldpad = AvARRAY(svp[depth-1]);
502c6561 2384 I32 ix = AvFILLp((const AV *)svp[1]);
9b7476d7 2385 const I32 names_fill = PadnamelistMAX((PADNAMELIST *)svp[0]);
a2ddd1d1 2386 PADNAME ** const names = PadnamelistARRAY((PADNAMELIST *)svp[0]);
26019298
AL
2387 AV *av;
2388
dd2155a4 2389 for ( ;ix > 0; ix--) {
325e1816 2390 if (names_fill >= ix && PadnameLEN(names[ix])) {
a2ddd1d1
FC
2391 const char sigil = PadnamePV(names[ix])[0];
2392 if (PadnameOUTER(names[ix])
2393 || PadnameIsSTATE(names[ix])
fda94784
RGS
2394 || sigil == '&')
2395 {
dd2155a4
DM
2396 /* outer lexical or anon code */
2397 av_store(newpad, ix, SvREFCNT_inc(oldpad[ix]));
2398 }
2399 else { /* our own lexical */
26019298
AL
2400 SV *sv;
2401 if (sigil == '@')
ad64d0ec 2402 sv = MUTABLE_SV(newAV());
26019298 2403 else if (sigil == '%')
ad64d0ec 2404 sv = MUTABLE_SV(newHV());
dd2155a4 2405 else
561b68a9 2406 sv = newSV(0);
26019298 2407 av_store(newpad, ix, sv);
dd2155a4
DM
2408 }
2409 }
778f1807 2410 else if (PadnamePV(names[ix])) {
f84c484e 2411 av_store(newpad, ix, SvREFCNT_inc_NN(oldpad[ix]));
dd2155a4
DM
2412 }
2413 else {
2414 /* save temporaries on recursion? */
561b68a9 2415 SV * const sv = newSV(0);
26019298 2416 av_store(newpad, ix, sv);
dd2155a4
DM
2417 SvPADTMP_on(sv);
2418 }
2419 }
26019298 2420 av = newAV();
ad64d0ec 2421 av_store(newpad, 0, MUTABLE_SV(av));
11ca45c0 2422 AvREIFY_only(av);
26019298 2423
7261499d 2424 padlist_store(padlist, depth, newpad);
dd2155a4
DM
2425 }
2426}
b21dc031 2427
d5b1589c
NC
2428#if defined(USE_ITHREADS)
2429
2430# define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
2431
cc76b5cc 2432/*
b70d5558 2433=for apidoc padlist_dup
cc76b5cc
Z
2434
2435Duplicates a pad.
2436
2437=cut
2438*/
2439
b70d5558
FC
2440PADLIST *
2441Perl_padlist_dup(pTHX_ PADLIST *srcpad, CLONE_PARAMS *param)
d5b1589c 2442{
7261499d
FC
2443 PADLIST *dstpad;
2444 bool cloneall;
2445 PADOFFSET max;
2446
d5b1589c
NC
2447 PERL_ARGS_ASSERT_PADLIST_DUP;
2448
71c165d4 2449 cloneall = cBOOL(param->flags & CLONEf_COPY_STACKS);
86d2498c 2450 assert (SvREFCNT(PadlistARRAY(srcpad)[1]) == 1);
7261499d 2451
86d2498c 2452 max = cloneall ? PadlistMAX(srcpad) : 1;
7261499d
FC
2453
2454 Newx(dstpad, 1, PADLIST);
2455 ptr_table_store(PL_ptr_table, srcpad, dstpad);
86d2498c
FC
2456 PadlistMAX(dstpad) = max;
2457 Newx(PadlistARRAY(dstpad), max + 1, PAD *);
7261499d 2458
9b7476d7
FC
2459 PadlistARRAY(dstpad)[0] = (PAD *)
2460 padnamelist_dup(PadlistNAMES(srcpad), param);
2461 PadnamelistREFCNT(PadlistNAMES(dstpad))++;
7261499d
FC
2462 if (cloneall) {
2463 PADOFFSET depth;
9b7476d7 2464 for (depth = 1; depth <= max; ++depth)
86d2498c
FC
2465 PadlistARRAY(dstpad)[depth] =
2466 av_dup_inc(PadlistARRAY(srcpad)[depth], param);
6de654a5
NC
2467 } else {
2468 /* CvDEPTH() on our subroutine will be set to 0, so there's no need
2469 to build anything other than the first level of pads. */
86d2498c 2470 I32 ix = AvFILLp(PadlistARRAY(srcpad)[1]);
6de654a5 2471 AV *pad1;
9b7476d7 2472 const I32 names_fill = PadnamelistMAX(PadlistNAMES(srcpad));
86d2498c 2473 const PAD *const srcpad1 = PadlistARRAY(srcpad)[1];
6de654a5 2474 SV **oldpad = AvARRAY(srcpad1);
3e020df5 2475 PADNAME ** const names = PadnamelistARRAY(PadlistNAMES(dstpad));
6de654a5
NC
2476 SV **pad1a;
2477 AV *args;
6de654a5 2478
6de654a5
NC
2479 pad1 = newAV();
2480
2481 av_extend(pad1, ix);
86d2498c 2482 PadlistARRAY(dstpad)[1] = pad1;
6de654a5 2483 pad1a = AvARRAY(pad1);
6de654a5
NC
2484
2485 if (ix > -1) {
2486 AvFILLp(pad1) = ix;
2487
2488 for ( ;ix > 0; ix--) {
05d04d9c
NC
2489 if (!oldpad[ix]) {
2490 pad1a[ix] = NULL;
ce0d59fd
FC
2491 } else if (names_fill >= ix && names[ix] &&
2492 PadnameLEN(names[ix])) {
3e020df5
FC
2493 const char sigil = PadnamePV(names[ix])[0];
2494 if (PadnameOUTER(names[ix])
2495 || PadnameIsSTATE(names[ix])
05d04d9c
NC
2496 || sigil == '&')
2497 {
2498 /* outer lexical or anon code */
2499 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2500 }
2501 else { /* our own lexical */
adf8f095
NC
2502 if(SvPADSTALE(oldpad[ix]) && SvREFCNT(oldpad[ix]) > 1) {
2503 /* This is a work around for how the current
2504 implementation of ?{ } blocks in regexps
2505 interacts with lexicals. */
05d04d9c
NC
2506 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2507 } else {
2508 SV *sv;
2509
2510 if (sigil == '@')
2511 sv = MUTABLE_SV(newAV());
2512 else if (sigil == '%')
2513 sv = MUTABLE_SV(newHV());
2514 else
2515 sv = newSV(0);
2516 pad1a[ix] = sv;
05d04d9c
NC
2517 }
2518 }
2519 }
92154801 2520 else if (( names_fill >= ix && names[ix]
ce0d59fd 2521 && PadnamePV(names[ix]) )) {
05d04d9c
NC
2522 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2523 }
2524 else {
2525 /* save temporaries on recursion? */
2526 SV * const sv = newSV(0);
2527 pad1a[ix] = sv;
2528
2529 /* SvREFCNT(oldpad[ix]) != 1 for some code in threads.xs
2530 FIXTHAT before merging this branch.
2531 (And I know how to) */
145bf8ee 2532 if (SvPADTMP(oldpad[ix]))
05d04d9c
NC
2533 SvPADTMP_on(sv);
2534 }
6de654a5
NC
2535 }
2536
2537 if (oldpad[0]) {
2538 args = newAV(); /* Will be @_ */
2539 AvREIFY_only(args);
2540 pad1a[0] = (SV *)args;
2541 }
2542 }
2543 }
d5b1589c
NC
2544
2545 return dstpad;
2546}
2547
cc76b5cc 2548#endif /* USE_ITHREADS */
d5b1589c 2549
7261499d 2550PAD **
5aaab254 2551Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val)
7261499d 2552{
7261499d 2553 PAD **ary;
86d2498c 2554 SSize_t const oldmax = PadlistMAX(padlist);
7261499d
FC
2555
2556 PERL_ARGS_ASSERT_PADLIST_STORE;
2557
2558 assert(key >= 0);
2559
86d2498c
FC
2560 if (key > PadlistMAX(padlist)) {
2561 av_extend_guts(NULL,key,&PadlistMAX(padlist),
2562 (SV ***)&PadlistARRAY(padlist),
2563 (SV ***)&PadlistARRAY(padlist));
2564 Zero(PadlistARRAY(padlist)+oldmax+1, PadlistMAX(padlist)-oldmax,
7261499d
FC
2565 PAD *);
2566 }
86d2498c 2567 ary = PadlistARRAY(padlist);
7261499d
FC
2568 SvREFCNT_dec(ary[key]);
2569 ary[key] = val;
2570 return &ary[key];
2571}
2572
66610fdd 2573/*
9b7476d7
FC
2574=for apidoc newPADNAMELIST
2575
2576Creates a new pad name list. C<max> is the highest index for which space
2577is allocated.
2578
2579=cut
2580*/
2581
2582PADNAMELIST *
2583Perl_newPADNAMELIST(pTHX_ size_t max)
2584{
2585 PADNAMELIST *pnl;
2586 Newx(pnl, 1, PADNAMELIST);
2587 Newxz(PadnamelistARRAY(pnl), max+1, PADNAME *);
2588 PadnamelistMAX(pnl) = -1;
2589 PadnamelistREFCNT(pnl) = 1;
2590 PadnamelistMAXNAMED(pnl) = 0;
2591 pnl->xpadnl_max = max;
2592 return pnl;
2593}
2594
2595/*
2596=for apidoc padnamelist_store
2597
2598Stores the pad name (which may be null) at the given index, freeing any
2599existing pad name in that slot.
2600
2601=cut
2602*/
2603
2604PADNAME **
2605Perl_padnamelist_store(pTHX_ PADNAMELIST *pnl, SSize_t key, PADNAME *val)
2606{
2607 PADNAME **ary;
2608
2609 PERL_ARGS_ASSERT_PADNAMELIST_STORE;
2610
2611 assert(key >= 0);
2612
2613 if (key > pnl->xpadnl_max)
2614 av_extend_guts(NULL,key,&pnl->xpadnl_max,
2615 (SV ***)&PadnamelistARRAY(pnl),
2616 (SV ***)&PadnamelistARRAY(pnl));
2617 if (PadnamelistMAX(pnl) < key) {
2618 Zero(PadnamelistARRAY(pnl)+PadnamelistMAX(pnl)+1,
2619 key-PadnamelistMAX(pnl), PADNAME *);
2620 PadnamelistMAX(pnl) = key;
2621 }
2622 ary = PadnamelistARRAY(pnl);
0f94cb1f
FC
2623 if (ary[key])
2624 PadnameREFCNT_dec(ary[key]);
9b7476d7
FC
2625 ary[key] = val;
2626 return &ary[key];
2627}
2628
2629/*
2630=for apidoc padnamelist_fetch
2631
2632Fetches the pad name from the given index.
2633
2634=cut
2635*/
2636
2637PADNAME *
2638Perl_padnamelist_fetch(pTHX_ PADNAMELIST *pnl, SSize_t key)
2639{
2640 PERL_ARGS_ASSERT_PADNAMELIST_FETCH;
2641 ASSUME(key >= 0);
2642
2643 return key > PadnamelistMAX(pnl) ? NULL : PadnamelistARRAY(pnl)[key];
2644}
2645
2646void
2647Perl_padnamelist_free(pTHX_ PADNAMELIST *pnl)
2648{
2649 PERL_ARGS_ASSERT_PADNAMELIST_FREE;
2650 if (!--PadnamelistREFCNT(pnl)) {
2651 while(PadnamelistMAX(pnl) >= 0)
0f94cb1f
FC
2652 {
2653 PADNAME * const pn =
2654 PadnamelistARRAY(pnl)[PadnamelistMAX(pnl)--];
2655 if (pn)
2656 PadnameREFCNT_dec(pn);
2657 }
9b7476d7
FC
2658 Safefree(PadnamelistARRAY(pnl));
2659 Safefree(pnl);
2660 }
2661}
2662
2663#if defined(USE_ITHREADS)
2664
2665/*
2666=for apidoc padnamelist_dup
2667
2668Duplicates a pad name list.
2669
2670=cut
2671*/
2672
2673PADNAMELIST *
2674Perl_padnamelist_dup(pTHX_ PADNAMELIST *srcpad, CLONE_PARAMS *param)
2675{
2676 PADNAMELIST *dstpad;
2677 SSize_t max = PadnamelistMAX(srcpad);
2678
2679 PERL_ARGS_ASSERT_PADNAMELIST_DUP;
2680
2681 /* look for it in the table first */
2682 dstpad = (PADNAMELIST *)ptr_table_fetch(PL_ptr_table, srcpad);
2683 if (dstpad)
2684 return dstpad;
2685
2686 dstpad = newPADNAMELIST(max);
2687 PadnamelistREFCNT(dstpad) = 0; /* The caller will increment it. */
2688 PadnamelistMAXNAMED(dstpad) = PadnamelistMAXNAMED(srcpad);
2689 PadnamelistMAX(dstpad) = max;
2690
2691 ptr_table_store(PL_ptr_table, srcpad, dstpad);
2692 for (; max >= 0; max--)
0f94cb1f 2693 if (PadnamelistARRAY(srcpad)[max]) {
9b7476d7 2694 PadnamelistARRAY(dstpad)[max] =
0f94cb1f
FC
2695 padname_dup(PadnamelistARRAY(srcpad)[max], param);
2696 PadnameREFCNT(PadnamelistARRAY(dstpad)[max])++;
2697 }
9b7476d7
FC
2698
2699 return dstpad;
2700}
2701
2702#endif /* USE_ITHREADS */
2703
0f94cb1f
FC
2704/*
2705=for apidoc newPADNAMEpvn
2706
2707Constructs and returns a new pad name. I<s> must be a UTF8 string. Do not
2708use this for pad names that point to outer lexicals. See
2709L</newPADNAMEouter>.
2710
2711=cut
2712*/
2713
2714PADNAME *
2715Perl_newPADNAMEpvn(pTHX_ const char *s, STRLEN len)
2716{
2717 struct padname_with_str *alloc;
2718 char *alloc2; /* for Newxz */
2719 PADNAME *pn;
2720 PERL_ARGS_ASSERT_NEWPADNAMEPVN;
2721 Newxz(alloc2,
2722 STRUCT_OFFSET(struct padname_with_str, xpadn_str[0]) + len + 1,
2723 char);
2724 alloc = (struct padname_with_str *)alloc2;
2725 pn = (PADNAME *)alloc;
2726 PadnameREFCNT(pn) = 1;
2727 PadnamePV(pn) = alloc->xpadn_str;
2728 Copy(s, PadnamePV(pn), len, char);
2729 *(PadnamePV(pn) + len) = '\0';
2730 PadnameLEN(pn) = len;
2731 return pn;
2732}
2733
2734/*
2735=for apidoc newPADNAMEouter
2736
2737Constructs and returns a new pad name. Only use this function for names
2738that refer to outer lexicals. (See also L</newPADNAMEpvn>.) I<outer> is
2739the outer pad name that this one mirrors. The returned pad name has the
2740PADNAMEt_OUTER flag already set.
2741
2742=cut
2743*/
2744
2745PADNAME *
2746Perl_newPADNAMEouter(pTHX_ PADNAME *outer)
2747{
2748 PADNAME *pn;
2749 PERL_ARGS_ASSERT_NEWPADNAMEOUTER;
2750 Newxz(pn, 1, PADNAME);
2751 PadnameREFCNT(pn) = 1;
2752 PadnamePV(pn) = PadnamePV(outer);
2753 /* Not PadnameREFCNT(outer), because ‘outer’ may itself close over
2754 another entry. The original pad name owns the buffer. */
2755 PadnameREFCNT(PADNAME_FROM_PV(PadnamePV(outer)))++;
2756 PadnameFLAGS(pn) = PADNAMEt_OUTER;
2757 PadnameLEN(pn) = PadnameLEN(outer);
2758 return pn;
2759}
2760
2761void
2762Perl_padname_free(pTHX_ PADNAME *pn)
2763{
2764 PERL_ARGS_ASSERT_PADNAME_FREE;
2765 if (!--PadnameREFCNT(pn)) {
2766 if (UNLIKELY(pn == &PL_padname_undef || pn == &PL_padname_const)) {
2767 PadnameREFCNT(pn) = SvREFCNT_IMMORTAL;
2768 return;
2769 }
2770 SvREFCNT_dec(PadnameTYPE(pn)); /* Takes care of protocv, too. */
2771 SvREFCNT_dec(PadnameOURSTASH(pn));
2772 if (PadnameOUTER(pn))
2773 PadnameREFCNT_dec(PADNAME_FROM_PV(PadnamePV(pn)));
2774 Safefree(pn);
2775 }
2776}
2777
2778#if defined(USE_ITHREADS)
2779
2780/*
2781=for apidoc padname_dup
2782
2783Duplicates a pad name.
2784
2785=cut
2786*/
2787
2788PADNAME *
2789Perl_padname_dup(pTHX_ PADNAME *src, CLONE_PARAMS *param)
2790{
2791 PADNAME *dst;
2792
2793 PERL_ARGS_ASSERT_PADNAME_DUP;
2794
2795 /* look for it in the table first */
2796 dst = (PADNAME *)ptr_table_fetch(PL_ptr_table, src);
2797 if (dst)
2798 return dst;
2799
2800 if (!PadnamePV(src)) {
2801 dst = &PL_padname_undef;
2802 ptr_table_store(PL_ptr_table, src, dst);
2803 return dst;
2804 }
2805
2806 dst = PadnameOUTER(src)
2807 ? newPADNAMEouter(padname_dup(PADNAME_FROM_PV(PadnamePV(src)), param))
2808 : newPADNAMEpvn(PadnamePV(src), PadnameLEN(src));
2809 ptr_table_store(PL_ptr_table, src, dst);
2810 PadnameLEN(dst) = PadnameLEN(src);
2811 PadnameFLAGS(dst) = PadnameFLAGS(src);
2812 PadnameREFCNT(dst) = 0; /* The caller will increment it. */
2813 PadnameTYPE (dst) = (HV *)sv_dup_inc((SV *)PadnameTYPE(src), param);
2814 PadnameOURSTASH(dst) = (HV *)sv_dup_inc((SV *)PadnameOURSTASH(src),
2815 param);
2816 dst->xpadn_low = src->xpadn_low;
2817 dst->xpadn_high = src->xpadn_high;
2818 dst->xpadn_gen = src->xpadn_gen;
2819 return dst;
2820}
2821
2822#endif /* USE_ITHREADS */
9b7476d7
FC
2823
2824/*
66610fdd
RGS
2825 * Local variables:
2826 * c-indentation-style: bsd
2827 * c-basic-offset: 4
14d04a33 2828 * indent-tabs-mode: nil
66610fdd
RGS
2829 * End:
2830 *
14d04a33 2831 * ex: set ts=8 sts=4 sw=4 et:
37442d52 2832 */