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