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