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