This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Increase $English::VERSION to 1.06
[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
DM
40
41XSUBs don't have CvPADLIST set - dXSTARG fetches values from PL_curpad,
42but that is really the callers pad (a slot of which is allocated by
43every entersub).
44
58a9b2fe 45The PADLIST has a C array where pads are stored.
dd2155a4 46
58a9b2fe
FC
47The 0th entry of the PADLIST is a PADNAMELIST (which is actually just an
48AV, but that may change) which represents the "names" or rather
49the "static type information" for lexicals. The individual elements of a
7a5eb04d
FC
50PADNAMELIST are PADNAMEs (just SVs; but, again, that may change). Future
51refactorings might stop the PADNAMELIST from being stored in the PADLIST's
86d2498c 52array, so don't rely on it. See L</PadlistNAMES>.
dd2155a4 53
58a9b2fe
FC
54The CvDEPTH'th entry of a PADLIST is a PAD (an AV) which is the stack frame
55at that depth of recursion into the CV. The 0th slot of a frame AV is an
56AV which is @_. Other entries are storage for variables and op targets.
dd2155a4 57
58a9b2fe
FC
58Iterating over the PADNAMELIST iterates over all possible pad
59items. Pad slots that are SVs_PADTMP (targets/GVs/constants) end up having
dd2155a4
DM
60&PL_sv_undef "names" (see pad_alloc()).
61
58a9b2fe 62Only my/our variable (SvPADMY/PADNAME_isOUR) slots get valid names.
dd2155a4
DM
63The rest are op targets/GVs/constants which are statically allocated
64or resolved at compile time. These don't have names by which they
58a9b2fe 65can be looked up from Perl code at run time through eval"" the way
dd2155a4
DM
66my/our variables can be. Since they can't be looked up by "name"
67but only by their index allocated at compile time (which is usually
68in PL_op->op_targ), wasting a name SV for them doesn't make sense.
69
70The SVs in the names AV have their PV being the name of the variable.
3441fb63 71xlow+1..xhigh inclusive in the NV union is a range of cop_seq numbers for
61f4bfbf
DM
72which the name is valid (accessed through the macros COP_SEQ_RANGE_LOW and
73_HIGH). During compilation, these fields may hold the special value
74PERL_PADSEQ_INTRO to indicate various stages:
0d311cdb
DM
75
76 COP_SEQ_RANGE_LOW _HIGH
77 ----------------- -----
78 PERL_PADSEQ_INTRO 0 variable not yet introduced: { my ($x
79 valid-seq# PERL_PADSEQ_INTRO variable in scope: { my ($x)
80 valid-seq# valid-seq# compilation of scope complete: { my ($x) }
81
82For typed lexicals name SV is SVt_PVMG and SvSTASH
3441fb63 83points at the type. For C<our> lexicals, the type is also SVt_PVMG, with the
73d95100 84SvOURSTASH slot pointing at the stash of the associated global (so that
931b58fb 85duplicate C<our> declarations in the same package can be detected). SvUVX is
3441fb63 86sometimes hijacked to store the generation number during compilation.
dd2155a4 87
c44737a2
FC
88If PADNAME_OUTER (SvFAKE) is set on the
89name SV, then that slot in the frame AV is
b5c19bd7 90a REFCNT'ed reference to a lexical from "outside". In this case,
3441fb63
NC
91the name SV does not use xlow and xhigh to store a cop_seq range, since it is
92in scope throughout. Instead xhigh stores some flags containing info about
b5c19bd7 93the real lexical (is it declared in an anon, and is it capable of being
3441fb63 94instantiated multiple times?), and for fake ANONs, xlow contains the index
b5c19bd7
DM
95within the parent's pad where the lexical's value is stored, to make
96cloning quicker.
dd2155a4 97
58a9b2fe 98If the 'name' is '&' the corresponding entry in the PAD
dd2155a4 99is a CV representing a possible closure.
c44737a2
FC
100(PADNAME_OUTER and name of '&' is not a
101meaningful combination currently but could
dd2155a4
DM
102become so if C<my sub foo {}> is implemented.)
103
71f882da
DM
104Note that formats are treated as anon subs, and are cloned each time
105write is called (if necessary).
106
ab8e66c1 107The flag SVs_PADSTALE is cleared on lexicals each time the my() is executed,
58a9b2fe
FC
108and set on scope exit. This allows the
109'Variable $x is not available' warning
e6e7068b
DM
110to be generated in evals, such as
111
112 { my $x = 1; sub f { eval '$x'} } f();
113
58a9b2fe 114For state vars, SVs_PADSTALE is overloaded to mean 'not yet initialised'.
d1186544 115
36c300bb 116=for apidoc AmxU|PADNAMELIST *|PL_comppad_name
cc76b5cc
Z
117
118During compilation, this points to the array containing the names part
119of the pad for the currently-compiling code.
120
36c300bb 121=for apidoc AmxU|PAD *|PL_comppad
cc76b5cc
Z
122
123During compilation, this points to the array containing the values
124part of the pad for the currently-compiling code. (At runtime a CV may
125have many such value arrays; at compile time just one is constructed.)
126At runtime, this points to the array containing the currently-relevant
127values for the pad for the currently-executing code.
128
129=for apidoc AmxU|SV **|PL_curpad
130
131Points directly to the body of the L</PL_comppad> array.
c14a2249 132(I.e., this is C<PAD_ARRAY(PL_comppad)>.)
cc76b5cc 133
dd2155a4
DM
134=cut
135*/
136
137
138#include "EXTERN.h"
139#define PERL_IN_PAD_C
140#include "perl.h"
952306ac 141#include "keywords.h"
dd2155a4 142
3441fb63
NC
143#define COP_SEQ_RANGE_LOW_set(sv,val) \
144 STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xlow = (val); } STMT_END
145#define COP_SEQ_RANGE_HIGH_set(sv,val) \
146 STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xhigh = (val); } STMT_END
809abb02 147
3441fb63
NC
148#define PARENT_PAD_INDEX_set(sv,val) \
149 STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xlow = (val); } STMT_END
150#define PARENT_FAKELEX_FLAGS_set(sv,val) \
151 STMT_START { ((XPVNV*)SvANY(sv))->xnv_u.xpad_cop_seq.xhigh = (val); } STMT_END
dd2155a4 152
cc76b5cc
Z
153/*
154=for apidoc mx|void|pad_peg|const char *s
155
156When PERL_MAD is enabled, this is a small no-op function that gets called
157at the start of each pad-related function. It can be breakpointed to
158track all pad operations. The parameter is a string indicating the type
159of pad operation being performed.
160
161=cut
162*/
163
1dba731d
NC
164#ifdef PERL_MAD
165void pad_peg(const char* s) {
790427a5
DM
166 static int pegcnt; /* XXX not threadsafe */
167 PERL_UNUSED_ARG(s);
7918f24d
NC
168
169 PERL_ARGS_ASSERT_PAD_PEG;
170
1dba731d
NC
171 pegcnt++;
172}
173#endif
dd2155a4
DM
174
175/*
5b16296c
BF
176This is basically sv_eq_flags() in sv.c, but we avoid the magic
177and bytes checking.
178*/
179
76d60a53
NC
180static bool
181sv_eq_pvn_flags(pTHX_ const SV *sv, const char* pv, const STRLEN pvlen, const U32 flags) {
5b16296c
BF
182 if ( (SvUTF8(sv) & SVf_UTF8 ) != (flags & SVf_UTF8) ) {
183 const char *pv1 = SvPVX_const(sv);
184 STRLEN cur1 = SvCUR(sv);
185 const char *pv2 = pv;
186 STRLEN cur2 = pvlen;
187 if (PL_encoding) {
188 SV* svrecode = NULL;
189 if (SvUTF8(sv)) {
190 svrecode = newSVpvn(pv2, cur2);
191 sv_recode_to_utf8(svrecode, PL_encoding);
192 pv2 = SvPV_const(svrecode, cur2);
193 }
194 else {
195 svrecode = newSVpvn(pv1, cur1);
196 sv_recode_to_utf8(svrecode, PL_encoding);
197 pv1 = SvPV_const(svrecode, cur1);
198 }
199 SvREFCNT_dec(svrecode);
200 }
201 if (flags & SVf_UTF8)
202 return (bytes_cmp_utf8(
203 (const U8*)pv1, cur1,
204 (const U8*)pv2, cur2) == 0);
205 else
206 return (bytes_cmp_utf8(
207 (const U8*)pv2, cur2,
208 (const U8*)pv1, cur1) == 0);
209 }
210 else
211 return ((SvPVX_const(sv) == pv)
212 || memEQ(SvPVX_const(sv), pv, pvlen));
213}
214
215
216/*
cc76b5cc 217=for apidoc Am|PADLIST *|pad_new|int flags
dd2155a4 218
cc76b5cc
Z
219Create a new padlist, updating the global variables for the
220currently-compiling padlist to point to the new padlist. The following
221flags can be OR'ed together:
dd2155a4
DM
222
223 padnew_CLONE this pad is for a cloned CV
cc76b5cc 224 padnew_SAVE save old globals on the save stack
dd2155a4
DM
225 padnew_SAVESUB also save extra stuff for start of sub
226
227=cut
228*/
229
230PADLIST *
c7c737cb 231Perl_pad_new(pTHX_ int flags)
dd2155a4 232{
97aff369 233 dVAR;
7261499d
FC
234 PADLIST *padlist;
235 PAD *padname, *pad;
236 PAD **ary;
dd2155a4 237
f3548bdc
DM
238 ASSERT_CURPAD_LEGAL("pad_new");
239
dd2155a4
DM
240 /* XXX DAPM really need a new SAVEt_PAD which restores all or most
241 * vars (based on flags) rather than storing vals + addresses for
242 * each individually. Also see pad_block_start.
243 * XXX DAPM Try to see whether all these conditionals are required
244 */
245
246 /* save existing state, ... */
247
248 if (flags & padnew_SAVE) {
3979c56f 249 SAVECOMPPAD();
dd2155a4 250 if (! (flags & padnew_CLONE)) {
cbacc9aa 251 SAVESPTR(PL_comppad_name);
dd2155a4
DM
252 SAVEI32(PL_padix);
253 SAVEI32(PL_comppad_name_fill);
254 SAVEI32(PL_min_intro_pending);
255 SAVEI32(PL_max_intro_pending);
8bbe96d7 256 SAVEBOOL(PL_cv_has_eval);
dd2155a4 257 if (flags & padnew_SAVESUB) {
f0cb02e3 258 SAVEBOOL(PL_pad_reset_pending);
dd2155a4
DM
259 }
260 }
261 }
262 /* XXX DAPM interestingly, PL_comppad_name_floor never seems to be
263 * saved - check at some pt that this is okay */
264
265 /* ... create new pad ... */
266
7261499d 267 Newxz(padlist, 1, PADLIST);
dd2155a4
DM
268 pad = newAV();
269
270 if (flags & padnew_CLONE) {
271 /* XXX DAPM I dont know why cv_clone needs it
272 * doing differently yet - perhaps this separate branch can be
273 * dispensed with eventually ???
274 */
275
e1ec3a88 276 AV * const a0 = newAV(); /* will be @_ */
ad64d0ec 277 av_store(pad, 0, MUTABLE_SV(a0));
11ca45c0 278 AvREIFY_only(a0);
9ef8d569
FC
279
280 padname = (PAD *)SvREFCNT_inc_simple_NN(PL_comppad_name);
dd2155a4
DM
281 }
282 else {
a0714e2c 283 av_store(pad, 0, NULL);
9ef8d569 284 padname = newAV();
dd2155a4
DM
285 }
286
7a6072a8
NC
287 /* Most subroutines never recurse, hence only need 2 entries in the padlist
288 array - names, and depth=1. The default for av_store() is to allocate
289 0..3, and even an explicit call to av_extend() with <3 will be rounded
290 up, so we inline the allocation of the array here. */
7261499d 291 Newx(ary, 2, PAD *);
86d2498c
FC
292 PadlistMAX(padlist) = 1;
293 PadlistARRAY(padlist) = ary;
7261499d
FC
294 ary[0] = padname;
295 ary[1] = pad;
dd2155a4
DM
296
297 /* ... then update state variables */
298
403799bf
NC
299 PL_comppad = pad;
300 PL_curpad = AvARRAY(pad);
dd2155a4
DM
301
302 if (! (flags & padnew_CLONE)) {
9ef8d569 303 PL_comppad_name = padname;
dd2155a4
DM
304 PL_comppad_name_fill = 0;
305 PL_min_intro_pending = 0;
306 PL_padix = 0;
b5c19bd7 307 PL_cv_has_eval = 0;
dd2155a4
DM
308 }
309
310 DEBUG_X(PerlIO_printf(Perl_debug_log,
b5c19bd7 311 "Pad 0x%"UVxf"[0x%"UVxf"] new: compcv=0x%"UVxf
dd2155a4 312 " name=0x%"UVxf" flags=0x%"UVxf"\n",
b5c19bd7 313 PTR2UV(PL_comppad), PTR2UV(PL_curpad), PTR2UV(PL_compcv),
dd2155a4
DM
314 PTR2UV(padname), (UV)flags
315 )
316 );
317
318 return (PADLIST*)padlist;
319}
320
dd2155a4 321
c4528262
NC
322/*
323=head1 Embedding Functions
324
325=for apidoc cv_undef
326
327Clear out all the active components of a CV. This can happen either
328by an explicit C<undef &foo>, or by the reference count going to zero.
329In the former case, we keep the CvOUTSIDE pointer, so that any anonymous
330children can still follow the full lexical scope chain.
331
332=cut
333*/
334
335void
336Perl_cv_undef(pTHX_ CV *cv)
337{
338 dVAR;
c2736fce 339 const PADLIST *padlist = CvPADLIST(cv);
8be227ab 340 bool const slabbed = !!CvSLABBED(cv);
c4528262
NC
341
342 PERL_ARGS_ASSERT_CV_UNDEF;
343
344 DEBUG_X(PerlIO_printf(Perl_debug_log,
345 "CV undef: cv=0x%"UVxf" comppad=0x%"UVxf"\n",
346 PTR2UV(cv), PTR2UV(PL_comppad))
347 );
348
bad4ae38 349 if (CvFILE(cv) && CvDYNFILE(cv)) {
c4528262
NC
350 Safefree(CvFILE(cv));
351 }
352 CvFILE(cv) = NULL;
dd2155a4 353
8be227ab 354 CvSLABBED_off(cv);
c4528262
NC
355 if (!CvISXSUB(cv) && CvROOT(cv)) {
356 if (SvTYPE(cv) == SVt_PVCV && CvDEPTH(cv))
357 Perl_croak(aTHX_ "Can't undef active subroutine");
358 ENTER;
359
360 PAD_SAVE_SETNULLPAD();
361
8be227ab 362 if (slabbed) OpslabREFCNT_dec_padok(OpSLAB(CvROOT(cv)));
c4528262
NC
363 op_free(CvROOT(cv));
364 CvROOT(cv) = NULL;
365 CvSTART(cv) = NULL;
366 LEAVE;
367 }
8be227ab
FC
368 else if (slabbed && CvSTART(cv)) {
369 ENTER;
370 PAD_SAVE_SETNULLPAD();
371
372 /* discard any leaked ops */
3ac7ff8f
FC
373 if (PL_parser)
374 parser_free_nexttoke_ops(PL_parser, (OPSLAB *)CvSTART(cv));
8be227ab
FC
375 opslab_force_free((OPSLAB *)CvSTART(cv));
376 CvSTART(cv) = NULL;
377
378 LEAVE;
379 }
7aef8e5b 380#ifdef DEBUGGING
8be227ab 381 else if (slabbed) Perl_warn(aTHX_ "Slab leaked from cv %p", cv);
8be227ab 382#endif
c4528262 383 SvPOK_off(MUTABLE_SV(cv)); /* forget prototype */
2f14e398 384 sv_unmagic((SV *)cv, PERL_MAGIC_checkcall);
2e800d79 385 if (CvNAMED(cv)) CvNAME_HEK_set(cv, NULL);
b290562e 386 else CvGV_set(cv, NULL);
c4528262 387
c2736fce
NC
388 /* This statement and the subsequence if block was pad_undef(). */
389 pad_peg("pad_undef");
390
7261499d 391 if (padlist) {
c2736fce
NC
392 I32 ix;
393
394 /* Free the padlist associated with a CV.
395 If parts of it happen to be current, we null the relevant PL_*pad*
396 global vars so that we don't have any dangling references left.
397 We also repoint the CvOUTSIDE of any about-to-be-orphaned inner
398 subs to the outer of this cv. */
399
400 DEBUG_X(PerlIO_printf(Perl_debug_log,
401 "Pad undef: cv=0x%"UVxf" padlist=0x%"UVxf" comppad=0x%"UVxf"\n",
402 PTR2UV(cv), PTR2UV(padlist), PTR2UV(PL_comppad))
403 );
404
405 /* detach any '&' anon children in the pad; if afterwards they
406 * are still live, fix up their CvOUTSIDEs to point to our outside,
407 * bypassing us. */
408 /* XXX DAPM for efficiency, we should only do this if we know we have
409 * children, or integrate this loop with general cleanup */
410
411 if (PL_phase != PERL_PHASE_DESTRUCT) { /* don't bother during global destruction */
412 CV * const outercv = CvOUTSIDE(cv);
413 const U32 seq = CvOUTSIDE_SEQ(cv);
86d2498c 414 PAD * const comppad_name = PadlistARRAY(padlist)[0];
c2736fce 415 SV ** const namepad = AvARRAY(comppad_name);
86d2498c 416 PAD * const comppad = PadlistARRAY(padlist)[1];
c2736fce
NC
417 SV ** const curpad = AvARRAY(comppad);
418 for (ix = AvFILLp(comppad_name); ix > 0; ix--) {
419 SV * const namesv = namepad[ix];
420 if (namesv && namesv != &PL_sv_undef
421 && *SvPVX_const(namesv) == '&')
422 {
423 CV * const innercv = MUTABLE_CV(curpad[ix]);
424 U32 inner_rc = SvREFCNT(innercv);
425 assert(inner_rc);
e09ac076 426 assert(SvTYPE(innercv) != SVt_PVFM);
c2736fce
NC
427
428 if (SvREFCNT(comppad) < 2) { /* allow for /(?{ sub{} })/ */
429 curpad[ix] = NULL;
430 SvREFCNT_dec(innercv);
431 inner_rc--;
432 }
433
434 /* in use, not just a prototype */
435 if (inner_rc && (CvOUTSIDE(innercv) == cv)) {
436 assert(CvWEAKOUTSIDE(innercv));
437 /* don't relink to grandfather if he's being freed */
438 if (outercv && SvREFCNT(outercv)) {
439 CvWEAKOUTSIDE_off(innercv);
440 CvOUTSIDE(innercv) = outercv;
441 CvOUTSIDE_SEQ(innercv) = seq;
442 SvREFCNT_inc_simple_void_NN(outercv);
443 }
444 else {
445 CvOUTSIDE(innercv) = NULL;
446 }
447 }
448 }
449 }
450 }
451
86d2498c 452 ix = PadlistMAX(padlist);
aa2f79cf 453 while (ix > 0) {
86d2498c 454 PAD * const sv = PadlistARRAY(padlist)[ix--];
c2736fce 455 if (sv) {
7261499d 456 if (sv == PL_comppad) {
c2736fce
NC
457 PL_comppad = NULL;
458 PL_curpad = NULL;
459 }
aa2f79cf 460 SvREFCNT_dec(sv);
c2736fce 461 }
aa2f79cf
NC
462 }
463 {
86d2498c 464 PAD * const sv = PadlistARRAY(padlist)[0];
9ef8d569 465 if (sv == PL_comppad_name && SvREFCNT(sv) == 1)
aa2f79cf 466 PL_comppad_name = NULL;
c2736fce
NC
467 SvREFCNT_dec(sv);
468 }
86d2498c 469 if (PadlistARRAY(padlist)) Safefree(PadlistARRAY(padlist));
7261499d 470 Safefree(padlist);
c2736fce
NC
471 CvPADLIST(cv) = NULL;
472 }
473
c4528262
NC
474
475 /* remove CvOUTSIDE unless this is an undef rather than a free */
476 if (!SvREFCNT(cv) && CvOUTSIDE(cv)) {
477 if (!CvWEAKOUTSIDE(cv))
478 SvREFCNT_dec(CvOUTSIDE(cv));
479 CvOUTSIDE(cv) = NULL;
480 }
481 if (CvCONST(cv)) {
482 SvREFCNT_dec(MUTABLE_SV(CvXSUBANY(cv).any_ptr));
483 CvCONST_off(cv);
484 }
485 if (CvISXSUB(cv) && CvXSUB(cv)) {
486 CvXSUB(cv) = NULL;
487 }
488 /* delete all flags except WEAKOUTSIDE and CVGV_RC, which indicate the
2c374370
FC
489 * ref status of CvOUTSIDE and CvGV, and ANON, which pp_entersub uses
490 * to choose an error message */
491 CvFLAGS(cv) &= (CVf_WEAKOUTSIDE|CVf_CVGV_RC|CVf_ANON);
c4528262 492}
dd2155a4 493
50dc2bd3
FC
494/*
495=for apidoc cv_forget_slab
496
497When a CV has a reference count on its slab (CvSLABBED), it is responsible
498for making sure it is freed. (Hence, no two CVs should ever have a
499reference count on the same slab.) The CV only needs to reference the slab
500during compilation. Once it is compiled and CvROOT attached, it has
501finished its job, so it can forget the slab.
502
503=cut
504*/
505
8be227ab
FC
506void
507Perl_cv_forget_slab(pTHX_ CV *cv)
508{
509 const bool slabbed = !!CvSLABBED(cv);
3107b51f 510 OPSLAB *slab = NULL;
8be227ab
FC
511
512 PERL_ARGS_ASSERT_CV_FORGET_SLAB;
513
514 if (!slabbed) return;
515
516 CvSLABBED_off(cv);
517
3107b51f
FC
518 if (CvROOT(cv)) slab = OpSLAB(CvROOT(cv));
519 else if (CvSTART(cv)) slab = (OPSLAB *)CvSTART(cv);
7aef8e5b 520#ifdef DEBUGGING
8be227ab 521 else if (slabbed) Perl_warn(aTHX_ "Slab leaked from cv %p", cv);
7aef8e5b 522#endif
3107b51f 523
3107b51f 524 if (slab) {
f3e29105
NC
525#ifdef PERL_DEBUG_READONLY_OPS
526 const size_t refcnt = slab->opslab_refcnt;
527#endif
3107b51f 528 OpslabREFCNT_dec(slab);
f3e29105 529#ifdef PERL_DEBUG_READONLY_OPS
3107b51f 530 if (refcnt > 1) Slab_to_ro(slab);
8be227ab 531#endif
f3e29105 532 }
7aef8e5b 533}
8be227ab 534
cc76b5cc
Z
535/*
536=for apidoc m|PADOFFSET|pad_alloc_name|SV *namesv|U32 flags|HV *typestash|HV *ourstash
537
1a115e49
FC
538Allocates a place in the currently-compiling
539pad (via L<perlapi/pad_alloc>) and
cc76b5cc
Z
540then stores a name for that entry. I<namesv> is adopted and becomes the
541name entry; it must already contain the name string and be sufficiently
542upgraded. I<typestash> and I<ourstash> and the C<padadd_STATE> flag get
1a115e49
FC
543added to I<namesv>. None of the other
544processing of L<perlapi/pad_add_name_pvn>
cc76b5cc
Z
545is done. Returns the offset of the allocated pad slot.
546
547=cut
548*/
549
3291825f 550static PADOFFSET
cc76b5cc 551S_pad_alloc_name(pTHX_ SV *namesv, U32 flags, HV *typestash, HV *ourstash)
3291825f
NC
552{
553 dVAR;
554 const PADOFFSET offset = pad_alloc(OP_PADSV, SVs_PADMY);
555
cc76b5cc 556 PERL_ARGS_ASSERT_PAD_ALLOC_NAME;
3291825f 557
cc76b5cc 558 ASSERT_CURPAD_ACTIVE("pad_alloc_name");
3291825f
NC
559
560 if (typestash) {
561 assert(SvTYPE(namesv) == SVt_PVMG);
562 SvPAD_TYPED_on(namesv);
563 SvSTASH_set(namesv, MUTABLE_HV(SvREFCNT_inc_simple_NN(MUTABLE_SV(typestash))));
564 }
565 if (ourstash) {
566 SvPAD_OUR_on(namesv);
567 SvOURSTASH_set(namesv, ourstash);
568 SvREFCNT_inc_simple_void_NN(ourstash);
569 }
59cfed7d 570 else if (flags & padadd_STATE) {
3291825f
NC
571 SvPAD_STATE_on(namesv);
572 }
573
574 av_store(PL_comppad_name, offset, namesv);
575 return offset;
576}
577
dd2155a4 578/*
cc76b5cc 579=for apidoc Am|PADOFFSET|pad_add_name_pvn|const char *namepv|STRLEN namelen|U32 flags|HV *typestash|HV *ourstash
dd2155a4 580
cc76b5cc
Z
581Allocates a place in the currently-compiling pad for a named lexical
582variable. Stores the name and other metadata in the name part of the
583pad, and makes preparations to manage the variable's lexical scoping.
584Returns the offset of the allocated pad slot.
dd2155a4 585
cc76b5cc
Z
586I<namepv>/I<namelen> specify the variable's name, including leading sigil.
587If I<typestash> is non-null, the name is for a typed lexical, and this
588identifies the type. If I<ourstash> is non-null, it's a lexical reference
589to a package variable, and this identifies the package. The following
590flags can be OR'ed together:
591
592 padadd_OUR redundantly specifies if it's a package var
593 padadd_STATE variable will retain value persistently
594 padadd_NO_DUP_CHECK skip check for lexical shadowing
dd2155a4
DM
595
596=cut
597*/
598
dd2155a4 599PADOFFSET
cc76b5cc
Z
600Perl_pad_add_name_pvn(pTHX_ const char *namepv, STRLEN namelen,
601 U32 flags, HV *typestash, HV *ourstash)
dd2155a4 602{
97aff369 603 dVAR;
3291825f 604 PADOFFSET offset;
cca43f78 605 SV *namesv;
e8b34487 606 bool is_utf8;
dd2155a4 607
cc76b5cc 608 PERL_ARGS_ASSERT_PAD_ADD_NAME_PVN;
7918f24d 609
2435e5d3 610 if (flags & ~(padadd_OUR|padadd_STATE|padadd_NO_DUP_CHECK|padadd_UTF8_NAME))
cc76b5cc 611 Perl_croak(aTHX_ "panic: pad_add_name_pvn illegal flag bits 0x%" UVxf,
cca43f78
NC
612 (UV)flags);
613
614 namesv = newSV_type((ourstash || typestash) ? SVt_PVMG : SVt_PVNV);
e8b34487
BF
615
616 if ((is_utf8 = ((flags & padadd_UTF8_NAME) != 0))) {
617 namepv = (const char*)bytes_from_utf8((U8*)namepv, &namelen, &is_utf8);
618 }
619
0727928e
BF
620 sv_setpvn(namesv, namepv, namelen);
621
e8b34487
BF
622 if (is_utf8) {
623 flags |= padadd_UTF8_NAME;
624 SvUTF8_on(namesv);
625 }
626 else
627 flags &= ~padadd_UTF8_NAME;
dd2155a4 628
59cfed7d 629 if ((flags & padadd_NO_DUP_CHECK) == 0) {
2d12d04f 630 /* check for duplicate declaration */
59cfed7d 631 pad_check_dup(namesv, flags & padadd_OUR, ourstash);
2d12d04f
NC
632 }
633
2435e5d3 634 offset = pad_alloc_name(namesv, flags & ~padadd_UTF8_NAME, typestash, ourstash);
3291825f
NC
635
636 /* not yet introduced */
2df5bdd7
DM
637 COP_SEQ_RANGE_LOW_set(namesv, PERL_PADSEQ_INTRO);
638 COP_SEQ_RANGE_HIGH_set(namesv, 0);
3291825f
NC
639
640 if (!PL_min_intro_pending)
641 PL_min_intro_pending = offset;
642 PL_max_intro_pending = offset;
643 /* if it's not a simple scalar, replace with an AV or HV */
c1bf42f3
NC
644 assert(SvTYPE(PL_curpad[offset]) == SVt_NULL);
645 assert(SvREFCNT(PL_curpad[offset]) == 1);
cc76b5cc 646 if (namelen != 0 && *namepv == '@')
c1bf42f3 647 sv_upgrade(PL_curpad[offset], SVt_PVAV);
cc76b5cc 648 else if (namelen != 0 && *namepv == '%')
c1bf42f3 649 sv_upgrade(PL_curpad[offset], SVt_PVHV);
6d5c2147
FC
650 else if (namelen != 0 && *namepv == '&')
651 sv_upgrade(PL_curpad[offset], SVt_PVCV);
c1bf42f3 652 assert(SvPADMY(PL_curpad[offset]));
3291825f
NC
653 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
654 "Pad addname: %ld \"%s\" new lex=0x%"UVxf"\n",
cc76b5cc
Z
655 (long)offset, SvPVX(namesv),
656 PTR2UV(PL_curpad[offset])));
dd2155a4
DM
657
658 return offset;
659}
660
cc76b5cc
Z
661/*
662=for apidoc Am|PADOFFSET|pad_add_name_pv|const char *name|U32 flags|HV *typestash|HV *ourstash
dd2155a4 663
cc76b5cc
Z
664Exactly like L</pad_add_name_pvn>, but takes a nul-terminated string
665instead of a string/length pair.
dd2155a4 666
cc76b5cc
Z
667=cut
668*/
669
670PADOFFSET
671Perl_pad_add_name_pv(pTHX_ const char *name,
0e1b3a4b 672 const U32 flags, HV *typestash, HV *ourstash)
cc76b5cc
Z
673{
674 PERL_ARGS_ASSERT_PAD_ADD_NAME_PV;
675 return pad_add_name_pvn(name, strlen(name), flags, typestash, ourstash);
676}
dd2155a4
DM
677
678/*
cc76b5cc 679=for apidoc Am|PADOFFSET|pad_add_name_sv|SV *name|U32 flags|HV *typestash|HV *ourstash
dd2155a4 680
cc76b5cc
Z
681Exactly like L</pad_add_name_pvn>, but takes the name string in the form
682of an SV instead of a string/length pair.
683
684=cut
685*/
686
687PADOFFSET
688Perl_pad_add_name_sv(pTHX_ SV *name, U32 flags, HV *typestash, HV *ourstash)
689{
690 char *namepv;
691 STRLEN namelen;
692 PERL_ARGS_ASSERT_PAD_ADD_NAME_SV;
693 namepv = SvPV(name, namelen);
e8b34487
BF
694 if (SvUTF8(name))
695 flags |= padadd_UTF8_NAME;
cc76b5cc
Z
696 return pad_add_name_pvn(namepv, namelen, flags, typestash, ourstash);
697}
698
699/*
700=for apidoc Amx|PADOFFSET|pad_alloc|I32 optype|U32 tmptype
701
702Allocates a place in the currently-compiling pad,
703returning the offset of the allocated pad slot.
704No name is initially attached to the pad slot.
705I<tmptype> is a set of flags indicating the kind of pad entry required,
706which will be set in the value SV for the allocated pad entry:
707
708 SVs_PADMY named lexical variable ("my", "our", "state")
709 SVs_PADTMP unnamed temporary store
710
711I<optype> should be an opcode indicating the type of operation that the
712pad entry is to support. This doesn't affect operational semantics,
713but is used for debugging.
dd2155a4
DM
714
715=cut
716*/
717
718/* XXX DAPM integrate alloc(), add_name() and add_anon(),
719 * or at least rationalise ??? */
dd2155a4
DM
720
721PADOFFSET
722Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype)
723{
97aff369 724 dVAR;
dd2155a4
DM
725 SV *sv;
726 I32 retval;
727
6136c704 728 PERL_UNUSED_ARG(optype);
f3548bdc
DM
729 ASSERT_CURPAD_ACTIVE("pad_alloc");
730
dd2155a4 731 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
732 Perl_croak(aTHX_ "panic: pad_alloc, %p!=%p",
733 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
734 if (PL_pad_reset_pending)
735 pad_reset();
736 if (tmptype & SVs_PADMY) {
cc76b5cc 737 /* For a my, simply push a null SV onto the end of PL_comppad. */
235cc2e3 738 sv = *av_fetch(PL_comppad, AvFILLp(PL_comppad) + 1, TRUE);
dd2155a4
DM
739 retval = AvFILLp(PL_comppad);
740 }
741 else {
cc76b5cc
Z
742 /* For a tmp, scan the pad from PL_padix upwards
743 * for a slot which has no name and no active value.
744 */
551405c4 745 SV * const * const names = AvARRAY(PL_comppad_name);
e1ec3a88 746 const SSize_t names_fill = AvFILLp(PL_comppad_name);
dd2155a4
DM
747 for (;;) {
748 /*
749 * "foreach" index vars temporarily become aliases to non-"my"
750 * values. Thus we must skip, not just pad values that are
751 * marked as current pad values, but also those with names.
752 */
753 /* HVDS why copy to sv here? we don't seem to use it */
754 if (++PL_padix <= names_fill &&
755 (sv = names[PL_padix]) && sv != &PL_sv_undef)
756 continue;
757 sv = *av_fetch(PL_comppad, PL_padix, TRUE);
758 if (!(SvFLAGS(sv) & (SVs_PADTMP | SVs_PADMY)) &&
759 !IS_PADGV(sv) && !IS_PADCONST(sv))
760 break;
761 }
762 retval = PL_padix;
763 }
764 SvFLAGS(sv) |= tmptype;
765 PL_curpad = AvARRAY(PL_comppad);
766
767 DEBUG_X(PerlIO_printf(Perl_debug_log,
768 "Pad 0x%"UVxf"[0x%"UVxf"] alloc: %ld for %s\n",
769 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long) retval,
770 PL_op_name[optype]));
fd0854ff
DM
771#ifdef DEBUG_LEAKING_SCALARS
772 sv->sv_debug_optype = optype;
773 sv->sv_debug_inpad = 1;
fd0854ff 774#endif
a212c8b5 775 return (PADOFFSET)retval;
dd2155a4
DM
776}
777
778/*
cc76b5cc 779=for apidoc Am|PADOFFSET|pad_add_anon|CV *func|I32 optype
dd2155a4 780
cc76b5cc
Z
781Allocates a place in the currently-compiling pad (via L</pad_alloc>)
782for an anonymous function that is lexically scoped inside the
783currently-compiling function.
784The function I<func> is linked into the pad, and its C<CvOUTSIDE> link
785to the outer scope is weakened to avoid a reference loop.
786
84eea980
FC
787One reference count is stolen, so you may need to do C<SvREFCNT_inc(func)>.
788
cc76b5cc
Z
789I<optype> should be an opcode indicating the type of operation that the
790pad entry is to support. This doesn't affect operational semantics,
791but is used for debugging.
dd2155a4
DM
792
793=cut
794*/
795
796PADOFFSET
cc76b5cc 797Perl_pad_add_anon(pTHX_ CV* func, I32 optype)
dd2155a4 798{
97aff369 799 dVAR;
dd2155a4 800 PADOFFSET ix;
b9f83d2f 801 SV* const name = newSV_type(SVt_PVNV);
7918f24d
NC
802
803 PERL_ARGS_ASSERT_PAD_ADD_ANON;
804
1dba731d 805 pad_peg("add_anon");
76f68e9b 806 sv_setpvs(name, "&");
0d311cdb
DM
807 /* These two aren't used; just make sure they're not equal to
808 * PERL_PADSEQ_INTRO */
809 COP_SEQ_RANGE_LOW_set(name, 0);
810 COP_SEQ_RANGE_HIGH_set(name, 0);
cc76b5cc 811 ix = pad_alloc(optype, SVs_PADMY);
dd2155a4 812 av_store(PL_comppad_name, ix, name);
f3548bdc 813 /* XXX DAPM use PL_curpad[] ? */
e09ac076
FC
814 if (SvTYPE(func) == SVt_PVCV || !CvOUTSIDE(func))
815 av_store(PL_comppad, ix, (SV*)func);
816 else {
7c93c29b 817 SV *rv = newRV_noinc((SV *)func);
e09ac076
FC
818 sv_rvweaken(rv);
819 assert (SvTYPE(func) == SVt_PVFM);
820 av_store(PL_comppad, ix, rv);
821 }
cc76b5cc 822 SvPADMY_on((SV*)func);
7dafbf52
DM
823
824 /* to avoid ref loops, we never have parent + child referencing each
825 * other simultaneously */
e09ac076 826 if (CvOUTSIDE(func) && SvTYPE(func) == SVt_PVCV) {
cc76b5cc
Z
827 assert(!CvWEAKOUTSIDE(func));
828 CvWEAKOUTSIDE_on(func);
829 SvREFCNT_dec(CvOUTSIDE(func));
7dafbf52 830 }
dd2155a4
DM
831 return ix;
832}
833
dd2155a4 834/*
13087dd8 835=for apidoc pad_check_dup
dd2155a4
DM
836
837Check for duplicate declarations: report any of:
13087dd8 838
dd2155a4 839 * a my in the current scope with the same name;
13087dd8
FC
840 * an our (anywhere in the pad) with the same name and the
841 same stash as C<ourstash>
842
843C<is_our> indicates that the name to check is an 'our' declaration.
dd2155a4
DM
844
845=cut
846*/
847
20381b50 848STATIC void
cc76b5cc 849S_pad_check_dup(pTHX_ SV *name, U32 flags, const HV *ourstash)
dd2155a4 850{
97aff369 851 dVAR;
53c1dcc0 852 SV **svp;
dd2155a4 853 PADOFFSET top, off;
59cfed7d 854 const U32 is_our = flags & padadd_OUR;
dd2155a4 855
7918f24d
NC
856 PERL_ARGS_ASSERT_PAD_CHECK_DUP;
857
f3548bdc 858 ASSERT_CURPAD_ACTIVE("pad_check_dup");
35f82371 859
59cfed7d 860 assert((flags & ~padadd_OUR) == 0);
35f82371 861
041457d9 862 if (AvFILLp(PL_comppad_name) < 0 || !ckWARN(WARN_MISC))
dd2155a4
DM
863 return; /* nothing to check */
864
865 svp = AvARRAY(PL_comppad_name);
866 top = AvFILLp(PL_comppad_name);
867 /* check the current scope */
868 /* XXX DAPM - why the (I32) cast - shouldn't we ensure they're the same
869 * type ? */
870 for (off = top; (I32)off > PL_comppad_name_floor; off--) {
53c1dcc0
AL
871 SV * const sv = svp[off];
872 if (sv
dd2155a4 873 && sv != &PL_sv_undef
ee6cee0c 874 && !SvFAKE(sv)
0d311cdb
DM
875 && ( COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO
876 || COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
2d12d04f 877 && sv_eq(name, sv))
dd2155a4 878 {
00b1698f 879 if (is_our && (SvPAD_OUR(sv)))
7f73a9f1 880 break; /* "our" masking "our" */
4eb94d7c 881 /* diag_listed_as: "%s" variable %s masks earlier declaration in same %s */
dd2155a4 882 Perl_warner(aTHX_ packWARN(WARN_MISC),
4eb94d7c 883 "\"%s\" %s %"SVf" masks earlier declaration in same %s",
12bd6ede 884 (is_our ? "our" : PL_parser->in_my == KEY_my ? "my" : "state"),
4eb94d7c 885 *SvPVX(sv) == '&' ? "subroutine" : "variable",
c541b9b4 886 sv,
2df5bdd7
DM
887 (COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO
888 ? "scope" : "statement"));
dd2155a4
DM
889 --off;
890 break;
891 }
892 }
893 /* check the rest of the pad */
894 if (is_our) {
61c5492a 895 while (off > 0) {
53c1dcc0
AL
896 SV * const sv = svp[off];
897 if (sv
dd2155a4 898 && sv != &PL_sv_undef
ee6cee0c 899 && !SvFAKE(sv)
0d311cdb
DM
900 && ( COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO
901 || COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
73d95100 902 && SvOURSTASH(sv) == ourstash
2d12d04f 903 && sv_eq(name, sv))
dd2155a4
DM
904 {
905 Perl_warner(aTHX_ packWARN(WARN_MISC),
c541b9b4 906 "\"our\" variable %"SVf" redeclared", sv);
624f69f5 907 if ((I32)off <= PL_comppad_name_floor)
7f73a9f1
RGS
908 Perl_warner(aTHX_ packWARN(WARN_MISC),
909 "\t(Did you mean \"local\" instead of \"our\"?)\n");
dd2155a4
DM
910 break;
911 }
61c5492a
NC
912 --off;
913 }
dd2155a4
DM
914 }
915}
916
917
dd2155a4 918/*
cc76b5cc 919=for apidoc Am|PADOFFSET|pad_findmy_pvn|const char *namepv|STRLEN namelen|U32 flags
dd2155a4 920
cc76b5cc
Z
921Given the name of a lexical variable, find its position in the
922currently-compiling pad.
923I<namepv>/I<namelen> specify the variable's name, including leading sigil.
924I<flags> is reserved and must be zero.
925If it is not in the current pad but appears in the pad of any lexically
926enclosing scope, then a pseudo-entry for it is added in the current pad.
927Returns the offset in the current pad,
928or C<NOT_IN_PAD> if no such lexical is in scope.
dd2155a4
DM
929
930=cut
931*/
932
933PADOFFSET
cc76b5cc 934Perl_pad_findmy_pvn(pTHX_ const char *namepv, STRLEN namelen, U32 flags)
dd2155a4 935{
97aff369 936 dVAR;
b5c19bd7
DM
937 SV *out_sv;
938 int out_flags;
929a0744 939 I32 offset;
e1ec3a88 940 const AV *nameav;
929a0744 941 SV **name_svp;
dd2155a4 942
cc76b5cc 943 PERL_ARGS_ASSERT_PAD_FINDMY_PVN;
7918f24d 944
cc76b5cc 945 pad_peg("pad_findmy_pvn");
f8f98e0a 946
2435e5d3 947 if (flags & ~padadd_UTF8_NAME)
cc76b5cc 948 Perl_croak(aTHX_ "panic: pad_findmy_pvn illegal flag bits 0x%" UVxf,
f8f98e0a
NC
949 (UV)flags);
950
e8b34487
BF
951 if (flags & padadd_UTF8_NAME) {
952 bool is_utf8 = TRUE;
953 namepv = (const char*)bytes_from_utf8((U8*)namepv, &namelen, &is_utf8);
954
955 if (is_utf8)
956 flags |= padadd_UTF8_NAME;
957 else
958 flags &= ~padadd_UTF8_NAME;
959 }
960
fbb889c8
BF
961 offset = pad_findlex(namepv, namelen, flags,
962 PL_compcv, PL_cop_seqmax, 1, NULL, &out_sv, &out_flags);
9f7d9405 963 if ((PADOFFSET)offset != NOT_IN_PAD)
929a0744
DM
964 return offset;
965
966 /* look for an our that's being introduced; this allows
967 * our $foo = 0 unless defined $foo;
968 * to not give a warning. (Yes, this is a hack) */
969
86d2498c 970 nameav = PadlistARRAY(CvPADLIST(PL_compcv))[0];
929a0744
DM
971 name_svp = AvARRAY(nameav);
972 for (offset = AvFILLp(nameav); offset > 0; offset--) {
551405c4 973 const SV * const namesv = name_svp[offset];
929a0744
DM
974 if (namesv && namesv != &PL_sv_undef
975 && !SvFAKE(namesv)
00b1698f 976 && (SvPAD_OUR(namesv))
cc76b5cc 977 && SvCUR(namesv) == namelen
e8b34487
BF
978 && sv_eq_pvn_flags(aTHX_ namesv, namepv, namelen,
979 flags & padadd_UTF8_NAME ? SVf_UTF8 : 0 )
2df5bdd7 980 && COP_SEQ_RANGE_LOW(namesv) == PERL_PADSEQ_INTRO
929a0744
DM
981 )
982 return offset;
983 }
984 return NOT_IN_PAD;
dd2155a4
DM
985}
986
e1f795dc 987/*
cc76b5cc
Z
988=for apidoc Am|PADOFFSET|pad_findmy_pv|const char *name|U32 flags
989
990Exactly like L</pad_findmy_pvn>, but takes a nul-terminated string
991instead of a string/length pair.
992
993=cut
994*/
995
996PADOFFSET
997Perl_pad_findmy_pv(pTHX_ const char *name, U32 flags)
998{
999 PERL_ARGS_ASSERT_PAD_FINDMY_PV;
1000 return pad_findmy_pvn(name, strlen(name), flags);
1001}
1002
1003/*
1004=for apidoc Am|PADOFFSET|pad_findmy_sv|SV *name|U32 flags
1005
1006Exactly like L</pad_findmy_pvn>, but takes the name string in the form
1007of an SV instead of a string/length pair.
1008
1009=cut
1010*/
1011
1012PADOFFSET
1013Perl_pad_findmy_sv(pTHX_ SV *name, U32 flags)
1014{
1015 char *namepv;
1016 STRLEN namelen;
1017 PERL_ARGS_ASSERT_PAD_FINDMY_SV;
1018 namepv = SvPV(name, namelen);
2435e5d3
BF
1019 if (SvUTF8(name))
1020 flags |= padadd_UTF8_NAME;
cc76b5cc
Z
1021 return pad_findmy_pvn(namepv, namelen, flags);
1022}
1023
1024/*
1025=for apidoc Amp|PADOFFSET|find_rundefsvoffset
1026
1027Find the position of the lexical C<$_> in the pad of the
1028currently-executing function. Returns the offset in the current pad,
1029or C<NOT_IN_PAD> if there is no lexical C<$_> in scope (in which case
1030the global one should be used instead).
1031L</find_rundefsv> is likely to be more convenient.
1032
1033=cut
1034*/
e1f795dc
RGS
1035
1036PADOFFSET
29289021 1037Perl_find_rundefsvoffset(pTHX)
e1f795dc 1038{
97aff369 1039 dVAR;
e1f795dc
RGS
1040 SV *out_sv;
1041 int out_flags;
fbb889c8 1042 return pad_findlex("$_", 2, 0, find_runcv(NULL), PL_curcop->cop_seq, 1,
4608196e 1043 NULL, &out_sv, &out_flags);
e1f795dc 1044}
dd2155a4 1045
dd2155a4 1046/*
cc76b5cc
Z
1047=for apidoc Am|SV *|find_rundefsv
1048
1049Find and return the variable that is named C<$_> in the lexical scope
1050of the currently-executing function. This may be a lexical C<$_>,
1051or will otherwise be the global one.
1052
1053=cut
1054*/
789bd863
VP
1055
1056SV *
1057Perl_find_rundefsv(pTHX)
1058{
1059 SV *namesv;
1060 int flags;
1061 PADOFFSET po;
1062
fbb889c8 1063 po = pad_findlex("$_", 2, 0, find_runcv(NULL), PL_curcop->cop_seq, 1,
789bd863
VP
1064 NULL, &namesv, &flags);
1065
1979170b 1066 if (po == NOT_IN_PAD || SvPAD_OUR(namesv))
789bd863
VP
1067 return DEFSV;
1068
1069 return PAD_SVl(po);
1070}
1071
c086f97a
FC
1072SV *
1073Perl_find_rundefsv2(pTHX_ CV *cv, U32 seq)
1074{
1075 SV *namesv;
1076 int flags;
1077 PADOFFSET po;
1078
1079 PERL_ARGS_ASSERT_FIND_RUNDEFSV2;
1080
1081 po = pad_findlex("$_", 2, 0, cv, seq, 1,
1082 NULL, &namesv, &flags);
1083
1084 if (po == NOT_IN_PAD || SvPAD_OUR(namesv))
1085 return DEFSV;
1086
86d2498c 1087 return AvARRAY(PadlistARRAY(CvPADLIST(cv))[CvDEPTH(cv)])[po];
c086f97a
FC
1088}
1089
789bd863 1090/*
fbb889c8 1091=for apidoc m|PADOFFSET|pad_findlex|const char *namepv|STRLEN namelen|U32 flags|const CV* cv|U32 seq|int warn|SV** out_capture|SV** out_name_sv|int *out_flags
dd2155a4
DM
1092
1093Find a named lexical anywhere in a chain of nested pads. Add fake entries
b5c19bd7
DM
1094in the inner pads if it's found in an outer one.
1095
1096Returns the offset in the bottom pad of the lex or the fake lex.
1097cv is the CV in which to start the search, and seq is the current cop_seq
1098to match against. If warn is true, print appropriate warnings. The out_*
1099vars return values, and so are pointers to where the returned values
1100should be stored. out_capture, if non-null, requests that the innermost
1101instance of the lexical is captured; out_name_sv is set to the innermost
1102matched namesv or fake namesv; out_flags returns the flags normally
1103associated with the IVX field of a fake namesv.
1104
1105Note that pad_findlex() is recursive; it recurses up the chain of CVs,
1106then comes back down, adding fake entries as it goes. It has to be this way
3441fb63 1107because fake namesvs in anon protoypes have to store in xlow the index into
b5c19bd7 1108the parent pad.
dd2155a4
DM
1109
1110=cut
1111*/
1112
b5c19bd7
DM
1113/* the CV has finished being compiled. This is not a sufficient test for
1114 * all CVs (eg XSUBs), but suffices for the CVs found in a lexical chain */
1115#define CvCOMPILED(cv) CvROOT(cv)
1116
71f882da 1117/* the CV does late binding of its lexicals */
e07561e6 1118#define CvLATE(cv) (CvANON(cv) || CvCLONE(cv) || SvTYPE(cv) == SVt_PVFM)
71f882da 1119
445f13ff
FC
1120static void
1121S_unavailable(pTHX_ SV *namesv)
1122{
1123 /* diag_listed_as: Variable "%s" is not available */
1124 Perl_ck_warner(aTHX_ packWARN(WARN_CLOSURE),
1125 "%se \"%"SVf"\" is not available",
1126 *SvPVX_const(namesv) == '&'
1127 ? "Subroutin"
1128 : "Variabl",
1129 namesv);
1130}
b5c19bd7 1131
dd2155a4 1132STATIC PADOFFSET
fbb889c8 1133S_pad_findlex(pTHX_ const char *namepv, STRLEN namelen, U32 flags, const CV* cv, U32 seq,
cc76b5cc 1134 int warn, SV** out_capture, SV** out_name_sv, int *out_flags)
dd2155a4 1135{
97aff369 1136 dVAR;
b5c19bd7
DM
1137 I32 offset, new_offset;
1138 SV *new_capture;
1139 SV **new_capturep;
b70d5558 1140 const PADLIST * const padlist = CvPADLIST(cv);
7ef30830 1141 const bool staleok = !!(flags & padadd_STALEOK);
dd2155a4 1142
7918f24d
NC
1143 PERL_ARGS_ASSERT_PAD_FINDLEX;
1144
7ef30830 1145 if (flags & ~(padadd_UTF8_NAME|padadd_STALEOK))
2435e5d3
BF
1146 Perl_croak(aTHX_ "panic: pad_findlex illegal flag bits 0x%" UVxf,
1147 (UV)flags);
7ef30830 1148 flags &= ~ padadd_STALEOK; /* one-shot flag */
2435e5d3 1149
b5c19bd7 1150 *out_flags = 0;
a3985cdc 1151
b5c19bd7 1152 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
cc76b5cc 1153 "Pad findlex cv=0x%"UVxf" searching \"%.*s\" seq=%d%s\n",
4c760560 1154 PTR2UV(cv), (int)namelen, namepv, (int)seq,
cc76b5cc 1155 out_capture ? " capturing" : "" ));
dd2155a4 1156
b5c19bd7 1157 /* first, search this pad */
dd2155a4 1158
b5c19bd7
DM
1159 if (padlist) { /* not an undef CV */
1160 I32 fake_offset = 0;
86d2498c 1161 const AV * const nameav = PadlistARRAY(padlist)[0];
551405c4 1162 SV * const * const name_svp = AvARRAY(nameav);
ee6cee0c 1163
b5c19bd7 1164 for (offset = AvFILLp(nameav); offset > 0; offset--) {
551405c4 1165 const SV * const namesv = name_svp[offset];
b5c19bd7 1166 if (namesv && namesv != &PL_sv_undef
cc76b5cc 1167 && SvCUR(namesv) == namelen
e8b34487
BF
1168 && sv_eq_pvn_flags(aTHX_ namesv, namepv, namelen,
1169 flags & padadd_UTF8_NAME ? SVf_UTF8 : 0))
b5c19bd7 1170 {
6012dc80 1171 if (SvFAKE(namesv)) {
b5c19bd7 1172 fake_offset = offset; /* in case we don't find a real one */
6012dc80
DM
1173 continue;
1174 }
1175 /* is seq within the range _LOW to _HIGH ?
1176 * This is complicated by the fact that PL_cop_seqmax
1177 * may have wrapped around at some point */
1178 if (COP_SEQ_RANGE_LOW(namesv) == PERL_PADSEQ_INTRO)
1179 continue; /* not yet introduced */
1180
1181 if (COP_SEQ_RANGE_HIGH(namesv) == PERL_PADSEQ_INTRO) {
1182 /* in compiling scope */
1183 if (
1184 (seq > COP_SEQ_RANGE_LOW(namesv))
1185 ? (seq - COP_SEQ_RANGE_LOW(namesv) < (U32_MAX >> 1))
1186 : (COP_SEQ_RANGE_LOW(namesv) - seq > (U32_MAX >> 1))
1187 )
1188 break;
1189 }
1190 else if (
1191 (COP_SEQ_RANGE_LOW(namesv) > COP_SEQ_RANGE_HIGH(namesv))
1192 ?
1193 ( seq > COP_SEQ_RANGE_LOW(namesv)
1194 || seq <= COP_SEQ_RANGE_HIGH(namesv))
1195
1196 : ( seq > COP_SEQ_RANGE_LOW(namesv)
1197 && seq <= COP_SEQ_RANGE_HIGH(namesv))
1198 )
1199 break;
ee6cee0c
DM
1200 }
1201 }
1202
b5c19bd7
DM
1203 if (offset > 0 || fake_offset > 0 ) { /* a match! */
1204 if (offset > 0) { /* not fake */
1205 fake_offset = 0;
1206 *out_name_sv = name_svp[offset]; /* return the namesv */
1207
1208 /* set PAD_FAKELEX_MULTI if this lex can have multiple
1209 * instances. For now, we just test !CvUNIQUE(cv), but
1210 * ideally, we should detect my's declared within loops
1211 * etc - this would allow a wider range of 'not stayed
486ec47a 1212 * shared' warnings. We also treated already-compiled
b5c19bd7
DM
1213 * lexes as not multi as viewed from evals. */
1214
1215 *out_flags = CvANON(cv) ?
1216 PAD_FAKELEX_ANON :
1217 (!CvUNIQUE(cv) && ! CvCOMPILED(cv))
1218 ? PAD_FAKELEX_MULTI : 0;
1219
1220 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02
NC
1221 "Pad findlex cv=0x%"UVxf" matched: offset=%ld (%lu,%lu)\n",
1222 PTR2UV(cv), (long)offset,
1223 (unsigned long)COP_SEQ_RANGE_LOW(*out_name_sv),
1224 (unsigned long)COP_SEQ_RANGE_HIGH(*out_name_sv)));
b5c19bd7
DM
1225 }
1226 else { /* fake match */
1227 offset = fake_offset;
1228 *out_name_sv = name_svp[offset]; /* return the namesv */
809abb02 1229 *out_flags = PARENT_FAKELEX_FLAGS(*out_name_sv);
b5c19bd7 1230 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
19a5c512 1231 "Pad findlex cv=0x%"UVxf" matched: offset=%ld flags=0x%lx index=%lu\n",
b5c19bd7 1232 PTR2UV(cv), (long)offset, (unsigned long)*out_flags,
809abb02 1233 (unsigned long) PARENT_PAD_INDEX(*out_name_sv)
b5c19bd7
DM
1234 ));
1235 }
dd2155a4 1236
b5c19bd7 1237 /* return the lex? */
dd2155a4 1238
b5c19bd7 1239 if (out_capture) {
dd2155a4 1240
b5c19bd7 1241 /* our ? */
00b1698f 1242 if (SvPAD_OUR(*out_name_sv)) {
a0714e2c 1243 *out_capture = NULL;
b5c19bd7
DM
1244 return offset;
1245 }
ee6cee0c 1246
b5c19bd7
DM
1247 /* trying to capture from an anon prototype? */
1248 if (CvCOMPILED(cv)
1249 ? CvANON(cv) && CvCLONE(cv) && !CvCLONED(cv)
1250 : *out_flags & PAD_FAKELEX_ANON)
1251 {
a2a5de95 1252 if (warn)
445f13ff 1253 S_unavailable(aTHX_
0727928e
BF
1254 newSVpvn_flags(namepv, namelen,
1255 SVs_TEMP |
1256 (flags & padadd_UTF8_NAME ? SVf_UTF8 : 0)));
1257
a0714e2c 1258 *out_capture = NULL;
b5c19bd7 1259 }
ee6cee0c 1260
b5c19bd7
DM
1261 /* real value */
1262 else {
1263 int newwarn = warn;
1264 if (!CvCOMPILED(cv) && (*out_flags & PAD_FAKELEX_MULTI)
d1186544 1265 && !SvPAD_STATE(name_svp[offset])
b5c19bd7
DM
1266 && warn && ckWARN(WARN_CLOSURE)) {
1267 newwarn = 0;
1268 Perl_warner(aTHX_ packWARN(WARN_CLOSURE),
0727928e
BF
1269 "Variable \"%"SVf"\" will not stay shared",
1270 newSVpvn_flags(namepv, namelen,
1271 SVs_TEMP |
1272 (flags & padadd_UTF8_NAME ? SVf_UTF8 : 0)));
b5c19bd7 1273 }
dd2155a4 1274
b5c19bd7
DM
1275 if (fake_offset && CvANON(cv)
1276 && CvCLONE(cv) &&!CvCLONED(cv))
1277 {
1278 SV *n;
1279 /* not yet caught - look further up */
1280 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1281 "Pad findlex cv=0x%"UVxf" chasing lex in outer pad\n",
1282 PTR2UV(cv)));
1283 n = *out_name_sv;
fbb889c8 1284 (void) pad_findlex(namepv, namelen, flags, CvOUTSIDE(cv),
282e1742 1285 CvOUTSIDE_SEQ(cv),
b5c19bd7
DM
1286 newwarn, out_capture, out_name_sv, out_flags);
1287 *out_name_sv = n;
1288 return offset;
dd2155a4 1289 }
b5c19bd7 1290
86d2498c 1291 *out_capture = AvARRAY(PadlistARRAY(padlist)[
7261499d 1292 CvDEPTH(cv) ? CvDEPTH(cv) : 1])[offset];
b5c19bd7
DM
1293 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1294 "Pad findlex cv=0x%"UVxf" found lex=0x%"UVxf"\n",
19a5c512 1295 PTR2UV(cv), PTR2UV(*out_capture)));
b5c19bd7 1296
d1186544 1297 if (SvPADSTALE(*out_capture)
7ef30830 1298 && (!CvDEPTH(cv) || !staleok)
d1186544
DM
1299 && !SvPAD_STATE(name_svp[offset]))
1300 {
445f13ff 1301 S_unavailable(aTHX_
0727928e
BF
1302 newSVpvn_flags(namepv, namelen,
1303 SVs_TEMP |
1304 (flags & padadd_UTF8_NAME ? SVf_UTF8 : 0)));
a0714e2c 1305 *out_capture = NULL;
dd2155a4
DM
1306 }
1307 }
b5c19bd7 1308 if (!*out_capture) {
cc76b5cc 1309 if (namelen != 0 && *namepv == '@')
ad64d0ec 1310 *out_capture = sv_2mortal(MUTABLE_SV(newAV()));
cc76b5cc 1311 else if (namelen != 0 && *namepv == '%')
ad64d0ec 1312 *out_capture = sv_2mortal(MUTABLE_SV(newHV()));
6d5c2147
FC
1313 else if (namelen != 0 && *namepv == '&')
1314 *out_capture = sv_2mortal(newSV_type(SVt_PVCV));
b5c19bd7
DM
1315 else
1316 *out_capture = sv_newmortal();
1317 }
dd2155a4 1318 }
b5c19bd7
DM
1319
1320 return offset;
ee6cee0c 1321 }
b5c19bd7
DM
1322 }
1323
1324 /* it's not in this pad - try above */
1325
1326 if (!CvOUTSIDE(cv))
1327 return NOT_IN_PAD;
9f7d9405 1328
b5c19bd7 1329 /* out_capture non-null means caller wants us to capture lex; in
71f882da 1330 * addition we capture ourselves unless it's an ANON/format */
b5c19bd7 1331 new_capturep = out_capture ? out_capture :
4608196e 1332 CvLATE(cv) ? NULL : &new_capture;
b5c19bd7 1333
7ef30830
FC
1334 offset = pad_findlex(namepv, namelen,
1335 flags | padadd_STALEOK*(new_capturep == &new_capture),
1336 CvOUTSIDE(cv), CvOUTSIDE_SEQ(cv), 1,
b5c19bd7 1337 new_capturep, out_name_sv, out_flags);
9f7d9405 1338 if ((PADOFFSET)offset == NOT_IN_PAD)
b5c19bd7 1339 return NOT_IN_PAD;
9f7d9405 1340
b5c19bd7
DM
1341 /* found in an outer CV. Add appropriate fake entry to this pad */
1342
1343 /* don't add new fake entries (via eval) to CVs that we have already
1344 * finished compiling, or to undef CVs */
1345 if (CvCOMPILED(cv) || !padlist)
1346 return 0; /* this dummy (and invalid) value isnt used by the caller */
1347
1348 {
3291825f 1349 /* This relies on sv_setsv_flags() upgrading the destination to the same
486ec47a 1350 type as the source, independent of the flags set, and on it being
3291825f
NC
1351 "good" and only copying flag bits and pointers that it understands.
1352 */
1353 SV *new_namesv = newSVsv(*out_name_sv);
53c1dcc0
AL
1354 AV * const ocomppad_name = PL_comppad_name;
1355 PAD * const ocomppad = PL_comppad;
86d2498c
FC
1356 PL_comppad_name = PadlistARRAY(padlist)[0];
1357 PL_comppad = PadlistARRAY(padlist)[1];
b5c19bd7
DM
1358 PL_curpad = AvARRAY(PL_comppad);
1359
3291825f 1360 new_offset
cc76b5cc 1361 = pad_alloc_name(new_namesv,
59cfed7d 1362 (SvPAD_STATE(*out_name_sv) ? padadd_STATE : 0),
3291825f
NC
1363 SvPAD_TYPED(*out_name_sv)
1364 ? SvSTASH(*out_name_sv) : NULL,
1365 SvOURSTASH(*out_name_sv)
1366 );
1367
1368 SvFAKE_on(new_namesv);
1369 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1370 "Pad addname: %ld \"%.*s\" FAKE\n",
1371 (long)new_offset,
1372 (int) SvCUR(new_namesv), SvPVX(new_namesv)));
809abb02 1373 PARENT_FAKELEX_FLAGS_set(new_namesv, *out_flags);
b5c19bd7 1374
809abb02 1375 PARENT_PAD_INDEX_set(new_namesv, 0);
00b1698f 1376 if (SvPAD_OUR(new_namesv)) {
6f207bd3 1377 NOOP; /* do nothing */
b5c19bd7 1378 }
71f882da 1379 else if (CvLATE(cv)) {
b5c19bd7 1380 /* delayed creation - just note the offset within parent pad */
809abb02 1381 PARENT_PAD_INDEX_set(new_namesv, offset);
b5c19bd7
DM
1382 CvCLONE_on(cv);
1383 }
1384 else {
1385 /* immediate creation - capture outer value right now */
1386 av_store(PL_comppad, new_offset, SvREFCNT_inc(*new_capturep));
81df9f6f
FC
1387 /* But also note the offset, as newMYSUB needs it */
1388 PARENT_PAD_INDEX_set(new_namesv, offset);
b5c19bd7
DM
1389 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1390 "Pad findlex cv=0x%"UVxf" saved captured sv 0x%"UVxf" at offset %ld\n",
1391 PTR2UV(cv), PTR2UV(*new_capturep), (long)new_offset));
dd2155a4 1392 }
b5c19bd7 1393 *out_name_sv = new_namesv;
809abb02 1394 *out_flags = PARENT_FAKELEX_FLAGS(new_namesv);
b5c19bd7
DM
1395
1396 PL_comppad_name = ocomppad_name;
1397 PL_comppad = ocomppad;
4608196e 1398 PL_curpad = ocomppad ? AvARRAY(ocomppad) : NULL;
dd2155a4 1399 }
b5c19bd7 1400 return new_offset;
dd2155a4
DM
1401}
1402
fb8a9836 1403#ifdef DEBUGGING
cc76b5cc 1404
dd2155a4 1405/*
cc76b5cc 1406=for apidoc Am|SV *|pad_sv|PADOFFSET po
dd2155a4 1407
cc76b5cc 1408Get the value at offset I<po> in the current (compiling or executing) pad.
dd2155a4
DM
1409Use macro PAD_SV instead of calling this function directly.
1410
1411=cut
1412*/
1413
dd2155a4
DM
1414SV *
1415Perl_pad_sv(pTHX_ PADOFFSET po)
1416{
97aff369 1417 dVAR;
f3548bdc 1418 ASSERT_CURPAD_ACTIVE("pad_sv");
dd2155a4 1419
dd2155a4
DM
1420 if (!po)
1421 Perl_croak(aTHX_ "panic: pad_sv po");
dd2155a4
DM
1422 DEBUG_X(PerlIO_printf(Perl_debug_log,
1423 "Pad 0x%"UVxf"[0x%"UVxf"] sv: %ld sv=0x%"UVxf"\n",
f3548bdc 1424 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(PL_curpad[po]))
dd2155a4
DM
1425 );
1426 return PL_curpad[po];
1427}
1428
dd2155a4 1429/*
cc76b5cc 1430=for apidoc Am|void|pad_setsv|PADOFFSET po|SV *sv
dd2155a4 1431
cc76b5cc 1432Set the value at offset I<po> in the current (compiling or executing) pad.
dd2155a4
DM
1433Use the macro PAD_SETSV() rather than calling this function directly.
1434
1435=cut
1436*/
1437
dd2155a4
DM
1438void
1439Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv)
1440{
97aff369 1441 dVAR;
7918f24d
NC
1442
1443 PERL_ARGS_ASSERT_PAD_SETSV;
1444
f3548bdc 1445 ASSERT_CURPAD_ACTIVE("pad_setsv");
dd2155a4
DM
1446
1447 DEBUG_X(PerlIO_printf(Perl_debug_log,
1448 "Pad 0x%"UVxf"[0x%"UVxf"] setsv: %ld sv=0x%"UVxf"\n",
f3548bdc 1449 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po, PTR2UV(sv))
dd2155a4
DM
1450 );
1451 PL_curpad[po] = sv;
1452}
dd2155a4 1453
cc76b5cc 1454#endif /* DEBUGGING */
dd2155a4
DM
1455
1456/*
cc76b5cc 1457=for apidoc m|void|pad_block_start|int full
dd2155a4 1458
e89fca5e 1459Update the pad compilation state variables on entry to a new block.
dd2155a4
DM
1460
1461=cut
1462*/
1463
1464/* XXX DAPM perhaps:
1465 * - integrate this in general state-saving routine ???
1466 * - combine with the state-saving going on in pad_new ???
1467 * - introduce a new SAVE type that does all this in one go ?
1468 */
1469
1470void
1471Perl_pad_block_start(pTHX_ int full)
1472{
97aff369 1473 dVAR;
f3548bdc 1474 ASSERT_CURPAD_ACTIVE("pad_block_start");
dd2155a4
DM
1475 SAVEI32(PL_comppad_name_floor);
1476 PL_comppad_name_floor = AvFILLp(PL_comppad_name);
1477 if (full)
1478 PL_comppad_name_fill = PL_comppad_name_floor;
1479 if (PL_comppad_name_floor < 0)
1480 PL_comppad_name_floor = 0;
1481 SAVEI32(PL_min_intro_pending);
1482 SAVEI32(PL_max_intro_pending);
1483 PL_min_intro_pending = 0;
1484 SAVEI32(PL_comppad_name_fill);
1485 SAVEI32(PL_padix_floor);
1486 PL_padix_floor = PL_padix;
1487 PL_pad_reset_pending = FALSE;
1488}
1489
dd2155a4 1490/*
cc76b5cc 1491=for apidoc m|U32|intro_my
dd2155a4 1492
bf954566
FC
1493"Introduce" my variables to visible status. This is called during parsing
1494at the end of each statement to make lexical variables visible to
1495subsequent statements.
dd2155a4
DM
1496
1497=cut
1498*/
1499
1500U32
1501Perl_intro_my(pTHX)
1502{
97aff369 1503 dVAR;
dd2155a4 1504 SV **svp;
dd2155a4 1505 I32 i;
6012dc80 1506 U32 seq;
dd2155a4 1507
f3548bdc 1508 ASSERT_CURPAD_ACTIVE("intro_my");
dd2155a4
DM
1509 if (! PL_min_intro_pending)
1510 return PL_cop_seqmax;
1511
1512 svp = AvARRAY(PL_comppad_name);
1513 for (i = PL_min_intro_pending; i <= PL_max_intro_pending; i++) {
53c1dcc0
AL
1514 SV * const sv = svp[i];
1515
0d311cdb
DM
1516 if (sv && sv != &PL_sv_undef && !SvFAKE(sv)
1517 && COP_SEQ_RANGE_LOW(sv) == PERL_PADSEQ_INTRO)
1518 {
2df5bdd7 1519 COP_SEQ_RANGE_HIGH_set(sv, PERL_PADSEQ_INTRO); /* Don't know scope end yet. */
809abb02 1520 COP_SEQ_RANGE_LOW_set(sv, PL_cop_seqmax);
dd2155a4 1521 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1522 "Pad intromy: %ld \"%s\", (%lu,%lu)\n",
b15aece3 1523 (long)i, SvPVX_const(sv),
809abb02
NC
1524 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1525 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4
DM
1526 );
1527 }
1528 }
6012dc80
DM
1529 seq = PL_cop_seqmax;
1530 PL_cop_seqmax++;
1531 if (PL_cop_seqmax == PERL_PADSEQ_INTRO) /* not a legal value */
1532 PL_cop_seqmax++;
dd2155a4
DM
1533 PL_min_intro_pending = 0;
1534 PL_comppad_name_fill = PL_max_intro_pending; /* Needn't search higher */
1535 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
6012dc80 1536 "Pad intromy: seq -> %ld\n", (long)(PL_cop_seqmax)));
dd2155a4 1537
6012dc80 1538 return seq;
dd2155a4
DM
1539}
1540
1541/*
cc76b5cc 1542=for apidoc m|void|pad_leavemy
dd2155a4
DM
1543
1544Cleanup at end of scope during compilation: set the max seq number for
1545lexicals in this scope and warn of any lexicals that never got introduced.
1546
1547=cut
1548*/
1549
6d5c2147 1550OP *
dd2155a4
DM
1551Perl_pad_leavemy(pTHX)
1552{
97aff369 1553 dVAR;
dd2155a4 1554 I32 off;
6d5c2147 1555 OP *o = NULL;
551405c4 1556 SV * const * const svp = AvARRAY(PL_comppad_name);
dd2155a4
DM
1557
1558 PL_pad_reset_pending = FALSE;
1559
f3548bdc 1560 ASSERT_CURPAD_ACTIVE("pad_leavemy");
dd2155a4
DM
1561 if (PL_min_intro_pending && PL_comppad_name_fill < PL_min_intro_pending) {
1562 for (off = PL_max_intro_pending; off >= PL_min_intro_pending; off--) {
53c1dcc0 1563 const SV * const sv = svp[off];
9b387841
NC
1564 if (sv && sv != &PL_sv_undef && !SvFAKE(sv))
1565 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
1566 "%"SVf" never introduced",
1567 SVfARG(sv));
dd2155a4
DM
1568 }
1569 }
1570 /* "Deintroduce" my variables that are leaving with this scope. */
1571 for (off = AvFILLp(PL_comppad_name); off > PL_comppad_name_fill; off--) {
6d5c2147 1572 SV * const sv = svp[off];
2df5bdd7
DM
1573 if (sv && sv != &PL_sv_undef && !SvFAKE(sv)
1574 && COP_SEQ_RANGE_HIGH(sv) == PERL_PADSEQ_INTRO)
1575 {
809abb02 1576 COP_SEQ_RANGE_HIGH_set(sv, PL_cop_seqmax);
dd2155a4 1577 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
809abb02 1578 "Pad leavemy: %ld \"%s\", (%lu,%lu)\n",
b15aece3 1579 (long)off, SvPVX_const(sv),
809abb02
NC
1580 (unsigned long)COP_SEQ_RANGE_LOW(sv),
1581 (unsigned long)COP_SEQ_RANGE_HIGH(sv))
dd2155a4 1582 );
6d5c2147
FC
1583 if (!PadnameIsSTATE(sv) && !PadnameIsOUR(sv)
1584 && *PadnamePV(sv) == '&' && PadnameLEN(sv) > 1) {
1585 OP *kid = newOP(OP_INTROCV, 0);
1586 kid->op_targ = off;
1587 o = op_prepend_elem(OP_LINESEQ, kid, o);
1588 }
dd2155a4
DM
1589 }
1590 }
1591 PL_cop_seqmax++;
6012dc80
DM
1592 if (PL_cop_seqmax == PERL_PADSEQ_INTRO) /* not a legal value */
1593 PL_cop_seqmax++;
dd2155a4
DM
1594 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1595 "Pad leavemy: seq = %ld\n", (long)PL_cop_seqmax));
6d5c2147 1596 return o;
dd2155a4
DM
1597}
1598
dd2155a4 1599/*
cc76b5cc 1600=for apidoc m|void|pad_swipe|PADOFFSET po|bool refadjust
dd2155a4
DM
1601
1602Abandon the tmp in the current pad at offset po and replace with a
1603new one.
1604
1605=cut
1606*/
1607
1608void
1609Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust)
1610{
97aff369 1611 dVAR;
f3548bdc 1612 ASSERT_CURPAD_LEGAL("pad_swipe");
dd2155a4
DM
1613 if (!PL_curpad)
1614 return;
1615 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1616 Perl_croak(aTHX_ "panic: pad_swipe curpad, %p!=%p",
1617 AvARRAY(PL_comppad), PL_curpad);
9100eeb1
Z
1618 if (!po || ((SSize_t)po) > AvFILLp(PL_comppad))
1619 Perl_croak(aTHX_ "panic: pad_swipe po=%ld, fill=%ld",
1620 (long)po, (long)AvFILLp(PL_comppad));
dd2155a4
DM
1621
1622 DEBUG_X(PerlIO_printf(Perl_debug_log,
1623 "Pad 0x%"UVxf"[0x%"UVxf"] swipe: %ld\n",
1624 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po));
1625
1626 if (PL_curpad[po])
1627 SvPADTMP_off(PL_curpad[po]);
1628 if (refadjust)
1629 SvREFCNT_dec(PL_curpad[po]);
1630
9ad9869c
DM
1631
1632 /* if pad tmps aren't shared between ops, then there's no need to
1633 * create a new tmp when an existing op is freed */
1634#ifdef USE_BROKEN_PAD_RESET
561b68a9 1635 PL_curpad[po] = newSV(0);
dd2155a4 1636 SvPADTMP_on(PL_curpad[po]);
9ad9869c
DM
1637#else
1638 PL_curpad[po] = &PL_sv_undef;
97bf4a8d 1639#endif
dd2155a4
DM
1640 if ((I32)po < PL_padix)
1641 PL_padix = po - 1;
1642}
1643
dd2155a4 1644/*
cc76b5cc 1645=for apidoc m|void|pad_reset
dd2155a4
DM
1646
1647Mark all the current temporaries for reuse
1648
1649=cut
1650*/
1651
1652/* XXX pad_reset() is currently disabled because it results in serious bugs.
1653 * It causes pad temp TARGs to be shared between OPs. Since TARGs are pushed
1654 * on the stack by OPs that use them, there are several ways to get an alias
1655 * to a shared TARG. Such an alias will change randomly and unpredictably.
1656 * We avoid doing this until we can think of a Better Way.
1657 * GSAR 97-10-29 */
1f676739 1658static void
82af08ae 1659S_pad_reset(pTHX)
dd2155a4 1660{
97aff369 1661 dVAR;
dd2155a4 1662#ifdef USE_BROKEN_PAD_RESET
dd2155a4 1663 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1664 Perl_croak(aTHX_ "panic: pad_reset curpad, %p!=%p",
1665 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1666
1667 DEBUG_X(PerlIO_printf(Perl_debug_log,
1668 "Pad 0x%"UVxf"[0x%"UVxf"] reset: padix %ld -> %ld",
1669 PTR2UV(PL_comppad), PTR2UV(PL_curpad),
1670 (long)PL_padix, (long)PL_padix_floor
1671 )
1672 );
1673
284167a5 1674 if (!TAINTING_get) { /* Can't mix tainted and non-tainted temporaries. */
eb578fdb 1675 I32 po;
dd2155a4
DM
1676 for (po = AvMAX(PL_comppad); po > PL_padix_floor; po--) {
1677 if (PL_curpad[po] && !SvIMMORTAL(PL_curpad[po]))
1678 SvPADTMP_off(PL_curpad[po]);
1679 }
1680 PL_padix = PL_padix_floor;
1681 }
1682#endif
1683 PL_pad_reset_pending = FALSE;
1684}
1685
dd2155a4 1686/*
cc76b5cc
Z
1687=for apidoc Amx|void|pad_tidy|padtidy_type type
1688
1689Tidy up a pad at the end of compilation of the code to which it belongs.
1690Jobs performed here are: remove most stuff from the pads of anonsub
1691prototypes; give it a @_; mark temporaries as such. I<type> indicates
1692the kind of subroutine:
dd2155a4 1693
cc76b5cc
Z
1694 padtidy_SUB ordinary subroutine
1695 padtidy_SUBCLONE prototype for lexical closure
1696 padtidy_FORMAT format
dd2155a4
DM
1697
1698=cut
1699*/
1700
1701/* XXX DAPM surely most of this stuff should be done properly
1702 * at the right time beforehand, rather than going around afterwards
1703 * cleaning up our mistakes ???
1704 */
1705
1706void
1707Perl_pad_tidy(pTHX_ padtidy_type type)
1708{
27da23d5 1709 dVAR;
dd2155a4 1710
f3548bdc 1711 ASSERT_CURPAD_ACTIVE("pad_tidy");
b5c19bd7
DM
1712
1713 /* If this CV has had any 'eval-capable' ops planted in it
1714 * (ie it contains eval '...', //ee, /$var/ or /(?{..})/), Then any
1715 * anon prototypes in the chain of CVs should be marked as cloneable,
1716 * so that for example the eval's CV in C<< sub { eval '$x' } >> gets
1717 * the right CvOUTSIDE.
1718 * If running with -d, *any* sub may potentially have an eval
486ec47a 1719 * executed within it.
b5c19bd7
DM
1720 */
1721
1722 if (PL_cv_has_eval || PL_perldb) {
e1ec3a88 1723 const CV *cv;
b5c19bd7
DM
1724 for (cv = PL_compcv ;cv; cv = CvOUTSIDE(cv)) {
1725 if (cv != PL_compcv && CvCOMPILED(cv))
1726 break; /* no need to mark already-compiled code */
1727 if (CvANON(cv)) {
1728 DEBUG_Xv(PerlIO_printf(Perl_debug_log,
1729 "Pad clone on cv=0x%"UVxf"\n", PTR2UV(cv)));
1730 CvCLONE_on(cv);
1731 }
00cc8743 1732 CvHASEVAL_on(cv);
b5c19bd7
DM
1733 }
1734 }
1735
dd2155a4
DM
1736 /* extend curpad to match namepad */
1737 if (AvFILLp(PL_comppad_name) < AvFILLp(PL_comppad))
a0714e2c 1738 av_store(PL_comppad_name, AvFILLp(PL_comppad), NULL);
dd2155a4
DM
1739
1740 if (type == padtidy_SUBCLONE) {
551405c4 1741 SV * const * const namep = AvARRAY(PL_comppad_name);
504618e9 1742 PADOFFSET ix;
b5c19bd7 1743
dd2155a4
DM
1744 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
1745 SV *namesv;
1746
1747 if (SvIMMORTAL(PL_curpad[ix]) || IS_PADGV(PL_curpad[ix]) || IS_PADCONST(PL_curpad[ix]))
1748 continue;
1749 /*
1750 * The only things that a clonable function needs in its
b5c19bd7 1751 * pad are anonymous subs.
dd2155a4
DM
1752 * The rest are created anew during cloning.
1753 */
a0714e2c 1754 if (!((namesv = namep[ix]) != NULL &&
dd2155a4 1755 namesv != &PL_sv_undef &&
b15aece3 1756 *SvPVX_const(namesv) == '&'))
dd2155a4
DM
1757 {
1758 SvREFCNT_dec(PL_curpad[ix]);
a0714e2c 1759 PL_curpad[ix] = NULL;
dd2155a4
DM
1760 }
1761 }
1762 }
1763 else if (type == padtidy_SUB) {
1764 /* XXX DAPM this same bit of code keeps appearing !!! Rationalise? */
53c1dcc0 1765 AV * const av = newAV(); /* Will be @_ */
ad64d0ec 1766 av_store(PL_comppad, 0, MUTABLE_SV(av));
11ca45c0 1767 AvREIFY_only(av);
dd2155a4
DM
1768 }
1769
4cee4ca8 1770 if (type == padtidy_SUB || type == padtidy_FORMAT) {
adf8f095 1771 SV * const * const namep = AvARRAY(PL_comppad_name);
504618e9 1772 PADOFFSET ix;
dd2155a4
DM
1773 for (ix = AvFILLp(PL_comppad); ix > 0; ix--) {
1774 if (SvIMMORTAL(PL_curpad[ix]) || IS_PADGV(PL_curpad[ix]) || IS_PADCONST(PL_curpad[ix]))
1775 continue;
adf8f095 1776 if (!SvPADMY(PL_curpad[ix])) {
dd2155a4 1777 SvPADTMP_on(PL_curpad[ix]);
adf8f095
NC
1778 } else if (!SvFAKE(namep[ix])) {
1779 /* This is a work around for how the current implementation of
1780 ?{ } blocks in regexps interacts with lexicals.
1781
1782 One of our lexicals.
1783 Can't do this on all lexicals, otherwise sub baz() won't
1784 compile in
1785
1786 my $foo;
1787
1788 sub bar { ++$foo; }
1789
1790 sub baz { ++$foo; }
1791
1792 because completion of compiling &bar calling pad_tidy()
1793 would cause (top level) $foo to be marked as stale, and
1794 "no longer available". */
1795 SvPADSTALE_on(PL_curpad[ix]);
1796 }
dd2155a4
DM
1797 }
1798 }
f3548bdc 1799 PL_curpad = AvARRAY(PL_comppad);
dd2155a4
DM
1800}
1801
dd2155a4 1802/*
cc76b5cc 1803=for apidoc m|void|pad_free|PADOFFSET po
dd2155a4 1804
8627550a 1805Free the SV at offset po in the current pad.
dd2155a4
DM
1806
1807=cut
1808*/
1809
1810/* XXX DAPM integrate with pad_swipe ???? */
1811void
1812Perl_pad_free(pTHX_ PADOFFSET po)
1813{
97aff369 1814 dVAR;
ad9e6ae1 1815 SV *sv;
f3548bdc 1816 ASSERT_CURPAD_LEGAL("pad_free");
dd2155a4
DM
1817 if (!PL_curpad)
1818 return;
1819 if (AvARRAY(PL_comppad) != PL_curpad)
5637ef5b
NC
1820 Perl_croak(aTHX_ "panic: pad_free curpad, %p!=%p",
1821 AvARRAY(PL_comppad), PL_curpad);
dd2155a4
DM
1822 if (!po)
1823 Perl_croak(aTHX_ "panic: pad_free po");
1824
1825 DEBUG_X(PerlIO_printf(Perl_debug_log,
1826 "Pad 0x%"UVxf"[0x%"UVxf"] free: %ld\n",
1827 PTR2UV(PL_comppad), PTR2UV(PL_curpad), (long)po)
1828 );
1829
ad9e6ae1
DM
1830
1831 sv = PL_curpad[po];
1832 if (sv && sv != &PL_sv_undef && !SvPADMY(sv))
1833 SvFLAGS(sv) &= ~SVs_PADTMP;
1834
dd2155a4
DM
1835 if ((I32)po < PL_padix)
1836 PL_padix = po - 1;
1837}
1838
dd2155a4 1839/*
cc76b5cc 1840=for apidoc m|void|do_dump_pad|I32 level|PerlIO *file|PADLIST *padlist|int full
dd2155a4
DM
1841
1842Dump the contents of a padlist
1843
1844=cut
1845*/
1846
1847void
1848Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full)
1849{
97aff369 1850 dVAR;
e1ec3a88
AL
1851 const AV *pad_name;
1852 const AV *pad;
dd2155a4
DM
1853 SV **pname;
1854 SV **ppad;
dd2155a4
DM
1855 I32 ix;
1856
7918f24d
NC
1857 PERL_ARGS_ASSERT_DO_DUMP_PAD;
1858
dd2155a4
DM
1859 if (!padlist) {
1860 return;
1861 }
86d2498c
FC
1862 pad_name = *PadlistARRAY(padlist);
1863 pad = PadlistARRAY(padlist)[1];
dd2155a4
DM
1864 pname = AvARRAY(pad_name);
1865 ppad = AvARRAY(pad);
1866 Perl_dump_indent(aTHX_ level, file,
1867 "PADNAME = 0x%"UVxf"(0x%"UVxf") PAD = 0x%"UVxf"(0x%"UVxf")\n",
1868 PTR2UV(pad_name), PTR2UV(pname), PTR2UV(pad), PTR2UV(ppad)
1869 );
1870
1871 for (ix = 1; ix <= AvFILLp(pad_name); ix++) {
e1ec3a88 1872 const SV *namesv = pname[ix];
dd2155a4 1873 if (namesv && namesv == &PL_sv_undef) {
a0714e2c 1874 namesv = NULL;
dd2155a4
DM
1875 }
1876 if (namesv) {
ee6cee0c
DM
1877 if (SvFAKE(namesv))
1878 Perl_dump_indent(aTHX_ level+1, file,
c0fd1b42 1879 "%2d. 0x%"UVxf"<%lu> FAKE \"%s\" flags=0x%lx index=%lu\n",
ee6cee0c
DM
1880 (int) ix,
1881 PTR2UV(ppad[ix]),
1882 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
b15aece3 1883 SvPVX_const(namesv),
809abb02
NC
1884 (unsigned long)PARENT_FAKELEX_FLAGS(namesv),
1885 (unsigned long)PARENT_PAD_INDEX(namesv)
b5c19bd7 1886
ee6cee0c
DM
1887 );
1888 else
1889 Perl_dump_indent(aTHX_ level+1, file,
809abb02 1890 "%2d. 0x%"UVxf"<%lu> (%lu,%lu) \"%s\"\n",
ee6cee0c
DM
1891 (int) ix,
1892 PTR2UV(ppad[ix]),
1893 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0),
809abb02
NC
1894 (unsigned long)COP_SEQ_RANGE_LOW(namesv),
1895 (unsigned long)COP_SEQ_RANGE_HIGH(namesv),
b15aece3 1896 SvPVX_const(namesv)
ee6cee0c 1897 );
dd2155a4
DM
1898 }
1899 else if (full) {
1900 Perl_dump_indent(aTHX_ level+1, file,
1901 "%2d. 0x%"UVxf"<%lu>\n",
1902 (int) ix,
1903 PTR2UV(ppad[ix]),
1904 (unsigned long) (ppad[ix] ? SvREFCNT(ppad[ix]) : 0)
1905 );
1906 }
1907 }
1908}
1909
cc76b5cc 1910#ifdef DEBUGGING
dd2155a4
DM
1911
1912/*
cc76b5cc 1913=for apidoc m|void|cv_dump|CV *cv|const char *title
dd2155a4
DM
1914
1915dump the contents of a CV
1916
1917=cut
1918*/
1919
dd2155a4 1920STATIC void
e1ec3a88 1921S_cv_dump(pTHX_ const CV *cv, const char *title)
dd2155a4 1922{
97aff369 1923 dVAR;
53c1dcc0 1924 const CV * const outside = CvOUTSIDE(cv);
b70d5558 1925 PADLIST* const padlist = CvPADLIST(cv);
dd2155a4 1926
7918f24d
NC
1927 PERL_ARGS_ASSERT_CV_DUMP;
1928
dd2155a4
DM
1929 PerlIO_printf(Perl_debug_log,
1930 " %s: CV=0x%"UVxf" (%s), OUTSIDE=0x%"UVxf" (%s)\n",
1931 title,
1932 PTR2UV(cv),
1933 (CvANON(cv) ? "ANON"
71f882da 1934 : (SvTYPE(cv) == SVt_PVFM) ? "FORMAT"
dd2155a4
DM
1935 : (cv == PL_main_cv) ? "MAIN"
1936 : CvUNIQUE(cv) ? "UNIQUE"
1937 : CvGV(cv) ? GvNAME(CvGV(cv)) : "UNDEFINED"),
1938 PTR2UV(outside),
1939 (!outside ? "null"
1940 : CvANON(outside) ? "ANON"
1941 : (outside == PL_main_cv) ? "MAIN"
1942 : CvUNIQUE(outside) ? "UNIQUE"
1943 : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
1944
1945 PerlIO_printf(Perl_debug_log,
1946 " PADLIST = 0x%"UVxf"\n", PTR2UV(padlist));
1947 do_dump_pad(1, Perl_debug_log, padlist, 1);
1948}
dd2155a4 1949
cc76b5cc 1950#endif /* DEBUGGING */
dd2155a4
DM
1951
1952/*
cc76b5cc 1953=for apidoc Am|CV *|cv_clone|CV *proto
dd2155a4 1954
cc76b5cc
Z
1955Clone a CV, making a lexical closure. I<proto> supplies the prototype
1956of the function: its code, pad structure, and other attributes.
1957The prototype is combined with a capture of outer lexicals to which the
1958code refers, which are taken from the currently-executing instance of
1959the immediately surrounding code.
dd2155a4
DM
1960
1961=cut
1962*/
1963
e10681aa
FC
1964static CV *S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside);
1965
1966static void
1967S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside)
dd2155a4 1968{
27da23d5 1969 dVAR;
dd2155a4 1970 I32 ix;
b70d5558 1971 PADLIST* const protopadlist = CvPADLIST(proto);
9ef8d569 1972 PAD *const protopad_name = *PadlistARRAY(protopadlist);
86d2498c 1973 const PAD *const protopad = PadlistARRAY(protopadlist)[1];
53c1dcc0
AL
1974 SV** const pname = AvARRAY(protopad_name);
1975 SV** const ppad = AvARRAY(protopad);
e1ec3a88
AL
1976 const I32 fname = AvFILLp(protopad_name);
1977 const I32 fpad = AvFILLp(protopad);
b5c19bd7 1978 SV** outpad;
71f882da 1979 long depth;
e07561e6 1980 bool subclones = FALSE;
7918f24d 1981
dd2155a4
DM
1982 assert(!CvUNIQUE(proto));
1983
1b5aaca6
FC
1984 /* Anonymous subs have a weak CvOUTSIDE pointer, so its value is not
1985 * reliable. The currently-running sub is always the one we need to
1986 * close over.
8d88fe29
FC
1987 * For my subs, the currently-running sub may not be the one we want.
1988 * We have to check whether it is a clone of CvOUTSIDE.
1b5aaca6
FC
1989 * Note that in general for formats, CvOUTSIDE != find_runcv.
1990 * Since formats may be nested inside closures, CvOUTSIDE may point
71f882da 1991 * to a prototype; we instead want the cloned parent who called us.
af41786f 1992 */
71f882da 1993
e07561e6 1994 if (!outside) {
ebfebee4 1995 if (CvWEAKOUTSIDE(proto))
71f882da 1996 outside = find_runcv(NULL);
e07561e6 1997 else {
af41786f 1998 outside = CvOUTSIDE(proto);
db4cf31d
FC
1999 if ((CvCLONE(outside) && ! CvCLONED(outside))
2000 || !CvPADLIST(outside)
8771da69
FC
2001 || PadlistNAMES(CvPADLIST(outside))
2002 != protopadlist->xpadl_outid) {
db4cf31d 2003 outside = find_runcv_where(
a56015b9 2004 FIND_RUNCV_padid_eq, PTR2IV(protopadlist->xpadl_outid), NULL
70794f7b 2005 );
db4cf31d 2006 /* outside could be null */
5dff782d 2007 }
e07561e6 2008 }
5dff782d 2009 }
db4cf31d 2010 depth = outside ? CvDEPTH(outside) : 0;
71f882da
DM
2011 if (!depth)
2012 depth = 1;
b5c19bd7 2013
dd2155a4
DM
2014 ENTER;
2015 SAVESPTR(PL_compcv);
e07561e6 2016 PL_compcv = cv;
dd2155a4 2017
a0d2bbd5
FC
2018 if (CvHASEVAL(cv))
2019 CvOUTSIDE(cv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
dd2155a4 2020
cbacc9aa 2021 SAVESPTR(PL_comppad_name);
9ef8d569 2022 PL_comppad_name = protopad_name;
b7787f18 2023 CvPADLIST(cv) = pad_new(padnew_CLONE|padnew_SAVE);
dd2155a4 2024
b5c19bd7 2025 av_fill(PL_comppad, fpad);
dd2155a4 2026
dd2155a4
DM
2027 PL_curpad = AvARRAY(PL_comppad);
2028
db4cf31d 2029 outpad = outside && CvPADLIST(outside)
86d2498c 2030 ? AvARRAY(PadlistARRAY(CvPADLIST(outside))[depth])
f2ead8b8 2031 : NULL;
8771da69
FC
2032 if (outpad)
2033 CvPADLIST(cv)->xpadl_outid = PadlistNAMES(CvPADLIST(outside));
b5c19bd7 2034
dd2155a4 2035 for (ix = fpad; ix > 0; ix--) {
a0714e2c
SS
2036 SV* const namesv = (ix <= fname) ? pname[ix] : NULL;
2037 SV *sv = NULL;
71f882da 2038 if (namesv && namesv != &PL_sv_undef) { /* lexical */
b5c19bd7 2039 if (SvFAKE(namesv)) { /* lexical from outside? */
5aec98df
FC
2040 /* formats may have an inactive, or even undefined, parent;
2041 but state vars are always available. */
f2ead8b8 2042 if (!outpad || !(sv = outpad[PARENT_PAD_INDEX(namesv)])
cae5dbbe 2043 || ( SvPADSTALE(sv) && !SvPAD_STATE(namesv)
db4cf31d 2044 && (!outside || !CvDEPTH(outside))) ) {
445f13ff 2045 S_unavailable(aTHX_ namesv);
a0714e2c 2046 sv = NULL;
71f882da 2047 }
33894c1a 2048 else
f84c484e 2049 SvREFCNT_inc_simple_void_NN(sv);
dd2155a4 2050 }
71f882da 2051 if (!sv) {
b15aece3 2052 const char sigil = SvPVX_const(namesv)[0];
e1ec3a88 2053 if (sigil == '&')
e07561e6
FC
2054 /* If there are state subs, we need to clone them, too.
2055 But they may need to close over variables we have
2056 not cloned yet. So we will have to do a second
2057 pass. Furthermore, there may be state subs clos-
2058 ing over other state subs’ entries, so we have
2059 to put a stub here and then clone into it on the
2060 second pass. */
6d5c2147
FC
2061 if (SvPAD_STATE(namesv) && !CvCLONED(ppad[ix])) {
2062 assert(SvTYPE(ppad[ix]) == SVt_PVCV);
2063 subclones = 1;
2064 sv = newSV_type(SVt_PVCV);
2065 }
2066 else if (PadnameLEN(namesv)>1 && !PadnameIsOUR(namesv))
2067 {
2068 /* my sub */
81df9f6f
FC
2069 /* Just provide a stub, but name it. It will be
2070 upgrade to the real thing on scope entry. */
2071 sv = newSV_type(SVt_PVCV);
cf748c3c
FC
2072 CvNAME_HEK_set(
2073 sv,
2074 share_hek(SvPVX_const(namesv)+1,
2075 SvCUR(namesv) - 1
2076 * (SvUTF8(namesv) ? -1 : 1),
2077 0)
2078 );
6d5c2147
FC
2079 }
2080 else sv = SvREFCNT_inc(ppad[ix]);
e1ec3a88 2081 else if (sigil == '@')
ad64d0ec 2082 sv = MUTABLE_SV(newAV());
e1ec3a88 2083 else if (sigil == '%')
ad64d0ec 2084 sv = MUTABLE_SV(newHV());
dd2155a4 2085 else
561b68a9 2086 sv = newSV(0);
235cc2e3 2087 SvPADMY_on(sv);
0d3b281c 2088 /* reset the 'assign only once' flag on each state var */
e07561e6 2089 if (sigil != '&' && SvPAD_STATE(namesv))
0d3b281c 2090 SvPADSTALE_on(sv);
dd2155a4
DM
2091 }
2092 }
2093 else if (IS_PADGV(ppad[ix]) || IS_PADCONST(ppad[ix])) {
f84c484e 2094 sv = SvREFCNT_inc_NN(ppad[ix]);
dd2155a4
DM
2095 }
2096 else {
561b68a9 2097 sv = newSV(0);
dd2155a4 2098 SvPADTMP_on(sv);
dd2155a4 2099 }
71f882da 2100 PL_curpad[ix] = sv;
dd2155a4
DM
2101 }
2102
e07561e6
FC
2103 if (subclones)
2104 for (ix = fpad; ix > 0; ix--) {
2105 SV* const namesv = (ix <= fname) ? pname[ix] : NULL;
2106 if (namesv && namesv != &PL_sv_undef && !SvFAKE(namesv)
2107 && SvPVX_const(namesv)[0] == '&' && SvPAD_STATE(namesv))
2108 S_cv_clone(aTHX_ (CV *)ppad[ix], (CV *)PL_curpad[ix], cv);
2109 }
2110
e10681aa
FC
2111 LEAVE;
2112}
2113
2114static CV *
2115S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside)
2116{
c04ef36e
TC
2117 dVAR;
2118
e10681aa
FC
2119 assert(!CvUNIQUE(proto));
2120
2121 if (!cv) cv = MUTABLE_CV(newSV_type(SvTYPE(proto)));
2122 CvFLAGS(cv) = CvFLAGS(proto) & ~(CVf_CLONE|CVf_WEAKOUTSIDE|CVf_CVGV_RC
2123 |CVf_SLABBED);
2124 CvCLONED_on(cv);
2125
2126 CvFILE(cv) = CvDYNFILE(proto) ? savepv(CvFILE(proto))
2127 : CvFILE(proto);
2128 if (CvNAMED(proto))
2e800d79 2129 CvNAME_HEK_set(cv, share_hek_hek(CvNAME_HEK(proto)));
e10681aa
FC
2130 else CvGV_set(cv,CvGV(proto));
2131 CvSTASH_set(cv, CvSTASH(proto));
2132 OP_REFCNT_LOCK;
2133 CvROOT(cv) = OpREFCNT_inc(CvROOT(proto));
2134 OP_REFCNT_UNLOCK;
2135 CvSTART(cv) = CvSTART(proto);
2136 CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(proto);
2137
2138 if (SvPOK(proto))
2139 sv_setpvn(MUTABLE_SV(cv), SvPVX_const(proto), SvCUR(proto));
2140 if (SvMAGIC(proto))
2141 mg_copy((SV *)proto, (SV *)cv, 0, 0);
2142
2143 if (CvPADLIST(proto)) S_cv_clone_pad(aTHX_ proto, cv, outside);
2144
dd2155a4
DM
2145 DEBUG_Xv(
2146 PerlIO_printf(Perl_debug_log, "\nPad CV clone\n");
e10681aa 2147 if (CvOUTSIDE(cv)) cv_dump(CvOUTSIDE(cv), "Outside");
dd2155a4
DM
2148 cv_dump(proto, "Proto");
2149 cv_dump(cv, "To");
2150 );
2151
dd2155a4 2152 if (CvCONST(cv)) {
b5c19bd7
DM
2153 /* Constant sub () { $x } closing over $x - see lib/constant.pm:
2154 * The prototype was marked as a candiate for const-ization,
2155 * so try to grab the current const value, and if successful,
2156 * turn into a const sub:
2157 */
551405c4 2158 SV* const const_sv = op_const_sv(CvSTART(cv), cv);
b5c19bd7
DM
2159 if (const_sv) {
2160 SvREFCNT_dec(cv);
be8851fc
NC
2161 /* For this calling case, op_const_sv returns a *copy*, which we
2162 donate to newCONSTSUB. Yes, this is ugly, and should be killed.
2163 Need to fix how lib/constant.pm works to eliminate this. */
bd61b366 2164 cv = newCONSTSUB(CvSTASH(proto), NULL, const_sv);
b5c19bd7
DM
2165 }
2166 else {
2167 CvCONST_off(cv);
2168 }
dd2155a4
DM
2169 }
2170
2171 return cv;
2172}
2173
e07561e6
FC
2174CV *
2175Perl_cv_clone(pTHX_ CV *proto)
2176{
2177 PERL_ARGS_ASSERT_CV_CLONE;
2178
fead5351 2179 if (!CvPADLIST(proto)) Perl_croak(aTHX_ "panic: no pad in cv_clone");
e07561e6
FC
2180 return S_cv_clone(aTHX_ proto, NULL, NULL);
2181}
2182
6d5c2147
FC
2183/* Called only by pp_clonecv */
2184CV *
2185Perl_cv_clone_into(pTHX_ CV *proto, CV *target)
2186{
2187 PERL_ARGS_ASSERT_CV_CLONE_INTO;
2188 cv_undef(target);
2189 return S_cv_clone(aTHX_ proto, target, NULL);
2190}
2191
dd2155a4 2192/*
cc76b5cc 2193=for apidoc m|void|pad_fixup_inner_anons|PADLIST *padlist|CV *old_cv|CV *new_cv
dd2155a4
DM
2194
2195For any anon CVs in the pad, change CvOUTSIDE of that CV from
7dafbf52
DM
2196old_cv to new_cv if necessary. Needed when a newly-compiled CV has to be
2197moved to a pre-existing CV struct.
dd2155a4
DM
2198
2199=cut
2200*/
2201
2202void
2203Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv)
2204{
97aff369 2205 dVAR;
dd2155a4 2206 I32 ix;
86d2498c
FC
2207 AV * const comppad_name = PadlistARRAY(padlist)[0];
2208 AV * const comppad = PadlistARRAY(padlist)[1];
53c1dcc0
AL
2209 SV ** const namepad = AvARRAY(comppad_name);
2210 SV ** const curpad = AvARRAY(comppad);
7918f24d
NC
2211
2212 PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS;
294a48e9
AL
2213 PERL_UNUSED_ARG(old_cv);
2214
dd2155a4 2215 for (ix = AvFILLp(comppad_name); ix > 0; ix--) {
551405c4 2216 const SV * const namesv = namepad[ix];
09a30bc4 2217 if (namesv && namesv != &PL_sv_undef && !SvPAD_STATE(namesv)
b15aece3 2218 && *SvPVX_const(namesv) == '&')
dd2155a4 2219 {
e09ac076 2220 if (SvTYPE(curpad[ix]) == SVt_PVCV) {
0afba48f
FC
2221 MAGIC * const mg =
2222 SvMAGICAL(curpad[ix])
2223 ? mg_find(curpad[ix], PERL_MAGIC_proto)
2224 : NULL;
2225 CV * const innercv = MUTABLE_CV(mg ? mg->mg_obj : curpad[ix]);
2226 if (CvOUTSIDE(innercv) == old_cv) {
1f122f9b
FC
2227 if (!CvWEAKOUTSIDE(innercv)) {
2228 SvREFCNT_dec(old_cv);
2229 SvREFCNT_inc_simple_void_NN(new_cv);
2230 }
0afba48f
FC
2231 CvOUTSIDE(innercv) = new_cv;
2232 }
e09ac076
FC
2233 }
2234 else { /* format reference */
2235 SV * const rv = curpad[ix];
2236 CV *innercv;
2237 if (!SvOK(rv)) continue;
2238 assert(SvROK(rv));
2239 assert(SvWEAKREF(rv));
2240 innercv = (CV *)SvRV(rv);
2241 assert(!CvWEAKOUTSIDE(innercv));
2242 SvREFCNT_dec(CvOUTSIDE(innercv));
2243 CvOUTSIDE(innercv) = (CV *)SvREFCNT_inc_simple_NN(new_cv);
2244 }
dd2155a4
DM
2245 }
2246 }
2247}
2248
2249/*
cc76b5cc 2250=for apidoc m|void|pad_push|PADLIST *padlist|int depth
dd2155a4
DM
2251
2252Push a new pad frame onto the padlist, unless there's already a pad at
26019298
AL
2253this depth, in which case don't bother creating a new one. Then give
2254the new pad an @_ in slot zero.
dd2155a4
DM
2255
2256=cut
2257*/
2258
2259void
26019298 2260Perl_pad_push(pTHX_ PADLIST *padlist, int depth)
dd2155a4 2261{
97aff369 2262 dVAR;
7918f24d
NC
2263
2264 PERL_ARGS_ASSERT_PAD_PUSH;
2265
86d2498c
FC
2266 if (depth > PadlistMAX(padlist) || !PadlistARRAY(padlist)[depth]) {
2267 PAD** const svp = PadlistARRAY(padlist);
44f8325f
AL
2268 AV* const newpad = newAV();
2269 SV** const oldpad = AvARRAY(svp[depth-1]);
502c6561
NC
2270 I32 ix = AvFILLp((const AV *)svp[1]);
2271 const I32 names_fill = AvFILLp((const AV *)svp[0]);
44f8325f 2272 SV** const names = AvARRAY(svp[0]);
26019298
AL
2273 AV *av;
2274
dd2155a4
DM
2275 for ( ;ix > 0; ix--) {
2276 if (names_fill >= ix && names[ix] != &PL_sv_undef) {
b15aece3 2277 const char sigil = SvPVX_const(names[ix])[0];
fda94784
RGS
2278 if ((SvFLAGS(names[ix]) & SVf_FAKE)
2279 || (SvFLAGS(names[ix]) & SVpad_STATE)
2280 || sigil == '&')
2281 {
dd2155a4
DM
2282 /* outer lexical or anon code */
2283 av_store(newpad, ix, SvREFCNT_inc(oldpad[ix]));
2284 }
2285 else { /* our own lexical */
26019298
AL
2286 SV *sv;
2287 if (sigil == '@')
ad64d0ec 2288 sv = MUTABLE_SV(newAV());
26019298 2289 else if (sigil == '%')
ad64d0ec 2290 sv = MUTABLE_SV(newHV());
dd2155a4 2291 else
561b68a9 2292 sv = newSV(0);
26019298 2293 av_store(newpad, ix, sv);
dd2155a4
DM
2294 SvPADMY_on(sv);
2295 }
2296 }
2297 else if (IS_PADGV(oldpad[ix]) || IS_PADCONST(oldpad[ix])) {
f84c484e 2298 av_store(newpad, ix, SvREFCNT_inc_NN(oldpad[ix]));
dd2155a4
DM
2299 }
2300 else {
2301 /* save temporaries on recursion? */
561b68a9 2302 SV * const sv = newSV(0);
26019298 2303 av_store(newpad, ix, sv);
dd2155a4
DM
2304 SvPADTMP_on(sv);
2305 }
2306 }
26019298 2307 av = newAV();
ad64d0ec 2308 av_store(newpad, 0, MUTABLE_SV(av));
11ca45c0 2309 AvREIFY_only(av);
26019298 2310
7261499d 2311 padlist_store(padlist, depth, newpad);
dd2155a4
DM
2312 }
2313}
b21dc031 2314
cc76b5cc
Z
2315/*
2316=for apidoc Am|HV *|pad_compname_type|PADOFFSET po
2317
2318Looks up the type of the lexical variable at position I<po> in the
2319currently-compiling pad. If the variable is typed, the stash of the
2320class to which it is typed is returned. If not, C<NULL> is returned.
2321
2322=cut
2323*/
b21dc031
AL
2324
2325HV *
2326Perl_pad_compname_type(pTHX_ const PADOFFSET po)
2327{
97aff369 2328 dVAR;
551405c4 2329 SV* const * const av = av_fetch(PL_comppad_name, po, FALSE);
00b1698f 2330 if ( SvPAD_TYPED(*av) ) {
b21dc031
AL
2331 return SvSTASH(*av);
2332 }
5c284bb0 2333 return NULL;
b21dc031 2334}
66610fdd 2335
d5b1589c
NC
2336#if defined(USE_ITHREADS)
2337
2338# define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
2339
cc76b5cc 2340/*
b70d5558 2341=for apidoc padlist_dup
cc76b5cc
Z
2342
2343Duplicates a pad.
2344
2345=cut
2346*/
2347
b70d5558
FC
2348PADLIST *
2349Perl_padlist_dup(pTHX_ PADLIST *srcpad, CLONE_PARAMS *param)
d5b1589c 2350{
7261499d
FC
2351 PADLIST *dstpad;
2352 bool cloneall;
2353 PADOFFSET max;
2354
d5b1589c
NC
2355 PERL_ARGS_ASSERT_PADLIST_DUP;
2356
2357 if (!srcpad)
2358 return NULL;
2359
7261499d 2360 cloneall = param->flags & CLONEf_COPY_STACKS
86d2498c
FC
2361 || SvREFCNT(PadlistARRAY(srcpad)[1]) > 1;
2362 assert (SvREFCNT(PadlistARRAY(srcpad)[1]) == 1);
7261499d 2363
86d2498c 2364 max = cloneall ? PadlistMAX(srcpad) : 1;
7261499d
FC
2365
2366 Newx(dstpad, 1, PADLIST);
2367 ptr_table_store(PL_ptr_table, srcpad, dstpad);
86d2498c
FC
2368 PadlistMAX(dstpad) = max;
2369 Newx(PadlistARRAY(dstpad), max + 1, PAD *);
7261499d
FC
2370
2371 if (cloneall) {
2372 PADOFFSET depth;
2373 for (depth = 0; depth <= max; ++depth)
86d2498c
FC
2374 PadlistARRAY(dstpad)[depth] =
2375 av_dup_inc(PadlistARRAY(srcpad)[depth], param);
6de654a5
NC
2376 } else {
2377 /* CvDEPTH() on our subroutine will be set to 0, so there's no need
2378 to build anything other than the first level of pads. */
86d2498c 2379 I32 ix = AvFILLp(PadlistARRAY(srcpad)[1]);
6de654a5 2380 AV *pad1;
86d2498c
FC
2381 const I32 names_fill = AvFILLp(PadlistARRAY(srcpad)[0]);
2382 const PAD *const srcpad1 = PadlistARRAY(srcpad)[1];
6de654a5
NC
2383 SV **oldpad = AvARRAY(srcpad1);
2384 SV **names;
2385 SV **pad1a;
2386 AV *args;
6de654a5 2387
86d2498c
FC
2388 PadlistARRAY(dstpad)[0] =
2389 av_dup_inc(PadlistARRAY(srcpad)[0], param);
2390 names = AvARRAY(PadlistARRAY(dstpad)[0]);
6de654a5
NC
2391
2392 pad1 = newAV();
2393
2394 av_extend(pad1, ix);
86d2498c 2395 PadlistARRAY(dstpad)[1] = pad1;
6de654a5 2396 pad1a = AvARRAY(pad1);
6de654a5
NC
2397
2398 if (ix > -1) {
2399 AvFILLp(pad1) = ix;
2400
2401 for ( ;ix > 0; ix--) {
05d04d9c
NC
2402 if (!oldpad[ix]) {
2403 pad1a[ix] = NULL;
2404 } else if (names_fill >= ix && names[ix] != &PL_sv_undef) {
2405 const char sigil = SvPVX_const(names[ix])[0];
2406 if ((SvFLAGS(names[ix]) & SVf_FAKE)
2407 || (SvFLAGS(names[ix]) & SVpad_STATE)
2408 || sigil == '&')
2409 {
2410 /* outer lexical or anon code */
2411 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2412 }
2413 else { /* our own lexical */
adf8f095
NC
2414 if(SvPADSTALE(oldpad[ix]) && SvREFCNT(oldpad[ix]) > 1) {
2415 /* This is a work around for how the current
2416 implementation of ?{ } blocks in regexps
2417 interacts with lexicals. */
05d04d9c
NC
2418 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2419 } else {
2420 SV *sv;
2421
2422 if (sigil == '@')
2423 sv = MUTABLE_SV(newAV());
2424 else if (sigil == '%')
2425 sv = MUTABLE_SV(newHV());
2426 else
2427 sv = newSV(0);
2428 pad1a[ix] = sv;
2429 SvPADMY_on(sv);
2430 }
2431 }
2432 }
2433 else if (IS_PADGV(oldpad[ix]) || IS_PADCONST(oldpad[ix])) {
2434 pad1a[ix] = sv_dup_inc(oldpad[ix], param);
2435 }
2436 else {
2437 /* save temporaries on recursion? */
2438 SV * const sv = newSV(0);
2439 pad1a[ix] = sv;
2440
2441 /* SvREFCNT(oldpad[ix]) != 1 for some code in threads.xs
2442 FIXTHAT before merging this branch.
2443 (And I know how to) */
2444 if (SvPADMY(oldpad[ix]))
2445 SvPADMY_on(sv);
2446 else
2447 SvPADTMP_on(sv);
2448 }
6de654a5
NC
2449 }
2450
2451 if (oldpad[0]) {
2452 args = newAV(); /* Will be @_ */
2453 AvREIFY_only(args);
2454 pad1a[0] = (SV *)args;
2455 }
2456 }
2457 }
d5b1589c
NC
2458
2459 return dstpad;
2460}
2461
cc76b5cc 2462#endif /* USE_ITHREADS */
d5b1589c 2463
7261499d 2464PAD **
5aaab254 2465Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val)
7261499d
FC
2466{
2467 dVAR;
2468 PAD **ary;
86d2498c 2469 SSize_t const oldmax = PadlistMAX(padlist);
7261499d
FC
2470
2471 PERL_ARGS_ASSERT_PADLIST_STORE;
2472
2473 assert(key >= 0);
2474
86d2498c
FC
2475 if (key > PadlistMAX(padlist)) {
2476 av_extend_guts(NULL,key,&PadlistMAX(padlist),
2477 (SV ***)&PadlistARRAY(padlist),
2478 (SV ***)&PadlistARRAY(padlist));
2479 Zero(PadlistARRAY(padlist)+oldmax+1, PadlistMAX(padlist)-oldmax,
7261499d
FC
2480 PAD *);
2481 }
86d2498c 2482 ary = PadlistARRAY(padlist);
7261499d
FC
2483 SvREFCNT_dec(ary[key]);
2484 ary[key] = val;
2485 return &ary[key];
2486}
2487
66610fdd
RGS
2488/*
2489 * Local variables:
2490 * c-indentation-style: bsd
2491 * c-basic-offset: 4
14d04a33 2492 * indent-tabs-mode: nil
66610fdd
RGS
2493 * End:
2494 *
14d04a33 2495 * ex: set ts=8 sts=4 sw=4 et:
37442d52 2496 */