Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* gv.c |
79072805 | 2 | * |
1129b882 | 3 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
67fbe0e1 | 4 | * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others |
79072805 LW |
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. | |
8 | * | |
a0d0e21e LW |
9 | */ |
10 | ||
11 | /* | |
12 | * 'Mercy!' cried Gandalf. 'If the giving of information is to be the cure | |
4ac71550 | 13 | * of your inquisitiveness, I shall spend all the rest of my days in answering |
a0d0e21e LW |
14 | * you. What more do you want to know?' |
15 | * 'The names of all the stars, and of all living things, and the whole | |
16 | * history of Middle-earth and Over-heaven and of the Sundering Seas,' | |
17 | * laughed Pippin. | |
4ac71550 TC |
18 | * |
19 | * [p.599 of _The Lord of the Rings_, III/xi: "The PalantÃr"] | |
79072805 LW |
20 | */ |
21 | ||
ccfc67b7 JH |
22 | /* |
23 | =head1 GV Functions | |
166f8a29 DM |
24 | |
25 | A GV is a structure which corresponds to to a Perl typeglob, ie *foo. | |
26 | It is a structure that holds a pointer to a scalar, an array, a hash etc, | |
27 | corresponding to $foo, @foo, %foo. | |
28 | ||
29 | GVs are usually found as values in stashes (symbol table hashes) where | |
30 | Perl stores its global variables. | |
31 | ||
32 | =cut | |
ccfc67b7 JH |
33 | */ |
34 | ||
79072805 | 35 | #include "EXTERN.h" |
864dbfa3 | 36 | #define PERL_IN_GV_C |
79072805 | 37 | #include "perl.h" |
8261f8eb | 38 | #include "overload.c" |
79072805 | 39 | |
f54cb97a AL |
40 | static const char S_autoload[] = "AUTOLOAD"; |
41 | static const STRLEN S_autolen = sizeof(S_autoload)-1; | |
5c7983e5 | 42 | |
c69033f2 | 43 | GV * |
d5713896 | 44 | Perl_gv_add_by_type(pTHX_ GV *gv, svtype type) |
c69033f2 | 45 | { |
d5713896 | 46 | SV **where; |
7918f24d | 47 | |
13be902c FC |
48 | if ( |
49 | !gv | |
50 | || ( | |
51 | SvTYPE((const SV *)gv) != SVt_PVGV | |
52 | && SvTYPE((const SV *)gv) != SVt_PVLV | |
53 | ) | |
54 | ) { | |
bb85b28a NC |
55 | const char *what; |
56 | if (type == SVt_PVIO) { | |
57 | /* | |
58 | * if it walks like a dirhandle, then let's assume that | |
59 | * this is a dirhandle. | |
60 | */ | |
61 | what = PL_op->op_type == OP_READDIR || | |
62 | PL_op->op_type == OP_TELLDIR || | |
63 | PL_op->op_type == OP_SEEKDIR || | |
64 | PL_op->op_type == OP_REWINDDIR || | |
65 | PL_op->op_type == OP_CLOSEDIR ? | |
66 | "dirhandle" : "filehandle"; | |
67 | /* diag_listed_as: Bad symbol for filehandle */ | |
68 | } else if (type == SVt_PVHV) { | |
69 | what = "hash"; | |
70 | } else { | |
71 | what = type == SVt_PVAV ? "array" : "scalar"; | |
72 | } | |
73 | Perl_croak(aTHX_ "Bad symbol for %s", what); | |
74 | } | |
d5713896 NC |
75 | |
76 | if (type == SVt_PVHV) { | |
77 | where = (SV **)&GvHV(gv); | |
78 | } else if (type == SVt_PVAV) { | |
79 | where = (SV **)&GvAV(gv); | |
bb85b28a NC |
80 | } else if (type == SVt_PVIO) { |
81 | where = (SV **)&GvIOp(gv); | |
d5713896 NC |
82 | } else { |
83 | where = &GvSV(gv); | |
84 | } | |
7918f24d | 85 | |
d5713896 NC |
86 | if (!*where) |
87 | *where = newSV_type(type); | |
79072805 LW |
88 | return gv; |
89 | } | |
90 | ||
91 | GV * | |
864dbfa3 | 92 | Perl_gv_fetchfile(pTHX_ const char *name) |
79072805 | 93 | { |
7918f24d | 94 | PERL_ARGS_ASSERT_GV_FETCHFILE; |
d9095cec NC |
95 | return gv_fetchfile_flags(name, strlen(name), 0); |
96 | } | |
97 | ||
98 | GV * | |
99 | Perl_gv_fetchfile_flags(pTHX_ const char *const name, const STRLEN namelen, | |
100 | const U32 flags) | |
101 | { | |
97aff369 | 102 | dVAR; |
4116122e | 103 | char smallbuf[128]; |
53d95988 | 104 | char *tmpbuf; |
d9095cec | 105 | const STRLEN tmplen = namelen + 2; |
79072805 LW |
106 | GV *gv; |
107 | ||
7918f24d | 108 | PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS; |
d9095cec NC |
109 | PERL_UNUSED_ARG(flags); |
110 | ||
1d7c1841 | 111 | if (!PL_defstash) |
a0714e2c | 112 | return NULL; |
1d7c1841 | 113 | |
d9095cec | 114 | if (tmplen <= sizeof smallbuf) |
53d95988 CS |
115 | tmpbuf = smallbuf; |
116 | else | |
798b63bc | 117 | Newx(tmpbuf, tmplen, char); |
0ac0412a | 118 | /* This is where the debugger's %{"::_<$filename"} hash is created */ |
53d95988 CS |
119 | tmpbuf[0] = '_'; |
120 | tmpbuf[1] = '<'; | |
d9095cec NC |
121 | memcpy(tmpbuf + 2, name, namelen); |
122 | gv = *(GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, TRUE); | |
1d7c1841 | 123 | if (!isGV(gv)) { |
d9095cec | 124 | gv_init(gv, PL_defstash, tmpbuf, tmplen, FALSE); |
c69033f2 | 125 | #ifdef PERL_DONT_CREATE_GVSV |
d9095cec | 126 | GvSV(gv) = newSVpvn(name, namelen); |
c69033f2 | 127 | #else |
d9095cec | 128 | sv_setpvn(GvSV(gv), name, namelen); |
c69033f2 | 129 | #endif |
1d7c1841 | 130 | } |
5a9a79a4 FC |
131 | if ((PERLDB_LINE || PERLDB_SAVESRC) && !GvAV(gv)) |
132 | hv_magic(GvHVn(gv_AVadd(gv)), NULL, PERL_MAGIC_dbfile); | |
53d95988 CS |
133 | if (tmpbuf != smallbuf) |
134 | Safefree(tmpbuf); | |
79072805 LW |
135 | return gv; |
136 | } | |
137 | ||
62d55b22 NC |
138 | /* |
139 | =for apidoc gv_const_sv | |
140 | ||
141 | If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for | |
142 | inlining, or C<gv> is a placeholder reference that would be promoted to such | |
143 | a typeglob, then returns the value returned by the sub. Otherwise, returns | |
144 | NULL. | |
145 | ||
146 | =cut | |
147 | */ | |
148 | ||
149 | SV * | |
150 | Perl_gv_const_sv(pTHX_ GV *gv) | |
151 | { | |
7918f24d NC |
152 | PERL_ARGS_ASSERT_GV_CONST_SV; |
153 | ||
62d55b22 NC |
154 | if (SvTYPE(gv) == SVt_PVGV) |
155 | return cv_const_sv(GvCVu(gv)); | |
156 | return SvROK(gv) ? SvRV(gv) : NULL; | |
157 | } | |
158 | ||
12816592 NC |
159 | GP * |
160 | Perl_newGP(pTHX_ GV *const gv) | |
161 | { | |
162 | GP *gp; | |
19bad673 NC |
163 | U32 hash; |
164 | #ifdef USE_ITHREADS | |
1df5f7c1 NC |
165 | const char *const file |
166 | = (PL_curcop && CopFILE(PL_curcop)) ? CopFILE(PL_curcop) : ""; | |
19bad673 NC |
167 | const STRLEN len = strlen(file); |
168 | #else | |
169 | SV *const temp_sv = CopFILESV(PL_curcop); | |
170 | const char *file; | |
171 | STRLEN len; | |
172 | ||
7918f24d NC |
173 | PERL_ARGS_ASSERT_NEWGP; |
174 | ||
19bad673 NC |
175 | if (temp_sv) { |
176 | file = SvPVX(temp_sv); | |
177 | len = SvCUR(temp_sv); | |
178 | } else { | |
179 | file = ""; | |
180 | len = 0; | |
181 | } | |
182 | #endif | |
f4890806 NC |
183 | |
184 | PERL_HASH(hash, file, len); | |
185 | ||
12816592 NC |
186 | Newxz(gp, 1, GP); |
187 | ||
188 | #ifndef PERL_DONT_CREATE_GVSV | |
b5c2dcb8 | 189 | gp->gp_sv = newSV(0); |
12816592 NC |
190 | #endif |
191 | ||
1df5f7c1 | 192 | gp->gp_line = PL_curcop ? CopLINE(PL_curcop) : 0; |
12816592 NC |
193 | /* XXX Ideally this cast would be replaced with a change to const char* |
194 | in the struct. */ | |
f4890806 | 195 | gp->gp_file_hek = share_hek(file, len, hash); |
12816592 NC |
196 | gp->gp_egv = gv; |
197 | gp->gp_refcnt = 1; | |
198 | ||
199 | return gp; | |
200 | } | |
201 | ||
803f2748 DM |
202 | /* Assign CvGV(cv) = gv, handling weak references. |
203 | * See also S_anonymise_cv_maybe */ | |
204 | ||
205 | void | |
206 | Perl_cvgv_set(pTHX_ CV* cv, GV* gv) | |
207 | { | |
208 | GV * const oldgv = CvGV(cv); | |
209 | PERL_ARGS_ASSERT_CVGV_SET; | |
210 | ||
211 | if (oldgv == gv) | |
212 | return; | |
213 | ||
214 | if (oldgv) { | |
cfc1e951 | 215 | if (CvCVGV_RC(cv)) { |
803f2748 | 216 | SvREFCNT_dec(oldgv); |
cfc1e951 DM |
217 | CvCVGV_RC_off(cv); |
218 | } | |
803f2748 | 219 | else { |
803f2748 DM |
220 | sv_del_backref(MUTABLE_SV(oldgv), MUTABLE_SV(cv)); |
221 | } | |
222 | } | |
223 | ||
b3f91e91 | 224 | SvANY(cv)->xcv_gv = gv; |
c794ca97 | 225 | assert(!CvCVGV_RC(cv)); |
803f2748 DM |
226 | |
227 | if (!gv) | |
228 | return; | |
229 | ||
c794ca97 DM |
230 | if (isGV_with_GP(gv) && GvGP(gv) && (GvCV(gv) == cv || GvFORM(gv) == cv)) |
231 | Perl_sv_add_backref(aTHX_ MUTABLE_SV(gv), MUTABLE_SV(cv)); | |
232 | else { | |
cfc1e951 | 233 | CvCVGV_RC_on(cv); |
803f2748 DM |
234 | SvREFCNT_inc_simple_void_NN(gv); |
235 | } | |
803f2748 DM |
236 | } |
237 | ||
c68d9564 Z |
238 | /* Assign CvSTASH(cv) = st, handling weak references. */ |
239 | ||
240 | void | |
241 | Perl_cvstash_set(pTHX_ CV *cv, HV *st) | |
242 | { | |
243 | HV *oldst = CvSTASH(cv); | |
244 | PERL_ARGS_ASSERT_CVSTASH_SET; | |
245 | if (oldst == st) | |
246 | return; | |
247 | if (oldst) | |
248 | sv_del_backref(MUTABLE_SV(oldst), MUTABLE_SV(cv)); | |
249 | SvANY(cv)->xcv_stash = st; | |
250 | if (st) | |
251 | Perl_sv_add_backref(aTHX_ MUTABLE_SV(st), MUTABLE_SV(cv)); | |
252 | } | |
803f2748 | 253 | |
463ee0b2 | 254 | void |
864dbfa3 | 255 | Perl_gv_init(pTHX_ GV *gv, HV *stash, const char *name, STRLEN len, int multi) |
463ee0b2 | 256 | { |
27da23d5 | 257 | dVAR; |
3b6733bf NC |
258 | const U32 old_type = SvTYPE(gv); |
259 | const bool doproto = old_type > SVt_NULL; | |
024963f8 | 260 | char * const proto = (doproto && SvPOK(gv)) ? SvPVX(gv) : NULL; |
49a54bbe | 261 | const STRLEN protolen = proto ? SvCUR(gv) : 0; |
756cb477 | 262 | SV *const has_constant = doproto && SvROK(gv) ? SvRV(gv) : NULL; |
1ccdb730 | 263 | const U32 exported_constant = has_constant ? SvPCS_IMPORTED(gv) : 0; |
756cb477 | 264 | |
7918f24d | 265 | PERL_ARGS_ASSERT_GV_INIT; |
756cb477 NC |
266 | assert (!(proto && has_constant)); |
267 | ||
268 | if (has_constant) { | |
5c1f4d79 NC |
269 | /* The constant has to be a simple scalar type. */ |
270 | switch (SvTYPE(has_constant)) { | |
271 | case SVt_PVAV: | |
272 | case SVt_PVHV: | |
273 | case SVt_PVCV: | |
274 | case SVt_PVFM: | |
275 | case SVt_PVIO: | |
276 | Perl_croak(aTHX_ "Cannot convert a reference to %s to typeglob", | |
277 | sv_reftype(has_constant, 0)); | |
42d0e0b7 | 278 | default: NOOP; |
5c1f4d79 | 279 | } |
756cb477 NC |
280 | SvRV_set(gv, NULL); |
281 | SvROK_off(gv); | |
282 | } | |
463ee0b2 | 283 | |
3b6733bf NC |
284 | |
285 | if (old_type < SVt_PVGV) { | |
286 | if (old_type >= SVt_PV) | |
287 | SvCUR_set(gv, 0); | |
ad64d0ec | 288 | sv_upgrade(MUTABLE_SV(gv), SVt_PVGV); |
3b6733bf | 289 | } |
55d729e4 GS |
290 | if (SvLEN(gv)) { |
291 | if (proto) { | |
f880fe2f | 292 | SvPV_set(gv, NULL); |
b162af07 | 293 | SvLEN_set(gv, 0); |
55d729e4 GS |
294 | SvPOK_off(gv); |
295 | } else | |
94010e71 | 296 | Safefree(SvPVX_mutable(gv)); |
55d729e4 | 297 | } |
2e5b91de NC |
298 | SvIOK_off(gv); |
299 | isGV_with_GP_on(gv); | |
12816592 | 300 | |
c43ae56f | 301 | GvGP_set(gv, Perl_newGP(aTHX_ gv)); |
e15faf7d NC |
302 | GvSTASH(gv) = stash; |
303 | if (stash) | |
ad64d0ec | 304 | Perl_sv_add_backref(aTHX_ MUTABLE_SV(stash), MUTABLE_SV(gv)); |
ae8cc45f | 305 | gv_name_set(gv, name, len, GV_ADD); |
23ad5bf5 | 306 | if (multi || doproto) /* doproto means it _was_ mentioned */ |
a5f75d66 | 307 | GvMULTI_on(gv); |
55d729e4 | 308 | if (doproto) { /* Replicate part of newSUB here. */ |
e3d2b9e7 | 309 | CV *cv; |
55d729e4 | 310 | ENTER; |
756cb477 | 311 | if (has_constant) { |
e5c69c9b DM |
312 | char *name0 = NULL; |
313 | if (name[len]) | |
314 | /* newCONSTSUB doesn't take a len arg, so make sure we | |
315 | * give it a \0-terminated string */ | |
316 | name0 = savepvn(name,len); | |
317 | ||
756cb477 | 318 | /* newCONSTSUB takes ownership of the reference from us. */ |
e5c69c9b | 319 | cv = newCONSTSUB(stash, (name0 ? name0 : name), has_constant); |
75bd28cf FC |
320 | /* In case op.c:S_process_special_blocks stole it: */ |
321 | if (!GvCV(gv)) | |
c43ae56f | 322 | GvCV_set(gv, (CV *)SvREFCNT_inc_simple_NN(cv)); |
439cdf38 | 323 | assert(GvCV(gv) == cv); /* newCONSTSUB should have set this */ |
e5c69c9b DM |
324 | if (name0) |
325 | Safefree(name0); | |
1ccdb730 NC |
326 | /* If this reference was a copy of another, then the subroutine |
327 | must have been "imported", by a Perl space assignment to a GV | |
328 | from a reference to CV. */ | |
329 | if (exported_constant) | |
330 | GvIMPORTED_CV_on(gv); | |
756cb477 | 331 | } else { |
756cb477 | 332 | (void) start_subparse(0,0); /* Create empty CV in compcv. */ |
e3d2b9e7 | 333 | cv = PL_compcv; |
c43ae56f | 334 | GvCV_set(gv,cv); |
756cb477 | 335 | } |
55d729e4 GS |
336 | LEAVE; |
337 | ||
e1a479c5 | 338 | mro_method_changed_in(GvSTASH(gv)); /* sub Foo::bar($) { (shift) } sub ASDF::baz($); *ASDF::baz = \&Foo::bar */ |
b3f91e91 | 339 | CvGV_set(cv, gv); |
e3d2b9e7 | 340 | CvFILE_set_from_cop(cv, PL_curcop); |
c68d9564 | 341 | CvSTASH_set(cv, PL_curstash); |
55d729e4 | 342 | if (proto) { |
e3d2b9e7 | 343 | sv_usepvn_flags(MUTABLE_SV(cv), proto, protolen, |
49a54bbe | 344 | SV_HAS_TRAILING_NUL); |
55d729e4 GS |
345 | } |
346 | } | |
463ee0b2 LW |
347 | } |
348 | ||
76e3520e | 349 | STATIC void |
fe9845cc | 350 | S_gv_init_sv(pTHX_ GV *gv, const svtype sv_type) |
a0d0e21e | 351 | { |
7918f24d NC |
352 | PERL_ARGS_ASSERT_GV_INIT_SV; |
353 | ||
a0d0e21e LW |
354 | switch (sv_type) { |
355 | case SVt_PVIO: | |
356 | (void)GvIOn(gv); | |
357 | break; | |
358 | case SVt_PVAV: | |
359 | (void)GvAVn(gv); | |
360 | break; | |
361 | case SVt_PVHV: | |
362 | (void)GvHVn(gv); | |
363 | break; | |
c69033f2 NC |
364 | #ifdef PERL_DONT_CREATE_GVSV |
365 | case SVt_NULL: | |
366 | case SVt_PVCV: | |
367 | case SVt_PVFM: | |
e654831b | 368 | case SVt_PVGV: |
c69033f2 NC |
369 | break; |
370 | default: | |
dbdce04c NC |
371 | if(GvSVn(gv)) { |
372 | /* Work round what appears to be a bug in Sun C++ 5.8 2005/10/13 | |
373 | If we just cast GvSVn(gv) to void, it ignores evaluating it for | |
374 | its side effect */ | |
375 | } | |
c69033f2 | 376 | #endif |
a0d0e21e LW |
377 | } |
378 | } | |
379 | ||
954c1994 GS |
380 | /* |
381 | =for apidoc gv_fetchmeth | |
382 | ||
383 | Returns the glob with the given C<name> and a defined subroutine or | |
384 | C<NULL>. The glob lives in the given C<stash>, or in the stashes | |
07766739 | 385 | accessible via @ISA and UNIVERSAL::. |
954c1994 GS |
386 | |
387 | The argument C<level> should be either 0 or -1. If C<level==0>, as a | |
388 | side-effect creates a glob with the given C<name> in the given C<stash> | |
389 | which in the case of success contains an alias for the subroutine, and sets | |
e1a479c5 | 390 | up caching info for this glob. |
954c1994 GS |
391 | |
392 | This function grants C<"SUPER"> token as a postfix of the stash name. The | |
393 | GV returned from C<gv_fetchmeth> may be a method cache entry, which is not | |
4929bf7b | 394 | visible to Perl code. So when calling C<call_sv>, you should not use |
954c1994 | 395 | the GV directly; instead, you should use the method's CV, which can be |
b267980d | 396 | obtained from the GV with the C<GvCV> macro. |
954c1994 GS |
397 | |
398 | =cut | |
399 | */ | |
400 | ||
e1a479c5 BB |
401 | /* NOTE: No support for tied ISA */ |
402 | ||
79072805 | 403 | GV * |
864dbfa3 | 404 | Perl_gv_fetchmeth(pTHX_ HV *stash, const char *name, STRLEN len, I32 level) |
79072805 | 405 | { |
97aff369 | 406 | dVAR; |
463ee0b2 | 407 | GV** gvp; |
e1a479c5 BB |
408 | AV* linear_av; |
409 | SV** linear_svp; | |
410 | SV* linear_sv; | |
411 | HV* cstash; | |
412 | GV* candidate = NULL; | |
413 | CV* cand_cv = NULL; | |
414 | CV* old_cv; | |
415 | GV* topgv = NULL; | |
bfcb3514 | 416 | const char *hvname; |
e1a479c5 BB |
417 | I32 create = (level >= 0) ? 1 : 0; |
418 | I32 items; | |
419 | STRLEN packlen; | |
420 | U32 topgen_cmp; | |
a0d0e21e | 421 | |
7918f24d NC |
422 | PERL_ARGS_ASSERT_GV_FETCHMETH; |
423 | ||
af09ea45 IK |
424 | /* UNIVERSAL methods should be callable without a stash */ |
425 | if (!stash) { | |
e1a479c5 | 426 | create = 0; /* probably appropriate */ |
da51bb9b | 427 | if(!(stash = gv_stashpvs("UNIVERSAL", 0))) |
af09ea45 IK |
428 | return 0; |
429 | } | |
430 | ||
e1a479c5 BB |
431 | assert(stash); |
432 | ||
bfcb3514 NC |
433 | hvname = HvNAME_get(stash); |
434 | if (!hvname) | |
e1a479c5 | 435 | Perl_croak(aTHX_ "Can't use anonymous symbol table for method lookup"); |
e27ad1f2 | 436 | |
e1a479c5 BB |
437 | assert(hvname); |
438 | assert(name); | |
463ee0b2 | 439 | |
bfcb3514 | 440 | DEBUG_o( Perl_deb(aTHX_ "Looking for method %s in package %s\n",name,hvname) ); |
44a8e56a | 441 | |
dd69841b | 442 | topgen_cmp = HvMROMETA(stash)->cache_gen + PL_sub_generation; |
e1a479c5 BB |
443 | |
444 | /* check locally for a real method or a cache entry */ | |
445 | gvp = (GV**)hv_fetch(stash, name, len, create); | |
446 | if(gvp) { | |
447 | topgv = *gvp; | |
448 | assert(topgv); | |
449 | if (SvTYPE(topgv) != SVt_PVGV) | |
450 | gv_init(topgv, stash, name, len, TRUE); | |
451 | if ((cand_cv = GvCV(topgv))) { | |
452 | /* If genuine method or valid cache entry, use it */ | |
453 | if (!GvCVGEN(topgv) || GvCVGEN(topgv) == topgen_cmp) { | |
454 | return topgv; | |
455 | } | |
456 | else { | |
457 | /* stale cache entry, junk it and move on */ | |
458 | SvREFCNT_dec(cand_cv); | |
c43ae56f DM |
459 | GvCV_set(topgv, NULL); |
460 | cand_cv = NULL; | |
e1a479c5 BB |
461 | GvCVGEN(topgv) = 0; |
462 | } | |
463 | } | |
464 | else if (GvCVGEN(topgv) == topgen_cmp) { | |
465 | /* cache indicates no such method definitively */ | |
466 | return 0; | |
467 | } | |
463ee0b2 | 468 | } |
79072805 | 469 | |
e1a479c5 BB |
470 | packlen = HvNAMELEN_get(stash); |
471 | if (packlen >= 7 && strEQ(hvname + packlen - 7, "::SUPER")) { | |
472 | HV* basestash; | |
473 | packlen -= 7; | |
474 | basestash = gv_stashpvn(hvname, packlen, GV_ADD); | |
475 | linear_av = mro_get_linear_isa(basestash); | |
9607fc9c | 476 | } |
e1a479c5 BB |
477 | else { |
478 | linear_av = mro_get_linear_isa(stash); /* has ourselves at the top of the list */ | |
79072805 | 479 | } |
a0d0e21e | 480 | |
e1a479c5 BB |
481 | linear_svp = AvARRAY(linear_av) + 1; /* skip over self */ |
482 | items = AvFILLp(linear_av); /* no +1, to skip over self */ | |
483 | while (items--) { | |
484 | linear_sv = *linear_svp++; | |
485 | assert(linear_sv); | |
486 | cstash = gv_stashsv(linear_sv, 0); | |
487 | ||
dd69841b | 488 | if (!cstash) { |
a2a5de95 NC |
489 | Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Can't locate package %"SVf" for @%s::ISA", |
490 | SVfARG(linear_sv), hvname); | |
e1a479c5 BB |
491 | continue; |
492 | } | |
9607fc9c | 493 | |
e1a479c5 BB |
494 | assert(cstash); |
495 | ||
496 | gvp = (GV**)hv_fetch(cstash, name, len, 0); | |
497 | if (!gvp) continue; | |
498 | candidate = *gvp; | |
499 | assert(candidate); | |
500 | if (SvTYPE(candidate) != SVt_PVGV) gv_init(candidate, cstash, name, len, TRUE); | |
501 | if (SvTYPE(candidate) == SVt_PVGV && (cand_cv = GvCV(candidate)) && !GvCVGEN(candidate)) { | |
502 | /* | |
503 | * Found real method, cache method in topgv if: | |
504 | * 1. topgv has no synonyms (else inheritance crosses wires) | |
505 | * 2. method isn't a stub (else AUTOLOAD fails spectacularly) | |
506 | */ | |
507 | if (topgv && (GvREFCNT(topgv) == 1) && (CvROOT(cand_cv) || CvXSUB(cand_cv))) { | |
508 | if ((old_cv = GvCV(topgv))) SvREFCNT_dec(old_cv); | |
509 | SvREFCNT_inc_simple_void_NN(cand_cv); | |
c43ae56f | 510 | GvCV_set(topgv, cand_cv); |
e1a479c5 BB |
511 | GvCVGEN(topgv) = topgen_cmp; |
512 | } | |
513 | return candidate; | |
514 | } | |
515 | } | |
9607fc9c | 516 | |
e1a479c5 BB |
517 | /* Check UNIVERSAL without caching */ |
518 | if(level == 0 || level == -1) { | |
519 | candidate = gv_fetchmeth(NULL, name, len, 1); | |
520 | if(candidate) { | |
521 | cand_cv = GvCV(candidate); | |
522 | if (topgv && (GvREFCNT(topgv) == 1) && (CvROOT(cand_cv) || CvXSUB(cand_cv))) { | |
523 | if ((old_cv = GvCV(topgv))) SvREFCNT_dec(old_cv); | |
524 | SvREFCNT_inc_simple_void_NN(cand_cv); | |
c43ae56f | 525 | GvCV_set(topgv, cand_cv); |
e1a479c5 BB |
526 | GvCVGEN(topgv) = topgen_cmp; |
527 | } | |
528 | return candidate; | |
529 | } | |
530 | } | |
531 | ||
532 | if (topgv && GvREFCNT(topgv) == 1) { | |
533 | /* cache the fact that the method is not defined */ | |
534 | GvCVGEN(topgv) = topgen_cmp; | |
a0d0e21e LW |
535 | } |
536 | ||
79072805 LW |
537 | return 0; |
538 | } | |
539 | ||
954c1994 | 540 | /* |
611c1e95 IZ |
541 | =for apidoc gv_fetchmeth_autoload |
542 | ||
543 | Same as gv_fetchmeth(), but looks for autoloaded subroutines too. | |
544 | Returns a glob for the subroutine. | |
545 | ||
546 | For an autoloaded subroutine without a GV, will create a GV even | |
547 | if C<level < 0>. For an autoloaded subroutine without a stub, GvCV() | |
548 | of the result may be zero. | |
549 | ||
550 | =cut | |
551 | */ | |
552 | ||
553 | GV * | |
554 | Perl_gv_fetchmeth_autoload(pTHX_ HV *stash, const char *name, STRLEN len, I32 level) | |
555 | { | |
556 | GV *gv = gv_fetchmeth(stash, name, len, level); | |
557 | ||
7918f24d NC |
558 | PERL_ARGS_ASSERT_GV_FETCHMETH_AUTOLOAD; |
559 | ||
611c1e95 | 560 | if (!gv) { |
611c1e95 IZ |
561 | CV *cv; |
562 | GV **gvp; | |
563 | ||
564 | if (!stash) | |
6136c704 | 565 | return NULL; /* UNIVERSAL::AUTOLOAD could cause trouble */ |
7edbdc6b | 566 | if (len == S_autolen && memEQ(name, S_autoload, S_autolen)) |
6136c704 | 567 | return NULL; |
5c7983e5 | 568 | if (!(gv = gv_fetchmeth(stash, S_autoload, S_autolen, FALSE))) |
6136c704 | 569 | return NULL; |
611c1e95 IZ |
570 | cv = GvCV(gv); |
571 | if (!(CvROOT(cv) || CvXSUB(cv))) | |
6136c704 | 572 | return NULL; |
611c1e95 IZ |
573 | /* Have an autoload */ |
574 | if (level < 0) /* Cannot do without a stub */ | |
575 | gv_fetchmeth(stash, name, len, 0); | |
576 | gvp = (GV**)hv_fetch(stash, name, len, (level >= 0)); | |
577 | if (!gvp) | |
6136c704 | 578 | return NULL; |
611c1e95 IZ |
579 | return *gvp; |
580 | } | |
581 | return gv; | |
582 | } | |
583 | ||
584 | /* | |
954c1994 GS |
585 | =for apidoc gv_fetchmethod_autoload |
586 | ||
587 | Returns the glob which contains the subroutine to call to invoke the method | |
588 | on the C<stash>. In fact in the presence of autoloading this may be the | |
589 | glob for "AUTOLOAD". In this case the corresponding variable $AUTOLOAD is | |
b267980d | 590 | already setup. |
954c1994 GS |
591 | |
592 | The third parameter of C<gv_fetchmethod_autoload> determines whether | |
593 | AUTOLOAD lookup is performed if the given method is not present: non-zero | |
b267980d | 594 | means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD. |
954c1994 | 595 | Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload> |
b267980d | 596 | with a non-zero C<autoload> parameter. |
954c1994 GS |
597 | |
598 | These functions grant C<"SUPER"> token as a prefix of the method name. Note | |
599 | that if you want to keep the returned glob for a long time, you need to | |
600 | check for it being "AUTOLOAD", since at the later time the call may load a | |
601 | different subroutine due to $AUTOLOAD changing its value. Use the glob | |
b267980d | 602 | created via a side effect to do this. |
954c1994 GS |
603 | |
604 | These functions have the same side-effects and as C<gv_fetchmeth> with | |
605 | C<level==0>. C<name> should be writable if contains C<':'> or C<' | |
606 | ''>. The warning against passing the GV returned by C<gv_fetchmeth> to | |
b267980d | 607 | C<call_sv> apply equally to these functions. |
954c1994 GS |
608 | |
609 | =cut | |
610 | */ | |
611 | ||
7d3b1f61 BB |
612 | STATIC HV* |
613 | S_gv_get_super_pkg(pTHX_ const char* name, I32 namelen) | |
614 | { | |
615 | AV* superisa; | |
616 | GV** gvp; | |
617 | GV* gv; | |
618 | HV* stash; | |
619 | ||
7918f24d NC |
620 | PERL_ARGS_ASSERT_GV_GET_SUPER_PKG; |
621 | ||
7d3b1f61 BB |
622 | stash = gv_stashpvn(name, namelen, 0); |
623 | if(stash) return stash; | |
624 | ||
625 | /* If we must create it, give it an @ISA array containing | |
626 | the real package this SUPER is for, so that it's tied | |
627 | into the cache invalidation code correctly */ | |
628 | stash = gv_stashpvn(name, namelen, GV_ADD); | |
629 | gvp = (GV**)hv_fetchs(stash, "ISA", TRUE); | |
630 | gv = *gvp; | |
631 | gv_init(gv, stash, "ISA", 3, TRUE); | |
632 | superisa = GvAVn(gv); | |
633 | GvMULTI_on(gv); | |
ad64d0ec | 634 | sv_magic(MUTABLE_SV(superisa), MUTABLE_SV(gv), PERL_MAGIC_isa, NULL, 0); |
8e3a4a30 | 635 | #ifdef USE_ITHREADS |
7d3b1f61 | 636 | av_push(superisa, newSVpv(CopSTASHPV(PL_curcop), 0)); |
8e3a4a30 NC |
637 | #else |
638 | av_push(superisa, newSVhek(CopSTASH(PL_curcop) | |
639 | ? HvNAME_HEK(CopSTASH(PL_curcop)) : NULL)); | |
640 | #endif | |
7d3b1f61 BB |
641 | |
642 | return stash; | |
643 | } | |
644 | ||
dc848c6f | 645 | GV * |
864dbfa3 | 646 | Perl_gv_fetchmethod_autoload(pTHX_ HV *stash, const char *name, I32 autoload) |
dc848c6f | 647 | { |
547bb267 NC |
648 | PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD; |
649 | ||
256d1bb2 NC |
650 | return gv_fetchmethod_flags(stash, name, autoload ? GV_AUTOLOAD : 0); |
651 | } | |
652 | ||
653 | /* Don't merge this yet, as it's likely to get a len parameter, and possibly | |
654 | even a U32 hash */ | |
655 | GV * | |
656 | Perl_gv_fetchmethod_flags(pTHX_ HV *stash, const char *name, U32 flags) | |
657 | { | |
97aff369 | 658 | dVAR; |
08105a92 | 659 | register const char *nend; |
c445ea15 | 660 | const char *nsplit = NULL; |
a0d0e21e | 661 | GV* gv; |
0dae17bd | 662 | HV* ostash = stash; |
c94593d0 | 663 | const char * const origname = name; |
ad64d0ec | 664 | SV *const error_report = MUTABLE_SV(stash); |
256d1bb2 NC |
665 | const U32 autoload = flags & GV_AUTOLOAD; |
666 | const U32 do_croak = flags & GV_CROAK; | |
0dae17bd | 667 | |
547bb267 | 668 | PERL_ARGS_ASSERT_GV_FETCHMETHOD_FLAGS; |
7918f24d | 669 | |
eff494dd | 670 | if (SvTYPE(stash) < SVt_PVHV) |
5c284bb0 | 671 | stash = NULL; |
c9bf4021 NC |
672 | else { |
673 | /* The only way stash can become NULL later on is if nsplit is set, | |
674 | which in turn means that there is no need for a SVt_PVHV case | |
675 | the error reporting code. */ | |
676 | } | |
b267980d | 677 | |
463ee0b2 | 678 | for (nend = name; *nend; nend++) { |
c94593d0 | 679 | if (*nend == '\'') { |
a0d0e21e | 680 | nsplit = nend; |
c94593d0 NC |
681 | name = nend + 1; |
682 | } | |
683 | else if (*nend == ':' && *(nend + 1) == ':') { | |
684 | nsplit = nend++; | |
685 | name = nend + 1; | |
686 | } | |
a0d0e21e LW |
687 | } |
688 | if (nsplit) { | |
7edbdc6b | 689 | if ((nsplit - origname) == 5 && memEQ(origname, "SUPER", 5)) { |
9607fc9c | 690 | /* ->SUPER::method should really be looked up in original stash */ |
b37c2d43 | 691 | SV * const tmpstr = sv_2mortal(Perl_newSVpvf(aTHX_ "%s::SUPER", |
1d7c1841 | 692 | CopSTASHPV(PL_curcop))); |
af09ea45 | 693 | /* __PACKAGE__::SUPER stash should be autovivified */ |
7d3b1f61 | 694 | stash = gv_get_super_pkg(SvPVX_const(tmpstr), SvCUR(tmpstr)); |
cea2e8a9 | 695 | DEBUG_o( Perl_deb(aTHX_ "Treating %s as %s::%s\n", |
bfcb3514 | 696 | origname, HvNAME_get(stash), name) ); |
4633a7c4 | 697 | } |
e189a56d | 698 | else { |
af09ea45 | 699 | /* don't autovifify if ->NoSuchStash::method */ |
da51bb9b | 700 | stash = gv_stashpvn(origname, nsplit - origname, 0); |
e189a56d IK |
701 | |
702 | /* however, explicit calls to Pkg::SUPER::method may | |
703 | happen, and may require autovivification to work */ | |
704 | if (!stash && (nsplit - origname) >= 7 && | |
705 | strnEQ(nsplit - 7, "::SUPER", 7) && | |
da51bb9b | 706 | gv_stashpvn(origname, nsplit - origname - 7, 0)) |
7d3b1f61 | 707 | stash = gv_get_super_pkg(origname, nsplit - origname); |
e189a56d | 708 | } |
0dae17bd | 709 | ostash = stash; |
4633a7c4 LW |
710 | } |
711 | ||
9607fc9c | 712 | gv = gv_fetchmeth(stash, name, nend - name, 0); |
a0d0e21e | 713 | if (!gv) { |
2f6e0fe7 | 714 | if (strEQ(name,"import") || strEQ(name,"unimport")) |
159b6efe | 715 | gv = MUTABLE_GV(&PL_sv_yes); |
dc848c6f | 716 | else if (autoload) |
0dae17bd | 717 | gv = gv_autoload4(ostash, name, nend - name, TRUE); |
256d1bb2 NC |
718 | if (!gv && do_croak) { |
719 | /* Right now this is exclusively for the benefit of S_method_common | |
720 | in pp_hot.c */ | |
721 | if (stash) { | |
15e6cdd9 DG |
722 | /* If we can't find an IO::File method, it might be a call on |
723 | * a filehandle. If IO:File has not been loaded, try to | |
724 | * require it first instead of croaking */ | |
725 | const char *stash_name = HvNAME_get(stash); | |
31b05a0f FR |
726 | if (stash_name && memEQs(stash_name, HvNAMELEN_get(stash), "IO::File") |
727 | && !Perl_hv_common(aTHX_ GvHVn(PL_incgv), NULL, | |
728 | STR_WITH_LEN("IO/File.pm"), 0, | |
729 | HV_FETCH_ISEXISTS, NULL, 0) | |
15e6cdd9 | 730 | ) { |
31b05a0f | 731 | require_pv("IO/File.pm"); |
15e6cdd9 DG |
732 | gv = gv_fetchmeth(stash, name, nend - name, 0); |
733 | if (gv) | |
734 | return gv; | |
735 | } | |
256d1bb2 NC |
736 | Perl_croak(aTHX_ |
737 | "Can't locate object method \"%s\" via package \"%.*s\"", | |
c49b597d | 738 | name, (int)HvNAMELEN_get(stash), HvNAME_get(stash)); |
256d1bb2 NC |
739 | } |
740 | else { | |
741 | STRLEN packlen; | |
742 | const char *packname; | |
743 | ||
256d1bb2 NC |
744 | if (nsplit) { |
745 | packlen = nsplit - origname; | |
746 | packname = origname; | |
256d1bb2 NC |
747 | } else { |
748 | packname = SvPV_const(error_report, packlen); | |
749 | } | |
750 | ||
751 | Perl_croak(aTHX_ | |
752 | "Can't locate object method \"%s\" via package \"%.*s\"" | |
753 | " (perhaps you forgot to load \"%.*s\"?)", | |
754 | name, (int)packlen, packname, (int)packlen, packname); | |
755 | } | |
756 | } | |
463ee0b2 | 757 | } |
dc848c6f | 758 | else if (autoload) { |
9d4ba2ae | 759 | CV* const cv = GvCV(gv); |
09280a33 CS |
760 | if (!CvROOT(cv) && !CvXSUB(cv)) { |
761 | GV* stubgv; | |
762 | GV* autogv; | |
763 | ||
764 | if (CvANON(cv)) | |
765 | stubgv = gv; | |
766 | else { | |
767 | stubgv = CvGV(cv); | |
768 | if (GvCV(stubgv) != cv) /* orphaned import */ | |
769 | stubgv = gv; | |
770 | } | |
771 | autogv = gv_autoload4(GvSTASH(stubgv), | |
772 | GvNAME(stubgv), GvNAMELEN(stubgv), TRUE); | |
dc848c6f | 773 | if (autogv) |
774 | gv = autogv; | |
775 | } | |
776 | } | |
44a8e56a | 777 | |
778 | return gv; | |
779 | } | |
780 | ||
781 | GV* | |
864dbfa3 | 782 | Perl_gv_autoload4(pTHX_ HV *stash, const char *name, STRLEN len, I32 method) |
44a8e56a | 783 | { |
27da23d5 | 784 | dVAR; |
44a8e56a | 785 | GV* gv; |
786 | CV* cv; | |
787 | HV* varstash; | |
788 | GV* vargv; | |
789 | SV* varsv; | |
e1ec3a88 | 790 | const char *packname = ""; |
eae70eaa | 791 | STRLEN packname_len = 0; |
44a8e56a | 792 | |
7918f24d NC |
793 | PERL_ARGS_ASSERT_GV_AUTOLOAD4; |
794 | ||
7edbdc6b | 795 | if (len == S_autolen && memEQ(name, S_autoload, S_autolen)) |
a0714e2c | 796 | return NULL; |
0dae17bd GS |
797 | if (stash) { |
798 | if (SvTYPE(stash) < SVt_PVHV) { | |
ad64d0ec | 799 | packname = SvPV_const(MUTABLE_SV(stash), packname_len); |
5c284bb0 | 800 | stash = NULL; |
0dae17bd GS |
801 | } |
802 | else { | |
bfcb3514 | 803 | packname = HvNAME_get(stash); |
7423f6db | 804 | packname_len = HvNAMELEN_get(stash); |
0dae17bd GS |
805 | } |
806 | } | |
5c7983e5 | 807 | if (!(gv = gv_fetchmeth(stash, S_autoload, S_autolen, FALSE))) |
a0714e2c | 808 | return NULL; |
dc848c6f | 809 | cv = GvCV(gv); |
810 | ||
adb5a9ae | 811 | if (!(CvROOT(cv) || CvXSUB(cv))) |
a0714e2c | 812 | return NULL; |
ed850460 | 813 | |
dc848c6f | 814 | /* |
815 | * Inheriting AUTOLOAD for non-methods works ... for now. | |
816 | */ | |
041457d9 | 817 | if (!method && (GvCVGEN(gv) || GvSTASH(gv) != stash) |
041457d9 | 818 | ) |
d1d15184 NC |
819 | Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), |
820 | "Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated", | |
821 | packname, (int)len, name); | |
44a8e56a | 822 | |
aed2304a | 823 | if (CvISXSUB(cv)) { |
adb5a9ae DM |
824 | /* rather than lookup/init $AUTOLOAD here |
825 | * only to have the XSUB do another lookup for $AUTOLOAD | |
826 | * and split that value on the last '::', | |
827 | * pass along the same data via some unused fields in the CV | |
828 | */ | |
c68d9564 | 829 | CvSTASH_set(cv, stash); |
f880fe2f | 830 | SvPV_set(cv, (char *)name); /* cast to lose constness warning */ |
b162af07 | 831 | SvCUR_set(cv, len); |
adb5a9ae DM |
832 | return gv; |
833 | } | |
adb5a9ae | 834 | |
44a8e56a | 835 | /* |
836 | * Given &FOO::AUTOLOAD, set $FOO::AUTOLOAD to desired function name. | |
837 | * The subroutine's original name may not be "AUTOLOAD", so we don't | |
838 | * use that, but for lack of anything better we will use the sub's | |
839 | * original package to look up $AUTOLOAD. | |
840 | */ | |
841 | varstash = GvSTASH(CvGV(cv)); | |
5c7983e5 | 842 | vargv = *(GV**)hv_fetch(varstash, S_autoload, S_autolen, TRUE); |
3d35f11b GS |
843 | ENTER; |
844 | ||
c69033f2 | 845 | if (!isGV(vargv)) { |
5c7983e5 | 846 | gv_init(vargv, varstash, S_autoload, S_autolen, FALSE); |
c69033f2 | 847 | #ifdef PERL_DONT_CREATE_GVSV |
561b68a9 | 848 | GvSV(vargv) = newSV(0); |
c69033f2 NC |
849 | #endif |
850 | } | |
3d35f11b | 851 | LEAVE; |
e203899d | 852 | varsv = GvSVn(vargv); |
7423f6db | 853 | sv_setpvn(varsv, packname, packname_len); |
396482e1 | 854 | sv_catpvs(varsv, "::"); |
d40bf27b NC |
855 | /* Ensure SvSETMAGIC() is called if necessary. In particular, to clear |
856 | tainting if $FOO::AUTOLOAD was previously tainted, but is not now. */ | |
857 | sv_catpvn_mg(varsv, name, len); | |
a0d0e21e LW |
858 | return gv; |
859 | } | |
860 | ||
44a2ac75 YO |
861 | |
862 | /* require_tie_mod() internal routine for requiring a module | |
486ec47a | 863 | * that implements the logic of automatic ties like %! and %- |
44a2ac75 YO |
864 | * |
865 | * The "gv" parameter should be the glob. | |
45cbc99a RGS |
866 | * "varpv" holds the name of the var, used for error messages. |
867 | * "namesv" holds the module name. Its refcount will be decremented. | |
44a2ac75 | 868 | * "methpv" holds the method name to test for to check that things |
45cbc99a RGS |
869 | * are working reasonably close to as expected. |
870 | * "flags": if flag & 1 then save the scalar before loading. | |
44a2ac75 YO |
871 | * For the protection of $! to work (it is set by this routine) |
872 | * the sv slot must already be magicalized. | |
d2c93421 | 873 | */ |
44a2ac75 YO |
874 | STATIC HV* |
875 | S_require_tie_mod(pTHX_ GV *gv, const char *varpv, SV* namesv, const char *methpv,const U32 flags) | |
d2c93421 | 876 | { |
27da23d5 | 877 | dVAR; |
da51bb9b | 878 | HV* stash = gv_stashsv(namesv, 0); |
45cbc99a | 879 | |
7918f24d NC |
880 | PERL_ARGS_ASSERT_REQUIRE_TIE_MOD; |
881 | ||
44a2ac75 | 882 | if (!stash || !(gv_fetchmethod(stash, methpv))) { |
45cbc99a RGS |
883 | SV *module = newSVsv(namesv); |
884 | char varname = *varpv; /* varpv might be clobbered by load_module, | |
885 | so save it. For the moment it's always | |
886 | a single char. */ | |
d2c93421 | 887 | dSP; |
d2c93421 | 888 | ENTER; |
44a2ac75 | 889 | if ( flags & 1 ) |
45cbc99a | 890 | save_scalar(gv); |
cac54379 | 891 | PUSHSTACKi(PERLSI_MAGIC); |
45cbc99a | 892 | Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, module, NULL); |
cac54379 | 893 | POPSTACK; |
d2c93421 RH |
894 | LEAVE; |
895 | SPAGAIN; | |
da51bb9b | 896 | stash = gv_stashsv(namesv, 0); |
44a2ac75 | 897 | if (!stash) |
45cbc99a RGS |
898 | Perl_croak(aTHX_ "panic: Can't use %%%c because %"SVf" is not available", |
899 | varname, SVfARG(namesv)); | |
900 | else if (!gv_fetchmethod(stash, methpv)) | |
901 | Perl_croak(aTHX_ "panic: Can't use %%%c because %"SVf" does not support method %s", | |
902 | varname, SVfARG(namesv), methpv); | |
d2c93421 | 903 | } |
45cbc99a | 904 | SvREFCNT_dec(namesv); |
44a2ac75 | 905 | return stash; |
d2c93421 RH |
906 | } |
907 | ||
954c1994 GS |
908 | /* |
909 | =for apidoc gv_stashpv | |
910 | ||
da51bb9b | 911 | Returns a pointer to the stash for a specified package. Uses C<strlen> to |
75c442e4 | 912 | determine the length of C<name>, then calls C<gv_stashpvn()>. |
954c1994 GS |
913 | |
914 | =cut | |
915 | */ | |
916 | ||
a0d0e21e | 917 | HV* |
864dbfa3 | 918 | Perl_gv_stashpv(pTHX_ const char *name, I32 create) |
a0d0e21e | 919 | { |
7918f24d | 920 | PERL_ARGS_ASSERT_GV_STASHPV; |
dc437b57 | 921 | return gv_stashpvn(name, strlen(name), create); |
922 | } | |
923 | ||
bc96cb06 SH |
924 | /* |
925 | =for apidoc gv_stashpvn | |
926 | ||
da51bb9b NC |
927 | Returns a pointer to the stash for a specified package. The C<namelen> |
928 | parameter indicates the length of the C<name>, in bytes. C<flags> is passed | |
929 | to C<gv_fetchpvn_flags()>, so if set to C<GV_ADD> then the package will be | |
930 | created if it does not already exist. If the package does not exist and | |
931 | C<flags> is 0 (or any other setting that does not create packages) then NULL | |
932 | is returned. | |
933 | ||
bc96cb06 SH |
934 | |
935 | =cut | |
936 | */ | |
937 | ||
dc437b57 | 938 | HV* |
da51bb9b | 939 | Perl_gv_stashpvn(pTHX_ const char *name, U32 namelen, I32 flags) |
dc437b57 | 940 | { |
0cea0058 | 941 | char smallbuf[128]; |
46fc3d4c | 942 | char *tmpbuf; |
a0d0e21e LW |
943 | HV *stash; |
944 | GV *tmpgv; | |
add0ecde | 945 | U32 tmplen = namelen + 2; |
dc437b57 | 946 | |
7918f24d NC |
947 | PERL_ARGS_ASSERT_GV_STASHPVN; |
948 | ||
add0ecde | 949 | if (tmplen <= sizeof smallbuf) |
46fc3d4c | 950 | tmpbuf = smallbuf; |
951 | else | |
add0ecde VP |
952 | Newx(tmpbuf, tmplen, char); |
953 | Copy(name, tmpbuf, namelen, char); | |
954 | tmpbuf[namelen] = ':'; | |
955 | tmpbuf[namelen+1] = ':'; | |
956 | tmpgv = gv_fetchpvn_flags(tmpbuf, tmplen, flags, SVt_PVHV); | |
46fc3d4c | 957 | if (tmpbuf != smallbuf) |
958 | Safefree(tmpbuf); | |
a0d0e21e | 959 | if (!tmpgv) |
da51bb9b | 960 | return NULL; |
a0d0e21e | 961 | stash = GvHV(tmpgv); |
1a063a89 FC |
962 | if (!HvNAME_get(stash)) |
963 | hv_name_set(stash, name, namelen, 0); | |
b4dd6623 | 964 | assert(stash); |
a0d0e21e | 965 | return stash; |
463ee0b2 LW |
966 | } |
967 | ||
954c1994 GS |
968 | /* |
969 | =for apidoc gv_stashsv | |
970 | ||
da51bb9b | 971 | Returns a pointer to the stash for a specified package. See C<gv_stashpvn>. |
954c1994 GS |
972 | |
973 | =cut | |
974 | */ | |
975 | ||
a0d0e21e | 976 | HV* |
da51bb9b | 977 | Perl_gv_stashsv(pTHX_ SV *sv, I32 flags) |
a0d0e21e | 978 | { |
dc437b57 | 979 | STRLEN len; |
9d4ba2ae | 980 | const char * const ptr = SvPV_const(sv,len); |
7918f24d NC |
981 | |
982 | PERL_ARGS_ASSERT_GV_STASHSV; | |
983 | ||
da51bb9b | 984 | return gv_stashpvn(ptr, len, flags); |
a0d0e21e LW |
985 | } |
986 | ||
987 | ||
463ee0b2 | 988 | GV * |
fe9845cc | 989 | Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type) { |
7918f24d | 990 | PERL_ARGS_ASSERT_GV_FETCHPV; |
b7787f18 | 991 | return gv_fetchpvn_flags(nambeg, strlen(nambeg), add, sv_type); |
7a5fd60d NC |
992 | } |
993 | ||
994 | GV * | |
fe9845cc | 995 | Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, const svtype sv_type) { |
7a5fd60d | 996 | STRLEN len; |
9d4ba2ae | 997 | const char * const nambeg = SvPV_const(name, len); |
7918f24d | 998 | PERL_ARGS_ASSERT_GV_FETCHSV; |
7a5fd60d NC |
999 | return gv_fetchpvn_flags(nambeg, len, flags | SvUTF8(name), sv_type); |
1000 | } | |
1001 | ||
ad7cce9f | 1002 | STATIC void |
290a1700 | 1003 | S_gv_magicalize_isa(pTHX_ GV *gv) |
ad7cce9f FR |
1004 | { |
1005 | AV* av; | |
1006 | ||
1007 | PERL_ARGS_ASSERT_GV_MAGICALIZE_ISA; | |
1008 | ||
1009 | av = GvAVn(gv); | |
1010 | GvMULTI_on(gv); | |
1011 | sv_magic(MUTABLE_SV(av), MUTABLE_SV(gv), PERL_MAGIC_isa, | |
1012 | NULL, 0); | |
ad7cce9f FR |
1013 | } |
1014 | ||
1015 | STATIC void | |
26469672 | 1016 | S_gv_magicalize_overload(pTHX_ GV *gv) |
ad7cce9f FR |
1017 | { |
1018 | HV* hv; | |
1019 | ||
1020 | PERL_ARGS_ASSERT_GV_MAGICALIZE_OVERLOAD; | |
1021 | ||
1022 | hv = GvHVn(gv); | |
1023 | GvMULTI_on(gv); | |
1024 | hv_magic(hv, NULL, PERL_MAGIC_overload); | |
1025 | } | |
1026 | ||
7a5fd60d NC |
1027 | GV * |
1028 | Perl_gv_fetchpvn_flags(pTHX_ const char *nambeg, STRLEN full_len, I32 flags, | |
fe9845cc | 1029 | const svtype sv_type) |
79072805 | 1030 | { |
97aff369 | 1031 | dVAR; |
08105a92 | 1032 | register const char *name = nambeg; |
c445ea15 | 1033 | register GV *gv = NULL; |
79072805 | 1034 | GV**gvp; |
79072805 | 1035 | I32 len; |
b3d904f3 | 1036 | register const char *name_cursor; |
c445ea15 | 1037 | HV *stash = NULL; |
add2581e | 1038 | const I32 no_init = flags & (GV_NOADD_NOINIT | GV_NOINIT); |
e26df76a | 1039 | const I32 no_expand = flags & GV_NOEXPAND; |
780a5241 | 1040 | const I32 add = flags & ~GV_NOADD_MASK; |
b3d904f3 NC |
1041 | const char *const name_end = nambeg + full_len; |
1042 | const char *const name_em1 = name_end - 1; | |
5e0caaeb | 1043 | U32 faking_it; |
79072805 | 1044 | |
7918f24d NC |
1045 | PERL_ARGS_ASSERT_GV_FETCHPVN_FLAGS; |
1046 | ||
fafc274c NC |
1047 | if (flags & GV_NOTQUAL) { |
1048 | /* Caller promised that there is no stash, so we can skip the check. */ | |
1049 | len = full_len; | |
1050 | goto no_stash; | |
1051 | } | |
1052 | ||
b208e10c NC |
1053 | if (full_len > 2 && *name == '*' && isALPHA(name[1])) { |
1054 | /* accidental stringify on a GV? */ | |
c07a80fd | 1055 | name++; |
b208e10c | 1056 | } |
c07a80fd | 1057 | |
b3d904f3 NC |
1058 | for (name_cursor = name; name_cursor < name_end; name_cursor++) { |
1059 | if ((*name_cursor == ':' && name_cursor < name_em1 | |
1060 | && name_cursor[1] == ':') | |
1061 | || (*name_cursor == '\'' && name_cursor[1])) | |
463ee0b2 | 1062 | { |
463ee0b2 | 1063 | if (!stash) |
3280af22 | 1064 | stash = PL_defstash; |
dc437b57 | 1065 | if (!stash || !SvREFCNT(stash)) /* symbol table under destruction */ |
a0714e2c | 1066 | return NULL; |
463ee0b2 | 1067 | |
b3d904f3 | 1068 | len = name_cursor - name; |
85e6fe83 | 1069 | if (len > 0) { |
3a5b580c NC |
1070 | const char *key; |
1071 | if (*name_cursor == ':') { | |
1072 | key = name; | |
e771aaa9 NC |
1073 | len += 2; |
1074 | } else { | |
3a5b580c | 1075 | char *tmpbuf; |
2ae0db35 | 1076 | Newx(tmpbuf, len+2, char); |
e771aaa9 NC |
1077 | Copy(name, tmpbuf, len, char); |
1078 | tmpbuf[len++] = ':'; | |
1079 | tmpbuf[len++] = ':'; | |
3a5b580c | 1080 | key = tmpbuf; |
e771aaa9 | 1081 | } |
3a5b580c | 1082 | gvp = (GV**)hv_fetch(stash, key, len, add); |
a0714e2c | 1083 | gv = gvp ? *gvp : NULL; |
159b6efe | 1084 | if (gv && gv != (const GV *)&PL_sv_undef) { |
6fa846a0 | 1085 | if (SvTYPE(gv) != SVt_PVGV) |
3a5b580c | 1086 | gv_init(gv, stash, key, len, (add & GV_ADDMULTI)); |
6fa846a0 GS |
1087 | else |
1088 | GvMULTI_on(gv); | |
1089 | } | |
3a5b580c | 1090 | if (key != name) |
b9d2ea5b | 1091 | Safefree(key); |
159b6efe | 1092 | if (!gv || gv == (const GV *)&PL_sv_undef) |
a0714e2c | 1093 | return NULL; |
85e6fe83 | 1094 | |
463ee0b2 | 1095 | if (!(stash = GvHV(gv))) |
298d6511 | 1096 | { |
99ee9762 FC |
1097 | stash = GvHV(gv) = newHV(); |
1098 | if (!HvNAME_get(stash)) { | |
1099 | hv_name_set(stash, nambeg, name_cursor-nambeg, 0); | |
1100 | /* If the containing stash has multiple effective | |
1101 | names, see that this one gets them, too. */ | |
1102 | if (HvAUX(GvSTASH(gv))->xhv_name_count) | |
1103 | mro_package_moved(stash, NULL, gv, 1); | |
1104 | } | |
298d6511 | 1105 | } |
99ee9762 FC |
1106 | else if (!HvNAME_get(stash)) |
1107 | hv_name_set(stash, nambeg, name_cursor - nambeg, 0); | |
463ee0b2 LW |
1108 | } |
1109 | ||
b3d904f3 NC |
1110 | if (*name_cursor == ':') |
1111 | name_cursor++; | |
1112 | name_cursor++; | |
1113 | name = name_cursor; | |
ad6bfa9d | 1114 | if (name == name_end) |
159b6efe NC |
1115 | return gv |
1116 | ? gv : MUTABLE_GV(*hv_fetchs(PL_defstash, "main::", TRUE)); | |
79072805 | 1117 | } |
79072805 | 1118 | } |
b3d904f3 | 1119 | len = name_cursor - name; |
463ee0b2 LW |
1120 | |
1121 | /* No stash in name, so see how we can default */ | |
1122 | ||
1123 | if (!stash) { | |
fafc274c | 1124 | no_stash: |
8ccce9ae | 1125 | if (len && isIDFIRST_lazy(name)) { |
9607fc9c | 1126 | bool global = FALSE; |
1127 | ||
8ccce9ae NC |
1128 | switch (len) { |
1129 | case 1: | |
18ea00d7 | 1130 | if (*name == '_') |
9d116dd7 | 1131 | global = TRUE; |
18ea00d7 | 1132 | break; |
8ccce9ae NC |
1133 | case 3: |
1134 | if ((name[0] == 'I' && name[1] == 'N' && name[2] == 'C') | |
1135 | || (name[0] == 'E' && name[1] == 'N' && name[2] == 'V') | |
1136 | || (name[0] == 'S' && name[1] == 'I' && name[2] == 'G')) | |
9d116dd7 | 1137 | global = TRUE; |
18ea00d7 | 1138 | break; |
8ccce9ae NC |
1139 | case 4: |
1140 | if (name[0] == 'A' && name[1] == 'R' && name[2] == 'G' | |
1141 | && name[3] == 'V') | |
9d116dd7 | 1142 | global = TRUE; |
18ea00d7 | 1143 | break; |
8ccce9ae NC |
1144 | case 5: |
1145 | if (name[0] == 'S' && name[1] == 'T' && name[2] == 'D' | |
1146 | && name[3] == 'I' && name[4] == 'N') | |
463ee0b2 | 1147 | global = TRUE; |
18ea00d7 | 1148 | break; |
8ccce9ae NC |
1149 | case 6: |
1150 | if ((name[0] == 'S' && name[1] == 'T' && name[2] == 'D') | |
1151 | &&((name[3] == 'O' && name[4] == 'U' && name[5] == 'T') | |
1152 | ||(name[3] == 'E' && name[4] == 'R' && name[5] == 'R'))) | |
1153 | global = TRUE; | |
1154 | break; | |
1155 | case 7: | |
1156 | if (name[0] == 'A' && name[1] == 'R' && name[2] == 'G' | |
1157 | && name[3] == 'V' && name[4] == 'O' && name[5] == 'U' | |
1158 | && name[6] == 'T') | |
18ea00d7 NC |
1159 | global = TRUE; |
1160 | break; | |
463ee0b2 | 1161 | } |
9607fc9c | 1162 | |
463ee0b2 | 1163 | if (global) |
3280af22 | 1164 | stash = PL_defstash; |
923e4eb5 | 1165 | else if (IN_PERL_COMPILETIME) { |
3280af22 NIS |
1166 | stash = PL_curstash; |
1167 | if (add && (PL_hints & HINT_STRICT_VARS) && | |
748a9306 LW |
1168 | sv_type != SVt_PVCV && |
1169 | sv_type != SVt_PVGV && | |
4633a7c4 | 1170 | sv_type != SVt_PVFM && |
c07a80fd | 1171 | sv_type != SVt_PVIO && |
70ec6265 NC |
1172 | !(len == 1 && sv_type == SVt_PV && |
1173 | (*name == 'a' || *name == 'b')) ) | |
748a9306 | 1174 | { |
4633a7c4 LW |
1175 | gvp = (GV**)hv_fetch(stash,name,len,0); |
1176 | if (!gvp || | |
159b6efe | 1177 | *gvp == (const GV *)&PL_sv_undef || |
a5f75d66 AD |
1178 | SvTYPE(*gvp) != SVt_PVGV) |
1179 | { | |
d4c19fe8 | 1180 | stash = NULL; |
a5f75d66 | 1181 | } |
155aba94 GS |
1182 | else if ((sv_type == SVt_PV && !GvIMPORTED_SV(*gvp)) || |
1183 | (sv_type == SVt_PVAV && !GvIMPORTED_AV(*gvp)) || | |
1184 | (sv_type == SVt_PVHV && !GvIMPORTED_HV(*gvp)) ) | |
4633a7c4 | 1185 | { |
fe13d51d | 1186 | /* diag_listed_as: Variable "%s" is not imported%s */ |
413ff9f6 FC |
1187 | Perl_ck_warner_d( |
1188 | aTHX_ packWARN(WARN_MISC), | |
1189 | "Variable \"%c%s\" is not imported", | |
4633a7c4 LW |
1190 | sv_type == SVt_PVAV ? '@' : |
1191 | sv_type == SVt_PVHV ? '%' : '$', | |
1192 | name); | |
8ebc5c01 | 1193 | if (GvCVu(*gvp)) |
413ff9f6 FC |
1194 | Perl_ck_warner_d( |
1195 | aTHX_ packWARN(WARN_MISC), | |
1196 | "\t(Did you mean &%s instead?)\n", name | |
1197 | ); | |
d4c19fe8 | 1198 | stash = NULL; |
4633a7c4 | 1199 | } |
a0d0e21e | 1200 | } |
85e6fe83 | 1201 | } |
463ee0b2 | 1202 | else |
1d7c1841 | 1203 | stash = CopSTASH(PL_curcop); |
463ee0b2 LW |
1204 | } |
1205 | else | |
3280af22 | 1206 | stash = PL_defstash; |
463ee0b2 LW |
1207 | } |
1208 | ||
1209 | /* By this point we should have a stash and a name */ | |
1210 | ||
a0d0e21e | 1211 | if (!stash) { |
5a844595 | 1212 | if (add) { |
9d4ba2ae | 1213 | SV * const err = Perl_mess(aTHX_ |
5a844595 GS |
1214 | "Global symbol \"%s%s\" requires explicit package name", |
1215 | (sv_type == SVt_PV ? "$" | |
1216 | : sv_type == SVt_PVAV ? "@" | |
1217 | : sv_type == SVt_PVHV ? "%" | |
608b3986 | 1218 | : ""), name); |
e7f343b6 | 1219 | GV *gv; |
608b3986 AE |
1220 | if (USE_UTF8_IN_NAMES) |
1221 | SvUTF8_on(err); | |
1222 | qerror(err); | |
76f68e9b | 1223 | gv = gv_fetchpvs("<none>::", GV_ADDMULTI, SVt_PVHV); |
e7f343b6 NC |
1224 | if(!gv) { |
1225 | /* symbol table under destruction */ | |
1226 | return NULL; | |
1227 | } | |
1228 | stash = GvHV(gv); | |
a0d0e21e | 1229 | } |
d7aacf4e | 1230 | else |
a0714e2c | 1231 | return NULL; |
a0d0e21e LW |
1232 | } |
1233 | ||
1234 | if (!SvREFCNT(stash)) /* symbol table under destruction */ | |
a0714e2c | 1235 | return NULL; |
a0d0e21e | 1236 | |
79072805 | 1237 | gvp = (GV**)hv_fetch(stash,name,len,add); |
159b6efe | 1238 | if (!gvp || *gvp == (const GV *)&PL_sv_undef) |
a0714e2c | 1239 | return NULL; |
79072805 LW |
1240 | gv = *gvp; |
1241 | if (SvTYPE(gv) == SVt_PVGV) { | |
a0d0e21e | 1242 | if (add) { |
a5f75d66 | 1243 | GvMULTI_on(gv); |
a0d0e21e | 1244 | gv_init_sv(gv, sv_type); |
ccdda9cb NC |
1245 | if (len == 1 && stash == PL_defstash |
1246 | && (sv_type == SVt_PVHV || sv_type == SVt_PVGV)) { | |
44a2ac75 YO |
1247 | if (*name == '!') |
1248 | require_tie_mod(gv, "!", newSVpvs("Errno"), "TIEHASH", 1); | |
45cbc99a | 1249 | else if (*name == '-' || *name == '+') |
192b9cd1 | 1250 | require_tie_mod(gv, name, newSVpvs("Tie::Hash::NamedCapture"), "TIEHASH", 0); |
45cbc99a | 1251 | } |
af16de9f FC |
1252 | else if (len == 3 && sv_type == SVt_PVAV |
1253 | && strnEQ(name, "ISA", 3) | |
1254 | && (!GvAV(gv) || !SvSMAGICAL(GvAV(gv)))) | |
1255 | gv_magicalize_isa(gv); | |
a0d0e21e | 1256 | } |
79072805 | 1257 | return gv; |
add2581e | 1258 | } else if (no_init) { |
55d729e4 | 1259 | return gv; |
e26df76a NC |
1260 | } else if (no_expand && SvROK(gv)) { |
1261 | return gv; | |
79072805 | 1262 | } |
93a17b20 | 1263 | |
5e0caaeb NC |
1264 | /* Adding a new symbol. |
1265 | Unless of course there was already something non-GV here, in which case | |
1266 | we want to behave as if there was always a GV here, containing some sort | |
1267 | of subroutine. | |
1268 | Otherwise we run the risk of creating things like GvIO, which can cause | |
1269 | subtle bugs. eg the one that tripped up SQL::Translator */ | |
1270 | ||
1271 | faking_it = SvOK(gv); | |
93a17b20 | 1272 | |
9b387841 NC |
1273 | if (add & GV_ADDWARN) |
1274 | Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "Had to create %s unexpectedly", nambeg); | |
55d729e4 | 1275 | gv_init(gv, stash, name, len, add & GV_ADDMULTI); |
5e0caaeb | 1276 | gv_init_sv(gv, faking_it ? SVt_PVCV : sv_type); |
93a17b20 | 1277 | |
a0288114 | 1278 | if (isALPHA(name[0]) && ! (isLEXWARN_on ? ckWARN(WARN_ONCE) |
7272584d | 1279 | : (PL_dowarn & G_WARN_ON ) ) ) |
0453d815 PM |
1280 | GvMULTI_on(gv) ; |
1281 | ||
93a17b20 | 1282 | /* set up magic where warranted */ |
44428a46 FC |
1283 | if (stash != PL_defstash) { /* not the main stash */ |
1284 | /* We only have to check for four names here: EXPORT, ISA, OVERLOAD | |
1285 | and VERSION. All the others apply only to the main stash. */ | |
1286 | if (len > 1) { | |
b464bac0 | 1287 | const char * const name2 = name + 1; |
cc4c2da6 | 1288 | switch (*name) { |
cc4c2da6 NC |
1289 | case 'E': |
1290 | if (strnEQ(name2, "XPORT", 5)) | |
1291 | GvMULTI_on(gv); | |
1292 | break; | |
1293 | case 'I': | |
44428a46 | 1294 | if (strEQ(name2, "SA")) |
290a1700 | 1295 | gv_magicalize_isa(gv); |
cc4c2da6 NC |
1296 | break; |
1297 | case 'O': | |
44428a46 | 1298 | if (strEQ(name2, "VERLOAD")) |
ad7cce9f | 1299 | gv_magicalize_overload(gv); |
cc4c2da6 | 1300 | break; |
44428a46 FC |
1301 | case 'V': |
1302 | if (strEQ(name2, "ERSION")) | |
1303 | GvMULTI_on(gv); | |
1304 | break; | |
1305 | } | |
1306 | } | |
1307 | } | |
1308 | else if (len > 1) { | |
1309 | #ifndef EBCDIC | |
1310 | if (*name > 'V' ) { | |
1311 | NOOP; | |
1312 | /* Nothing else to do. | |
1313 | The compiler will probably turn the switch statement into a | |
1314 | branch table. Make sure we avoid even that small overhead for | |
1315 | the common case of lower case variable names. */ | |
1316 | } else | |
1317 | #endif | |
1318 | { | |
1319 | const char * const name2 = name + 1; | |
1320 | switch (*name) { | |
1321 | case 'A': | |
1322 | if (strEQ(name2, "RGV")) { | |
1323 | IoFLAGS(GvIOn(gv)) |= IOf_ARGV|IOf_START; | |
1324 | } | |
1325 | else if (strEQ(name2, "RGVOUT")) { | |
1326 | GvMULTI_on(gv); | |
1327 | } | |
1328 | break; | |
1329 | case 'E': | |
1330 | if (strnEQ(name2, "XPORT", 5)) | |
1331 | GvMULTI_on(gv); | |
1332 | break; | |
1333 | case 'I': | |
1334 | if (strEQ(name2, "SA")) { | |
290a1700 | 1335 | gv_magicalize_isa(gv); |
44428a46 FC |
1336 | } |
1337 | break; | |
1338 | case 'O': | |
1339 | if (strEQ(name2, "VERLOAD")) { | |
ad7cce9f | 1340 | gv_magicalize_overload(gv); |
44428a46 FC |
1341 | } |
1342 | break; | |
cc4c2da6 NC |
1343 | case 'S': |
1344 | if (strEQ(name2, "IG")) { | |
1345 | HV *hv; | |
1346 | I32 i; | |
d525a7b2 NC |
1347 | if (!PL_psig_name) { |
1348 | Newxz(PL_psig_name, 2 * SIG_SIZE, SV*); | |
a02a5408 | 1349 | Newxz(PL_psig_pend, SIG_SIZE, int); |
d525a7b2 | 1350 | PL_psig_ptr = PL_psig_name + SIG_SIZE; |
0bdedcb3 NC |
1351 | } else { |
1352 | /* I think that the only way to get here is to re-use an | |
1353 | embedded perl interpreter, where the previous | |
1354 | use didn't clean up fully because | |
1355 | PL_perl_destruct_level was 0. I'm not sure that we | |
1356 | "support" that, in that I suspect in that scenario | |
1357 | there are sufficient other garbage values left in the | |
1358 | interpreter structure that something else will crash | |
1359 | before we get here. I suspect that this is one of | |
1360 | those "doctor, it hurts when I do this" bugs. */ | |
d525a7b2 | 1361 | Zero(PL_psig_name, 2 * SIG_SIZE, SV*); |
0bdedcb3 | 1362 | Zero(PL_psig_pend, SIG_SIZE, int); |
cc4c2da6 NC |
1363 | } |
1364 | GvMULTI_on(gv); | |
1365 | hv = GvHVn(gv); | |
a0714e2c | 1366 | hv_magic(hv, NULL, PERL_MAGIC_sig); |
cc4c2da6 | 1367 | for (i = 1; i < SIG_SIZE; i++) { |
551405c4 | 1368 | SV * const * const init = hv_fetch(hv, PL_sig_name[i], strlen(PL_sig_name[i]), 1); |
cc4c2da6 NC |
1369 | if (init) |
1370 | sv_setsv(*init, &PL_sv_undef); | |
cc4c2da6 NC |
1371 | } |
1372 | } | |
1373 | break; | |
1374 | case 'V': | |
1375 | if (strEQ(name2, "ERSION")) | |
1376 | GvMULTI_on(gv); | |
1377 | break; | |
e5218da5 GA |
1378 | case '\003': /* $^CHILD_ERROR_NATIVE */ |
1379 | if (strEQ(name2, "HILD_ERROR_NATIVE")) | |
1380 | goto magicalize; | |
1381 | break; | |
cc4c2da6 NC |
1382 | case '\005': /* $^ENCODING */ |
1383 | if (strEQ(name2, "NCODING")) | |
1384 | goto magicalize; | |
1385 | break; | |
9ebf26ad FR |
1386 | case '\007': /* $^GLOBAL_PHASE */ |
1387 | if (strEQ(name2, "LOBAL_PHASE")) | |
1388 | goto ro_magicalize; | |
1389 | break; | |
cde0cee5 YO |
1390 | case '\015': /* $^MATCH */ |
1391 | if (strEQ(name2, "ATCH")) | |
2fdbfb4d | 1392 | goto magicalize; |
cc4c2da6 NC |
1393 | case '\017': /* $^OPEN */ |
1394 | if (strEQ(name2, "PEN")) | |
1395 | goto magicalize; | |
1396 | break; | |
cde0cee5 YO |
1397 | case '\020': /* $^PREMATCH $^POSTMATCH */ |
1398 | if (strEQ(name2, "REMATCH") || strEQ(name2, "OSTMATCH")) | |
9ebf26ad FR |
1399 | goto magicalize; |
1400 | break; | |
cc4c2da6 NC |
1401 | case '\024': /* ${^TAINT} */ |
1402 | if (strEQ(name2, "AINT")) | |
1403 | goto ro_magicalize; | |
1404 | break; | |
7cebcbc0 | 1405 | case '\025': /* ${^UNICODE}, ${^UTF8LOCALE} */ |
a0288114 | 1406 | if (strEQ(name2, "NICODE")) |
cc4c2da6 | 1407 | goto ro_magicalize; |
a0288114 | 1408 | if (strEQ(name2, "TF8LOCALE")) |
7cebcbc0 | 1409 | goto ro_magicalize; |
e07ea26a NC |
1410 | if (strEQ(name2, "TF8CACHE")) |
1411 | goto magicalize; | |
cc4c2da6 NC |
1412 | break; |
1413 | case '\027': /* $^WARNING_BITS */ | |
1414 | if (strEQ(name2, "ARNING_BITS")) | |
1415 | goto magicalize; | |
1416 | break; | |
1417 | case '1': | |
1418 | case '2': | |
1419 | case '3': | |
1420 | case '4': | |
1421 | case '5': | |
1422 | case '6': | |
1423 | case '7': | |
1424 | case '8': | |
1425 | case '9': | |
85e6fe83 | 1426 | { |
2fdbfb4d AB |
1427 | /* Ensures that we have an all-digit variable, ${"1foo"} fails |
1428 | this test */ | |
1429 | /* This snippet is taken from is_gv_magical */ | |
cc4c2da6 NC |
1430 | const char *end = name + len; |
1431 | while (--end > name) { | |
2fdbfb4d | 1432 | if (!isDIGIT(*end)) return gv; |
cc4c2da6 | 1433 | } |
2fdbfb4d | 1434 | goto magicalize; |
1d7c1841 | 1435 | } |
dc437b57 | 1436 | } |
93a17b20 | 1437 | } |
392db708 NC |
1438 | } else { |
1439 | /* Names of length 1. (Or 0. But name is NUL terminated, so that will | |
1440 | be case '\0' in this switch statement (ie a default case) */ | |
cc4c2da6 | 1441 | switch (*name) { |
6361f656 AB |
1442 | case '&': /* $& */ |
1443 | case '`': /* $` */ | |
1444 | case '\'': /* $' */ | |
cc4c2da6 NC |
1445 | if ( |
1446 | sv_type == SVt_PVAV || | |
1447 | sv_type == SVt_PVHV || | |
1448 | sv_type == SVt_PVCV || | |
1449 | sv_type == SVt_PVFM || | |
1450 | sv_type == SVt_PVIO | |
1451 | ) { break; } | |
1452 | PL_sawampersand = TRUE; | |
2fdbfb4d | 1453 | goto magicalize; |
cc4c2da6 | 1454 | |
6361f656 | 1455 | case ':': /* $: */ |
c69033f2 | 1456 | sv_setpv(GvSVn(gv),PL_chopset); |
cc4c2da6 NC |
1457 | goto magicalize; |
1458 | ||
6361f656 | 1459 | case '?': /* $? */ |
ff0cee69 | 1460 | #ifdef COMPLEX_STATUS |
c69033f2 | 1461 | SvUPGRADE(GvSVn(gv), SVt_PVLV); |
ff0cee69 | 1462 | #endif |
cc4c2da6 | 1463 | goto magicalize; |
ff0cee69 | 1464 | |
6361f656 | 1465 | case '!': /* $! */ |
67261566 | 1466 | GvMULTI_on(gv); |
44a2ac75 | 1467 | /* If %! has been used, automatically load Errno.pm. */ |
d2c93421 | 1468 | |
ad64d0ec | 1469 | sv_magic(GvSVn(gv), MUTABLE_SV(gv), PERL_MAGIC_sv, name, len); |
d2c93421 | 1470 | |
44a2ac75 | 1471 | /* magicalization must be done before require_tie_mod is called */ |
67261566 | 1472 | if (sv_type == SVt_PVHV || sv_type == SVt_PVGV) |
44a2ac75 | 1473 | require_tie_mod(gv, "!", newSVpvs("Errno"), "TIEHASH", 1); |
d2c93421 | 1474 | |
6cef1e77 | 1475 | break; |
6361f656 AB |
1476 | case '-': /* $- */ |
1477 | case '+': /* $+ */ | |
44a2ac75 YO |
1478 | GvMULTI_on(gv); /* no used once warnings here */ |
1479 | { | |
44a2ac75 | 1480 | AV* const av = GvAVn(gv); |
ad64d0ec | 1481 | SV* const avc = (*name == '+') ? MUTABLE_SV(av) : NULL; |
44a2ac75 | 1482 | |
ad64d0ec NC |
1483 | sv_magic(MUTABLE_SV(av), avc, PERL_MAGIC_regdata, NULL, 0); |
1484 | sv_magic(GvSVn(gv), MUTABLE_SV(gv), PERL_MAGIC_sv, name, len); | |
67261566 | 1485 | if (avc) |
44a2ac75 | 1486 | SvREADONLY_on(GvSVn(gv)); |
44a2ac75 | 1487 | SvREADONLY_on(av); |
67261566 YO |
1488 | |
1489 | if (sv_type == SVt_PVHV || sv_type == SVt_PVGV) | |
192b9cd1 | 1490 | require_tie_mod(gv, name, newSVpvs("Tie::Hash::NamedCapture"), "TIEHASH", 0); |
67261566 | 1491 | |
80305961 | 1492 | break; |
cc4c2da6 | 1493 | } |
6361f656 AB |
1494 | case '*': /* $* */ |
1495 | case '#': /* $# */ | |
9b387841 NC |
1496 | if (sv_type == SVt_PV) |
1497 | Perl_ck_warner_d(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX), | |
1498 | "$%c is no longer supported", *name); | |
8ae1fe26 | 1499 | break; |
6361f656 | 1500 | case '|': /* $| */ |
c69033f2 | 1501 | sv_setiv(GvSVn(gv), (IV)(IoFLAGS(GvIOp(PL_defoutgv)) & IOf_FLUSH) != 0); |
cc4c2da6 NC |
1502 | goto magicalize; |
1503 | ||
b3ca2e83 NC |
1504 | case '\010': /* $^H */ |
1505 | { | |
1506 | HV *const hv = GvHVn(gv); | |
1507 | hv_magic(hv, NULL, PERL_MAGIC_hints); | |
1508 | } | |
1509 | goto magicalize; | |
cc4c2da6 | 1510 | case '\023': /* $^S */ |
2fdbfb4d AB |
1511 | ro_magicalize: |
1512 | SvREADONLY_on(GvSVn(gv)); | |
1513 | /* FALL THROUGH */ | |
6361f656 AB |
1514 | case '0': /* $0 */ |
1515 | case '1': /* $1 */ | |
1516 | case '2': /* $2 */ | |
1517 | case '3': /* $3 */ | |
1518 | case '4': /* $4 */ | |
1519 | case '5': /* $5 */ | |
1520 | case '6': /* $6 */ | |
1521 | case '7': /* $7 */ | |
1522 | case '8': /* $8 */ | |
1523 | case '9': /* $9 */ | |
1524 | case '[': /* $[ */ | |
1525 | case '^': /* $^ */ | |
1526 | case '~': /* $~ */ | |
1527 | case '=': /* $= */ | |
1528 | case '%': /* $% */ | |
1529 | case '.': /* $. */ | |
1530 | case '(': /* $( */ | |
1531 | case ')': /* $) */ | |
1532 | case '<': /* $< */ | |
1533 | case '>': /* $> */ | |
1534 | case '\\': /* $\ */ | |
1535 | case '/': /* $/ */ | |
cc4c2da6 NC |
1536 | case '\001': /* $^A */ |
1537 | case '\003': /* $^C */ | |
1538 | case '\004': /* $^D */ | |
1539 | case '\005': /* $^E */ | |
1540 | case '\006': /* $^F */ | |
cc4c2da6 NC |
1541 | case '\011': /* $^I, NOT \t in EBCDIC */ |
1542 | case '\016': /* $^N */ | |
1543 | case '\017': /* $^O */ | |
1544 | case '\020': /* $^P */ | |
1545 | case '\024': /* $^T */ | |
1546 | case '\027': /* $^W */ | |
1547 | magicalize: | |
ad64d0ec | 1548 | sv_magic(GvSVn(gv), MUTABLE_SV(gv), PERL_MAGIC_sv, name, len); |
cc4c2da6 | 1549 | break; |
e521374c | 1550 | |
cc4c2da6 | 1551 | case '\014': /* $^L */ |
76f68e9b | 1552 | sv_setpvs(GvSVn(gv),"\f"); |
c69033f2 | 1553 | PL_formfeed = GvSVn(gv); |
463ee0b2 | 1554 | break; |
6361f656 | 1555 | case ';': /* $; */ |
76f68e9b | 1556 | sv_setpvs(GvSVn(gv),"\034"); |
463ee0b2 | 1557 | break; |
6361f656 | 1558 | case ']': /* $] */ |
cc4c2da6 | 1559 | { |
c69033f2 | 1560 | SV * const sv = GvSVn(gv); |
d7aa5382 | 1561 | if (!sv_derived_from(PL_patchlevel, "version")) |
ac0e6a2f | 1562 | upg_version(PL_patchlevel, TRUE); |
7d54d38e SH |
1563 | GvSV(gv) = vnumify(PL_patchlevel); |
1564 | SvREADONLY_on(GvSV(gv)); | |
1565 | SvREFCNT_dec(sv); | |
93a17b20 LW |
1566 | } |
1567 | break; | |
cc4c2da6 NC |
1568 | case '\026': /* $^V */ |
1569 | { | |
c69033f2 | 1570 | SV * const sv = GvSVn(gv); |
f9be5ac8 DM |
1571 | GvSV(gv) = new_version(PL_patchlevel); |
1572 | SvREADONLY_on(GvSV(gv)); | |
1573 | SvREFCNT_dec(sv); | |
16070b82 GS |
1574 | } |
1575 | break; | |
cc4c2da6 | 1576 | } |
79072805 | 1577 | } |
93a17b20 | 1578 | return gv; |
79072805 LW |
1579 | } |
1580 | ||
1581 | void | |
35a4481c | 1582 | Perl_gv_fullname4(pTHX_ SV *sv, const GV *gv, const char *prefix, bool keepmain) |
43693395 | 1583 | { |
35a4481c | 1584 | const char *name; |
7423f6db | 1585 | STRLEN namelen; |
35a4481c | 1586 | const HV * const hv = GvSTASH(gv); |
7918f24d NC |
1587 | |
1588 | PERL_ARGS_ASSERT_GV_FULLNAME4; | |
1589 | ||
43693395 | 1590 | if (!hv) { |
0c34ef67 | 1591 | SvOK_off(sv); |
43693395 GS |
1592 | return; |
1593 | } | |
666ea192 | 1594 | sv_setpv(sv, prefix ? prefix : ""); |
a0288114 | 1595 | |
bfcb3514 | 1596 | name = HvNAME_get(hv); |
7423f6db NC |
1597 | if (name) { |
1598 | namelen = HvNAMELEN_get(hv); | |
1599 | } else { | |
e27ad1f2 | 1600 | name = "__ANON__"; |
7423f6db NC |
1601 | namelen = 8; |
1602 | } | |
a0288114 | 1603 | |
e27ad1f2 | 1604 | if (keepmain || strNE(name, "main")) { |
7423f6db | 1605 | sv_catpvn(sv,name,namelen); |
396482e1 | 1606 | sv_catpvs(sv,"::"); |
43693395 | 1607 | } |
257984c0 | 1608 | sv_catpvn(sv,GvNAME(gv),GvNAMELEN(gv)); |
43693395 GS |
1609 | } |
1610 | ||
1611 | void | |
35a4481c | 1612 | Perl_gv_efullname4(pTHX_ SV *sv, const GV *gv, const char *prefix, bool keepmain) |
43693395 | 1613 | { |
099be4f1 | 1614 | const GV * const egv = GvEGVx(gv); |
7918f24d NC |
1615 | |
1616 | PERL_ARGS_ASSERT_GV_EFULLNAME4; | |
1617 | ||
46c461b5 | 1618 | gv_fullname4(sv, egv ? egv : gv, prefix, keepmain); |
43693395 GS |
1619 | } |
1620 | ||
79072805 | 1621 | void |
1146e912 | 1622 | Perl_gv_check(pTHX_ const HV *stash) |
79072805 | 1623 | { |
97aff369 | 1624 | dVAR; |
79072805 | 1625 | register I32 i; |
463ee0b2 | 1626 | |
7918f24d NC |
1627 | PERL_ARGS_ASSERT_GV_CHECK; |
1628 | ||
8990e307 LW |
1629 | if (!HvARRAY(stash)) |
1630 | return; | |
a0d0e21e | 1631 | for (i = 0; i <= (I32) HvMAX(stash); i++) { |
e1ec3a88 | 1632 | const HE *entry; |
dc437b57 | 1633 | for (entry = HvARRAY(stash)[i]; entry; entry = HeNEXT(entry)) { |
b7787f18 AL |
1634 | register GV *gv; |
1635 | HV *hv; | |
dc437b57 | 1636 | if (HeKEY(entry)[HeKLEN(entry)-1] == ':' && |
159b6efe | 1637 | (gv = MUTABLE_GV(HeVAL(entry))) && isGV(gv) && (hv = GvHV(gv))) |
a0d0e21e | 1638 | { |
19b6c847 | 1639 | if (hv != PL_defstash && hv != stash) |
a0d0e21e LW |
1640 | gv_check(hv); /* nested package */ |
1641 | } | |
dc437b57 | 1642 | else if (isALPHA(*HeKEY(entry))) { |
e1ec3a88 | 1643 | const char *file; |
159b6efe | 1644 | gv = MUTABLE_GV(HeVAL(entry)); |
55d729e4 | 1645 | if (SvTYPE(gv) != SVt_PVGV || GvMULTI(gv)) |
463ee0b2 | 1646 | continue; |
1d7c1841 | 1647 | file = GvFILE(gv); |
1d7c1841 GS |
1648 | CopLINE_set(PL_curcop, GvLINE(gv)); |
1649 | #ifdef USE_ITHREADS | |
dd374669 | 1650 | CopFILE(PL_curcop) = (char *)file; /* set for warning */ |
1d7c1841 | 1651 | #else |
9bde8eb0 NC |
1652 | CopFILEGV(PL_curcop) |
1653 | = gv_fetchfile_flags(file, HEK_LEN(GvFILE_HEK(gv)), 0); | |
1d7c1841 | 1654 | #endif |
9014280d | 1655 | Perl_warner(aTHX_ packWARN(WARN_ONCE), |
599cee73 | 1656 | "Name \"%s::%s\" used only once: possible typo", |
bfcb3514 | 1657 | HvNAME_get(stash), GvNAME(gv)); |
463ee0b2 | 1658 | } |
79072805 LW |
1659 | } |
1660 | } | |
1661 | } | |
1662 | ||
1663 | GV * | |
e1ec3a88 | 1664 | Perl_newGVgen(pTHX_ const char *pack) |
79072805 | 1665 | { |
97aff369 | 1666 | dVAR; |
7918f24d NC |
1667 | |
1668 | PERL_ARGS_ASSERT_NEWGVGEN; | |
1669 | ||
cea2e8a9 | 1670 | return gv_fetchpv(Perl_form(aTHX_ "%s::_GEN_%ld", pack, (long)PL_gensym++), |
6fd99bb3 | 1671 | GV_ADD, SVt_PVGV); |
79072805 LW |
1672 | } |
1673 | ||
1674 | /* hopefully this is only called on local symbol table entries */ | |
1675 | ||
1676 | GP* | |
864dbfa3 | 1677 | Perl_gp_ref(pTHX_ GP *gp) |
79072805 | 1678 | { |
97aff369 | 1679 | dVAR; |
1d7c1841 | 1680 | if (!gp) |
d4c19fe8 | 1681 | return NULL; |
79072805 | 1682 | gp->gp_refcnt++; |
44a8e56a | 1683 | if (gp->gp_cv) { |
1684 | if (gp->gp_cvgen) { | |
e1a479c5 BB |
1685 | /* If the GP they asked for a reference to contains |
1686 | a method cache entry, clear it first, so that we | |
1687 | don't infect them with our cached entry */ | |
44a8e56a | 1688 | SvREFCNT_dec(gp->gp_cv); |
601f1833 | 1689 | gp->gp_cv = NULL; |
44a8e56a | 1690 | gp->gp_cvgen = 0; |
1691 | } | |
44a8e56a | 1692 | } |
79072805 | 1693 | return gp; |
79072805 LW |
1694 | } |
1695 | ||
1696 | void | |
864dbfa3 | 1697 | Perl_gp_free(pTHX_ GV *gv) |
79072805 | 1698 | { |
97aff369 | 1699 | dVAR; |
79072805 | 1700 | GP* gp; |
b0d55c99 | 1701 | int attempts = 100; |
79072805 | 1702 | |
f7877b28 | 1703 | if (!gv || !isGV_with_GP(gv) || !(gp = GvGP(gv))) |
79072805 | 1704 | return; |
f248d071 | 1705 | if (gp->gp_refcnt == 0) { |
9b387841 NC |
1706 | Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), |
1707 | "Attempt to free unreferenced glob pointers" | |
1708 | pTHX__FORMAT pTHX__VALUE); | |
79072805 LW |
1709 | return; |
1710 | } | |
748a9306 LW |
1711 | if (--gp->gp_refcnt > 0) { |
1712 | if (gp->gp_egv == gv) | |
1713 | gp->gp_egv = 0; | |
c43ae56f | 1714 | GvGP_set(gv, NULL); |
79072805 | 1715 | return; |
748a9306 | 1716 | } |
79072805 | 1717 | |
b0d55c99 FC |
1718 | while (1) { |
1719 | /* Copy and null out all the glob slots, so destructors do not see | |
1720 | freed SVs. */ | |
1721 | HEK * const file_hek = gp->gp_file_hek; | |
1722 | SV * const sv = gp->gp_sv; | |
1723 | AV * const av = gp->gp_av; | |
1724 | HV * const hv = gp->gp_hv; | |
1725 | IO * const io = gp->gp_io; | |
1726 | CV * const cv = gp->gp_cv; | |
1727 | CV * const form = gp->gp_form; | |
1728 | ||
1729 | gp->gp_file_hek = NULL; | |
1730 | gp->gp_sv = NULL; | |
1731 | gp->gp_av = NULL; | |
1732 | gp->gp_hv = NULL; | |
1733 | gp->gp_io = NULL; | |
1734 | gp->gp_cv = NULL; | |
1735 | gp->gp_form = NULL; | |
1736 | ||
1737 | if (file_hek) | |
1738 | unshare_hek(file_hek); | |
1739 | ||
1740 | SvREFCNT_dec(sv); | |
1741 | SvREFCNT_dec(av); | |
1742 | /* FIXME - another reference loop GV -> symtab -> GV ? | |
1743 | Somehow gp->gp_hv can end up pointing at freed garbage. */ | |
1744 | if (hv && SvTYPE(hv) == SVt_PVHV) { | |
1745 | const char *hvname = HvNAME_get(hv); | |
bfcb3514 | 1746 | if (PL_stashcache && hvname) |
b0d55c99 | 1747 | (void)hv_delete(PL_stashcache, hvname, HvNAMELEN_get(hv), |
7423f6db | 1748 | G_DISCARD); |
b0d55c99 FC |
1749 | SvREFCNT_dec(hv); |
1750 | } | |
1751 | SvREFCNT_dec(io); | |
1752 | SvREFCNT_dec(cv); | |
1753 | SvREFCNT_dec(form); | |
1754 | ||
1755 | if (!gp->gp_file_hek | |
1756 | && !gp->gp_sv | |
1757 | && !gp->gp_av | |
1758 | && !gp->gp_hv | |
1759 | && !gp->gp_io | |
1760 | && !gp->gp_cv | |
1761 | && !gp->gp_form) break; | |
1762 | ||
1763 | if (--attempts == 0) { | |
1764 | Perl_die(aTHX_ | |
1765 | "panic: gp_free failed to free glob pointer - " | |
1766 | "something is repeatedly re-creating entries" | |
1767 | ); | |
1768 | } | |
13207a71 | 1769 | } |
748a9306 | 1770 | |
79072805 | 1771 | Safefree(gp); |
c43ae56f | 1772 | GvGP_set(gv, NULL); |
79072805 LW |
1773 | } |
1774 | ||
d460ef45 NIS |
1775 | int |
1776 | Perl_magic_freeovrld(pTHX_ SV *sv, MAGIC *mg) | |
1777 | { | |
53c1dcc0 AL |
1778 | AMT * const amtp = (AMT*)mg->mg_ptr; |
1779 | PERL_UNUSED_ARG(sv); | |
dd374669 | 1780 | |
7918f24d NC |
1781 | PERL_ARGS_ASSERT_MAGIC_FREEOVRLD; |
1782 | ||
d460ef45 NIS |
1783 | if (amtp && AMT_AMAGIC(amtp)) { |
1784 | int i; | |
1785 | for (i = 1; i < NofAMmeth; i++) { | |
53c1dcc0 | 1786 | CV * const cv = amtp->table[i]; |
b37c2d43 | 1787 | if (cv) { |
ad64d0ec | 1788 | SvREFCNT_dec(MUTABLE_SV(cv)); |
601f1833 | 1789 | amtp->table[i] = NULL; |
d460ef45 NIS |
1790 | } |
1791 | } | |
1792 | } | |
1793 | return 0; | |
1794 | } | |
1795 | ||
a0d0e21e | 1796 | /* Updates and caches the CV's */ |
c3a9a790 RGS |
1797 | /* Returns: |
1798 | * 1 on success and there is some overload | |
1799 | * 0 if there is no overload | |
1800 | * -1 if some error occurred and it couldn't croak | |
1801 | */ | |
a0d0e21e | 1802 | |
c3a9a790 | 1803 | int |
242f8760 | 1804 | Perl_Gv_AMupdate(pTHX_ HV *stash, bool destructing) |
a0d0e21e | 1805 | { |
97aff369 | 1806 | dVAR; |
ad64d0ec | 1807 | MAGIC* const mg = mg_find((const SV *)stash, PERL_MAGIC_overload_table); |
a6006777 | 1808 | AMT amt; |
9b439311 | 1809 | const struct mro_meta* stash_meta = HvMROMETA(stash); |
e1a479c5 | 1810 | U32 newgen; |
a0d0e21e | 1811 | |
7918f24d NC |
1812 | PERL_ARGS_ASSERT_GV_AMUPDATE; |
1813 | ||
9b439311 | 1814 | newgen = PL_sub_generation + stash_meta->pkg_gen + stash_meta->cache_gen; |
14899595 NC |
1815 | if (mg) { |
1816 | const AMT * const amtp = (AMT*)mg->mg_ptr; | |
1817 | if (amtp->was_ok_am == PL_amagic_generation | |
e1a479c5 | 1818 | && amtp->was_ok_sub == newgen) { |
c3a9a790 | 1819 | return AMT_OVERLOADED(amtp) ? 1 : 0; |
14899595 | 1820 | } |
ad64d0ec | 1821 | sv_unmagic(MUTABLE_SV(stash), PERL_MAGIC_overload_table); |
14899595 | 1822 | } |
a0d0e21e | 1823 | |
bfcb3514 | 1824 | DEBUG_o( Perl_deb(aTHX_ "Recalcing overload magic in package %s\n",HvNAME_get(stash)) ); |
a0d0e21e | 1825 | |
d460ef45 | 1826 | Zero(&amt,1,AMT); |
3280af22 | 1827 | amt.was_ok_am = PL_amagic_generation; |
e1a479c5 | 1828 | amt.was_ok_sub = newgen; |
a6006777 | 1829 | amt.fallback = AMGfallNO; |
1830 | amt.flags = 0; | |
1831 | ||
a6006777 | 1832 | { |
32251b26 IZ |
1833 | int filled = 0, have_ovl = 0; |
1834 | int i, lim = 1; | |
a6006777 | 1835 | |
22c35a8c | 1836 | /* Work with "fallback" key, which we assume to be first in PL_AMG_names */ |
a6006777 | 1837 | |
89ffc314 | 1838 | /* Try to find via inheritance. */ |
53c1dcc0 AL |
1839 | GV *gv = gv_fetchmeth(stash, PL_AMG_names[0], 2, -1); |
1840 | SV * const sv = gv ? GvSV(gv) : NULL; | |
1841 | CV* cv; | |
89ffc314 IZ |
1842 | |
1843 | if (!gv) | |
32251b26 | 1844 | lim = DESTROY_amg; /* Skip overloading entries. */ |
c69033f2 NC |
1845 | #ifdef PERL_DONT_CREATE_GVSV |
1846 | else if (!sv) { | |
6f207bd3 | 1847 | NOOP; /* Equivalent to !SvTRUE and !SvOK */ |
c69033f2 NC |
1848 | } |
1849 | #endif | |
89ffc314 IZ |
1850 | else if (SvTRUE(sv)) |
1851 | amt.fallback=AMGfallYES; | |
1852 | else if (SvOK(sv)) | |
1853 | amt.fallback=AMGfallNEVER; | |
a6006777 | 1854 | |
32251b26 | 1855 | for (i = 1; i < lim; i++) |
601f1833 | 1856 | amt.table[i] = NULL; |
32251b26 | 1857 | for (; i < NofAMmeth; i++) { |
6136c704 | 1858 | const char * const cooky = PL_AMG_names[i]; |
32251b26 | 1859 | /* Human-readable form, for debugging: */ |
6136c704 | 1860 | const char * const cp = (i >= DESTROY_amg ? cooky : AMG_id2name(i)); |
d279ab82 | 1861 | const STRLEN l = PL_AMG_namelens[i]; |
89ffc314 | 1862 | |
a0288114 | 1863 | DEBUG_o( Perl_deb(aTHX_ "Checking overloading of \"%s\" in package \"%.256s\"\n", |
bfcb3514 | 1864 | cp, HvNAME_get(stash)) ); |
611c1e95 IZ |
1865 | /* don't fill the cache while looking up! |
1866 | Creation of inheritance stubs in intermediate packages may | |
1867 | conflict with the logic of runtime method substitution. | |
1868 | Indeed, for inheritance A -> B -> C, if C overloads "+0", | |
1869 | then we could have created stubs for "(+0" in A and C too. | |
1870 | But if B overloads "bool", we may want to use it for | |
1871 | numifying instead of C's "+0". */ | |
1872 | if (i >= DESTROY_amg) | |
1873 | gv = Perl_gv_fetchmeth_autoload(aTHX_ stash, cooky, l, 0); | |
1874 | else /* Autoload taken care of below */ | |
1875 | gv = Perl_gv_fetchmeth(aTHX_ stash, cooky, l, -1); | |
46fc3d4c | 1876 | cv = 0; |
89ffc314 | 1877 | if (gv && (cv = GvCV(gv))) { |
bfcb3514 | 1878 | const char *hvname; |
44a8e56a | 1879 | if (GvNAMELEN(CvGV(cv)) == 3 && strEQ(GvNAME(CvGV(cv)), "nil") |
bfcb3514 | 1880 | && strEQ(hvname = HvNAME_get(GvSTASH(CvGV(cv))), "overload")) { |
611c1e95 IZ |
1881 | /* This is a hack to support autoloading..., while |
1882 | knowing *which* methods were declared as overloaded. */ | |
44a8e56a | 1883 | /* GvSV contains the name of the method. */ |
6136c704 | 1884 | GV *ngv = NULL; |
c69033f2 | 1885 | SV *gvsv = GvSV(gv); |
a0288114 AL |
1886 | |
1887 | DEBUG_o( Perl_deb(aTHX_ "Resolving method \"%"SVf256\ | |
1888 | "\" for overloaded \"%s\" in package \"%.256s\"\n", | |
ca0270c4 | 1889 | (void*)GvSV(gv), cp, hvname) ); |
c69033f2 NC |
1890 | if (!gvsv || !SvPOK(gvsv) |
1891 | || !(ngv = gv_fetchmethod_autoload(stash, SvPVX_const(gvsv), | |
dc848c6f | 1892 | FALSE))) |
1893 | { | |
a0288114 | 1894 | /* Can be an import stub (created by "can"). */ |
242f8760 | 1895 | if (destructing) { |
c3a9a790 | 1896 | return -1; |
242f8760 RGS |
1897 | } |
1898 | else { | |
1899 | const char * const name = (gvsv && SvPOK(gvsv)) ? SvPVX_const(gvsv) : "???"; | |
1900 | Perl_croak(aTHX_ "%s method \"%.256s\" overloading \"%s\" "\ | |
1901 | "in package \"%.256s\"", | |
1902 | (GvCVGEN(gv) ? "Stub found while resolving" | |
1903 | : "Can't resolve"), | |
1904 | name, cp, hvname); | |
1905 | } | |
44a8e56a | 1906 | } |
dc848c6f | 1907 | cv = GvCV(gv = ngv); |
44a8e56a | 1908 | } |
b464bac0 | 1909 | DEBUG_o( Perl_deb(aTHX_ "Overloading \"%s\" in package \"%.256s\" via \"%.256s::%.256s\"\n", |
bfcb3514 | 1910 | cp, HvNAME_get(stash), HvNAME_get(GvSTASH(CvGV(cv))), |
44a8e56a | 1911 | GvNAME(CvGV(cv))) ); |
1912 | filled = 1; | |
32251b26 IZ |
1913 | if (i < DESTROY_amg) |
1914 | have_ovl = 1; | |
611c1e95 | 1915 | } else if (gv) { /* Autoloaded... */ |
ea726b52 | 1916 | cv = MUTABLE_CV(gv); |
611c1e95 | 1917 | filled = 1; |
44a8e56a | 1918 | } |
ea726b52 | 1919 | amt.table[i]=MUTABLE_CV(SvREFCNT_inc_simple(cv)); |
a0d0e21e | 1920 | } |
a0d0e21e | 1921 | if (filled) { |
a6006777 | 1922 | AMT_AMAGIC_on(&amt); |
32251b26 IZ |
1923 | if (have_ovl) |
1924 | AMT_OVERLOADED_on(&amt); | |
ad64d0ec | 1925 | sv_magic(MUTABLE_SV(stash), 0, PERL_MAGIC_overload_table, |
14befaf4 | 1926 | (char*)&amt, sizeof(AMT)); |
32251b26 | 1927 | return have_ovl; |
a0d0e21e LW |
1928 | } |
1929 | } | |
a6006777 | 1930 | /* Here we have no table: */ |
9cbac4c7 | 1931 | /* no_table: */ |
a6006777 | 1932 | AMT_AMAGIC_off(&amt); |
ad64d0ec | 1933 | sv_magic(MUTABLE_SV(stash), 0, PERL_MAGIC_overload_table, |
14befaf4 | 1934 | (char*)&amt, sizeof(AMTS)); |
c3a9a790 | 1935 | return 0; |
a0d0e21e LW |
1936 | } |
1937 | ||
32251b26 IZ |
1938 | |
1939 | CV* | |
1940 | Perl_gv_handler(pTHX_ HV *stash, I32 id) | |
1941 | { | |
97aff369 | 1942 | dVAR; |
3f8f4626 | 1943 | MAGIC *mg; |
32251b26 | 1944 | AMT *amtp; |
e1a479c5 | 1945 | U32 newgen; |
9b439311 | 1946 | struct mro_meta* stash_meta; |
32251b26 | 1947 | |
bfcb3514 | 1948 | if (!stash || !HvNAME_get(stash)) |
601f1833 | 1949 | return NULL; |
e1a479c5 | 1950 | |
9b439311 BB |
1951 | stash_meta = HvMROMETA(stash); |
1952 | newgen = PL_sub_generation + stash_meta->pkg_gen + stash_meta->cache_gen; | |
e1a479c5 | 1953 | |
ad64d0ec | 1954 | mg = mg_find((const SV *)stash, PERL_MAGIC_overload_table); |
32251b26 IZ |
1955 | if (!mg) { |
1956 | do_update: | |
242f8760 RGS |
1957 | /* If we're looking up a destructor to invoke, we must avoid |
1958 | * that Gv_AMupdate croaks, because we might be dying already */ | |
2dcac756 | 1959 | if (Gv_AMupdate(stash, cBOOL(id == DESTROY_amg)) == -1) { |
242f8760 RGS |
1960 | /* and if it didn't found a destructor, we fall back |
1961 | * to a simpler method that will only look for the | |
1962 | * destructor instead of the whole magic */ | |
1963 | if (id == DESTROY_amg) { | |
1964 | GV * const gv = gv_fetchmethod(stash, "DESTROY"); | |
1965 | if (gv) | |
1966 | return GvCV(gv); | |
1967 | } | |
1968 | return NULL; | |
1969 | } | |
ad64d0ec | 1970 | mg = mg_find((const SV *)stash, PERL_MAGIC_overload_table); |
32251b26 | 1971 | } |
a9fd4e40 | 1972 | assert(mg); |
32251b26 IZ |
1973 | amtp = (AMT*)mg->mg_ptr; |
1974 | if ( amtp->was_ok_am != PL_amagic_generation | |
e1a479c5 | 1975 | || amtp->was_ok_sub != newgen ) |
32251b26 | 1976 | goto do_update; |
3ad83ce7 | 1977 | if (AMT_AMAGIC(amtp)) { |
b7787f18 | 1978 | CV * const ret = amtp->table[id]; |
3ad83ce7 AMS |
1979 | if (ret && isGV(ret)) { /* Autoloading stab */ |
1980 | /* Passing it through may have resulted in a warning | |
1981 | "Inherited AUTOLOAD for a non-method deprecated", since | |
1982 | our caller is going through a function call, not a method call. | |
1983 | So return the CV for AUTOLOAD, setting $AUTOLOAD. */ | |
890ce7af | 1984 | GV * const gv = gv_fetchmethod(stash, PL_AMG_names[id]); |
3ad83ce7 AMS |
1985 | |
1986 | if (gv && GvCV(gv)) | |
1987 | return GvCV(gv); | |
1988 | } | |
1989 | return ret; | |
1990 | } | |
a0288114 | 1991 | |
601f1833 | 1992 | return NULL; |
32251b26 IZ |
1993 | } |
1994 | ||
1995 | ||
6f1401dc DM |
1996 | /* Implement tryAMAGICun_MG macro. |
1997 | Do get magic, then see if the stack arg is overloaded and if so call it. | |
1998 | Flags: | |
1999 | AMGf_set return the arg using SETs rather than assigning to | |
2000 | the targ | |
2001 | AMGf_numeric apply sv_2num to the stack arg. | |
2002 | */ | |
2003 | ||
2004 | bool | |
2005 | Perl_try_amagic_un(pTHX_ int method, int flags) { | |
2006 | dVAR; | |
2007 | dSP; | |
2008 | SV* tmpsv; | |
2009 | SV* const arg = TOPs; | |
2010 | ||
2011 | SvGETMAGIC(arg); | |
2012 | ||
9f8bf298 NC |
2013 | if (SvAMAGIC(arg) && (tmpsv = amagic_call(arg, &PL_sv_undef, method, |
2014 | AMGf_noright | AMGf_unary))) { | |
6f1401dc DM |
2015 | if (flags & AMGf_set) { |
2016 | SETs(tmpsv); | |
2017 | } | |
2018 | else { | |
2019 | dTARGET; | |
2020 | if (SvPADMY(TARG)) { | |
2021 | sv_setsv(TARG, tmpsv); | |
2022 | SETTARG; | |
2023 | } | |
2024 | else | |
2025 | SETs(tmpsv); | |
2026 | } | |
2027 | PUTBACK; | |
2028 | return TRUE; | |
2029 | } | |
2030 | ||
2031 | if ((flags & AMGf_numeric) && SvROK(arg)) | |
2032 | *sp = sv_2num(arg); | |
2033 | return FALSE; | |
2034 | } | |
2035 | ||
2036 | ||
2037 | /* Implement tryAMAGICbin_MG macro. | |
2038 | Do get magic, then see if the two stack args are overloaded and if so | |
2039 | call it. | |
2040 | Flags: | |
2041 | AMGf_set return the arg using SETs rather than assigning to | |
2042 | the targ | |
2043 | AMGf_assign op may be called as mutator (eg +=) | |
2044 | AMGf_numeric apply sv_2num to the stack arg. | |
2045 | */ | |
2046 | ||
2047 | bool | |
2048 | Perl_try_amagic_bin(pTHX_ int method, int flags) { | |
2049 | dVAR; | |
2050 | dSP; | |
2051 | SV* const left = TOPm1s; | |
2052 | SV* const right = TOPs; | |
2053 | ||
2054 | SvGETMAGIC(left); | |
2055 | if (left != right) | |
2056 | SvGETMAGIC(right); | |
2057 | ||
2058 | if (SvAMAGIC(left) || SvAMAGIC(right)) { | |
2059 | SV * const tmpsv = amagic_call(left, right, method, | |
2060 | ((flags & AMGf_assign) && opASSIGN ? AMGf_assign: 0)); | |
2061 | if (tmpsv) { | |
2062 | if (flags & AMGf_set) { | |
2063 | (void)POPs; | |
2064 | SETs(tmpsv); | |
2065 | } | |
2066 | else { | |
2067 | dATARGET; | |
2068 | (void)POPs; | |
2069 | if (opASSIGN || SvPADMY(TARG)) { | |
2070 | sv_setsv(TARG, tmpsv); | |
2071 | SETTARG; | |
2072 | } | |
2073 | else | |
2074 | SETs(tmpsv); | |
2075 | } | |
2076 | PUTBACK; | |
2077 | return TRUE; | |
2078 | } | |
2079 | } | |
2080 | if (flags & AMGf_numeric) { | |
2081 | if (SvROK(left)) | |
2082 | *(sp-1) = sv_2num(left); | |
2083 | if (SvROK(right)) | |
2084 | *sp = sv_2num(right); | |
2085 | } | |
2086 | return FALSE; | |
2087 | } | |
2088 | ||
25a9ffce NC |
2089 | SV * |
2090 | Perl_amagic_deref_call(pTHX_ SV *ref, int method) { | |
2091 | SV *tmpsv = NULL; | |
2092 | ||
2093 | PERL_ARGS_ASSERT_AMAGIC_DEREF_CALL; | |
2094 | ||
2095 | while (SvAMAGIC(ref) && | |
2096 | (tmpsv = amagic_call(ref, &PL_sv_undef, method, | |
2097 | AMGf_noright | AMGf_unary))) { | |
2098 | if (!SvROK(tmpsv)) | |
2099 | Perl_croak(aTHX_ "Overloaded dereference did not return a reference"); | |
2100 | if (tmpsv == ref || SvRV(tmpsv) == SvRV(ref)) { | |
2101 | /* Bail out if it returns us the same reference. */ | |
2102 | return tmpsv; | |
2103 | } | |
2104 | ref = tmpsv; | |
2105 | } | |
2106 | return tmpsv ? tmpsv : ref; | |
2107 | } | |
6f1401dc | 2108 | |
a0d0e21e | 2109 | SV* |
864dbfa3 | 2110 | Perl_amagic_call(pTHX_ SV *left, SV *right, int method, int flags) |
a0d0e21e | 2111 | { |
27da23d5 | 2112 | dVAR; |
b267980d | 2113 | MAGIC *mg; |
9c5ffd7c | 2114 | CV *cv=NULL; |
a0d0e21e | 2115 | CV **cvp=NULL, **ocvp=NULL; |
9c5ffd7c | 2116 | AMT *amtp=NULL, *oamtp=NULL; |
b464bac0 AL |
2117 | int off = 0, off1, lr = 0, notfound = 0; |
2118 | int postpr = 0, force_cpy = 0; | |
2119 | int assign = AMGf_assign & flags; | |
2120 | const int assignshift = assign ? 1 : 0; | |
bf5522a1 | 2121 | int use_default_op = 0; |
497b47a8 JH |
2122 | #ifdef DEBUGGING |
2123 | int fl=0; | |
497b47a8 | 2124 | #endif |
25716404 | 2125 | HV* stash=NULL; |
7918f24d NC |
2126 | |
2127 | PERL_ARGS_ASSERT_AMAGIC_CALL; | |
2128 | ||
e46c382e | 2129 | if ( PL_curcop->cop_hints & HINT_NO_AMAGIC ) { |
20439bc7 | 2130 | SV *lex_mask = cop_hints_fetch_pvs(PL_curcop, "overloading", 0); |
e46c382e YK |
2131 | |
2132 | if ( !lex_mask || !SvOK(lex_mask) ) | |
2133 | /* overloading lexically disabled */ | |
2134 | return NULL; | |
2135 | else if ( lex_mask && SvPOK(lex_mask) ) { | |
2136 | /* we have an entry in the hints hash, check if method has been | |
2137 | * masked by overloading.pm */ | |
d15cd831 | 2138 | STRLEN len; |
e46c382e | 2139 | const int offset = method / 8; |
d87d3eed | 2140 | const int bit = method % 8; |
e46c382e YK |
2141 | char *pv = SvPV(lex_mask, len); |
2142 | ||
d15cd831 | 2143 | /* Bit set, so this overloading operator is disabled */ |
ed15e576 | 2144 | if ( (STRLEN)offset < len && pv[offset] & ( 1 << bit ) ) |
e46c382e YK |
2145 | return NULL; |
2146 | } | |
2147 | } | |
2148 | ||
a0d0e21e | 2149 | if (!(AMGf_noleft & flags) && SvAMAGIC(left) |
25716404 | 2150 | && (stash = SvSTASH(SvRV(left))) |
ad64d0ec | 2151 | && (mg = mg_find((const SV *)stash, PERL_MAGIC_overload_table)) |
b267980d | 2152 | && (ocvp = cvp = (AMT_AMAGIC((AMT*)mg->mg_ptr) |
a6006777 | 2153 | ? (oamtp = amtp = (AMT*)mg->mg_ptr)->table |
d4c19fe8 | 2154 | : NULL)) |
b267980d | 2155 | && ((cv = cvp[off=method+assignshift]) |
748a9306 LW |
2156 | || (assign && amtp->fallback > AMGfallNEVER && /* fallback to |
2157 | * usual method */ | |
497b47a8 JH |
2158 | ( |
2159 | #ifdef DEBUGGING | |
2160 | fl = 1, | |
a0288114 | 2161 | #endif |
497b47a8 | 2162 | cv = cvp[off=method])))) { |
a0d0e21e LW |
2163 | lr = -1; /* Call method for left argument */ |
2164 | } else { | |
2165 | if (cvp && amtp->fallback > AMGfallNEVER && flags & AMGf_unary) { | |
2166 | int logic; | |
2167 | ||
2168 | /* look for substituted methods */ | |
ee239bfe | 2169 | /* In all the covered cases we should be called with assign==0. */ |
a0d0e21e LW |
2170 | switch (method) { |
2171 | case inc_amg: | |
ee239bfe IZ |
2172 | force_cpy = 1; |
2173 | if ((cv = cvp[off=add_ass_amg]) | |
2174 | || ((cv = cvp[off = add_amg]) && (force_cpy = 0, postpr = 1))) { | |
3280af22 | 2175 | right = &PL_sv_yes; lr = -1; assign = 1; |
a0d0e21e LW |
2176 | } |
2177 | break; | |
2178 | case dec_amg: | |
ee239bfe IZ |
2179 | force_cpy = 1; |
2180 | if ((cv = cvp[off = subtr_ass_amg]) | |
2181 | || ((cv = cvp[off = subtr_amg]) && (force_cpy = 0, postpr=1))) { | |
3280af22 | 2182 | right = &PL_sv_yes; lr = -1; assign = 1; |
a0d0e21e LW |
2183 | } |
2184 | break; | |
2185 | case bool__amg: | |
2186 | (void)((cv = cvp[off=numer_amg]) || (cv = cvp[off=string_amg])); | |
2187 | break; | |
2188 | case numer_amg: | |
2189 | (void)((cv = cvp[off=string_amg]) || (cv = cvp[off=bool__amg])); | |
2190 | break; | |
2191 | case string_amg: | |
2192 | (void)((cv = cvp[off=numer_amg]) || (cv = cvp[off=bool__amg])); | |
2193 | break; | |
b7787f18 AL |
2194 | case not_amg: |
2195 | (void)((cv = cvp[off=bool__amg]) | |
2196 | || (cv = cvp[off=numer_amg]) | |
2197 | || (cv = cvp[off=string_amg])); | |
2ab54efd MB |
2198 | if (cv) |
2199 | postpr = 1; | |
b7787f18 | 2200 | break; |
748a9306 LW |
2201 | case copy_amg: |
2202 | { | |
76e3520e GS |
2203 | /* |
2204 | * SV* ref causes confusion with the interpreter variable of | |
2205 | * the same name | |
2206 | */ | |
890ce7af | 2207 | SV* const tmpRef=SvRV(left); |
76e3520e | 2208 | if (!SvROK(tmpRef) && SvTYPE(tmpRef) <= SVt_PVMG) { |
fc36a67e | 2209 | /* |
2210 | * Just to be extra cautious. Maybe in some | |
2211 | * additional cases sv_setsv is safe, too. | |
2212 | */ | |
890ce7af | 2213 | SV* const newref = newSVsv(tmpRef); |
748a9306 | 2214 | SvOBJECT_on(newref); |
96d4b0ee NC |
2215 | /* As a bit of a source compatibility hack, SvAMAGIC() and |
2216 | friends dereference an RV, to behave the same was as when | |
2217 | overloading was stored on the reference, not the referant. | |
2218 | Hence we can't use SvAMAGIC_on() | |
2219 | */ | |
2220 | SvFLAGS(newref) |= SVf_AMAGIC; | |
85fbaab2 | 2221 | SvSTASH_set(newref, MUTABLE_HV(SvREFCNT_inc(SvSTASH(tmpRef)))); |
748a9306 LW |
2222 | return newref; |
2223 | } | |
2224 | } | |
2225 | break; | |
a0d0e21e | 2226 | case abs_amg: |
b267980d | 2227 | if ((cvp[off1=lt_amg] || cvp[off1=ncmp_amg]) |
a0d0e21e | 2228 | && ((cv = cvp[off=neg_amg]) || (cv = cvp[off=subtr_amg]))) { |
890ce7af | 2229 | SV* const nullsv=sv_2mortal(newSViv(0)); |
a0d0e21e | 2230 | if (off1==lt_amg) { |
890ce7af | 2231 | SV* const lessp = amagic_call(left,nullsv, |
a0d0e21e LW |
2232 | lt_amg,AMGf_noright); |
2233 | logic = SvTRUE(lessp); | |
2234 | } else { | |
890ce7af | 2235 | SV* const lessp = amagic_call(left,nullsv, |
a0d0e21e LW |
2236 | ncmp_amg,AMGf_noright); |
2237 | logic = (SvNV(lessp) < 0); | |
2238 | } | |
2239 | if (logic) { | |
2240 | if (off==subtr_amg) { | |
2241 | right = left; | |
748a9306 | 2242 | left = nullsv; |
a0d0e21e LW |
2243 | lr = 1; |
2244 | } | |
2245 | } else { | |
2246 | return left; | |
2247 | } | |
2248 | } | |
2249 | break; | |
2250 | case neg_amg: | |
155aba94 | 2251 | if ((cv = cvp[off=subtr_amg])) { |
a0d0e21e LW |
2252 | right = left; |
2253 | left = sv_2mortal(newSViv(0)); | |
2254 | lr = 1; | |
2255 | } | |
2256 | break; | |
f216259d | 2257 | case int_amg: |
f5284f61 | 2258 | case iter_amg: /* XXXX Eventually should do to_gv. */ |
c4c7412c | 2259 | case ftest_amg: /* XXXX Eventually should do to_gv. */ |
d4b87e75 | 2260 | case regexp_amg: |
b267980d NIS |
2261 | /* FAIL safe */ |
2262 | return NULL; /* Delegate operation to standard mechanisms. */ | |
2263 | break; | |
f5284f61 IZ |
2264 | case to_sv_amg: |
2265 | case to_av_amg: | |
2266 | case to_hv_amg: | |
2267 | case to_gv_amg: | |
2268 | case to_cv_amg: | |
2269 | /* FAIL safe */ | |
b267980d | 2270 | return left; /* Delegate operation to standard mechanisms. */ |
f5284f61 | 2271 | break; |
a0d0e21e LW |
2272 | default: |
2273 | goto not_found; | |
2274 | } | |
2275 | if (!cv) goto not_found; | |
2276 | } else if (!(AMGf_noright & flags) && SvAMAGIC(right) | |
25716404 | 2277 | && (stash = SvSTASH(SvRV(right))) |
ad64d0ec | 2278 | && (mg = mg_find((const SV *)stash, PERL_MAGIC_overload_table)) |
b267980d | 2279 | && (cvp = (AMT_AMAGIC((AMT*)mg->mg_ptr) |
a6006777 | 2280 | ? (amtp = (AMT*)mg->mg_ptr)->table |
d4c19fe8 | 2281 | : NULL)) |
a0d0e21e LW |
2282 | && (cv = cvp[off=method])) { /* Method for right |
2283 | * argument found */ | |
2284 | lr=1; | |
bf5522a1 MB |
2285 | } else if (((cvp && amtp->fallback > AMGfallNEVER) |
2286 | || (ocvp && oamtp->fallback > AMGfallNEVER)) | |
a0d0e21e LW |
2287 | && !(flags & AMGf_unary)) { |
2288 | /* We look for substitution for | |
2289 | * comparison operations and | |
fc36a67e | 2290 | * concatenation */ |
a0d0e21e LW |
2291 | if (method==concat_amg || method==concat_ass_amg |
2292 | || method==repeat_amg || method==repeat_ass_amg) { | |
2293 | return NULL; /* Delegate operation to string conversion */ | |
2294 | } | |
2295 | off = -1; | |
2296 | switch (method) { | |
2297 | case lt_amg: | |
2298 | case le_amg: | |
2299 | case gt_amg: | |
2300 | case ge_amg: | |
2301 | case eq_amg: | |
2302 | case ne_amg: | |
2ab54efd MB |
2303 | off = ncmp_amg; |
2304 | break; | |
a0d0e21e LW |
2305 | case slt_amg: |
2306 | case sle_amg: | |
2307 | case sgt_amg: | |
2308 | case sge_amg: | |
2309 | case seq_amg: | |
2310 | case sne_amg: | |
2ab54efd MB |
2311 | off = scmp_amg; |
2312 | break; | |
a0d0e21e | 2313 | } |
bf5522a1 MB |
2314 | if (off != -1) { |
2315 | if (ocvp && (oamtp->fallback > AMGfallNEVER)) { | |
2316 | cv = ocvp[off]; | |
2317 | lr = -1; | |
2318 | } | |
2319 | if (!cv && (cvp && amtp->fallback > AMGfallNEVER)) { | |
2320 | cv = cvp[off]; | |
2321 | lr = 1; | |
2322 | } | |
2323 | } | |
2324 | if (cv) | |
2ab54efd MB |
2325 | postpr = 1; |
2326 | else | |
2327 | goto not_found; | |
a0d0e21e | 2328 | } else { |
a6006777 | 2329 | not_found: /* No method found, either report or croak */ |
b267980d NIS |
2330 | switch (method) { |
2331 | case to_sv_amg: | |
2332 | case to_av_amg: | |
2333 | case to_hv_amg: | |
2334 | case to_gv_amg: | |
2335 | case to_cv_amg: | |
2336 | /* FAIL safe */ | |
2337 | return left; /* Delegate operation to standard mechanisms. */ | |
2338 | break; | |
2339 | } | |
a0d0e21e LW |
2340 | if (ocvp && (cv=ocvp[nomethod_amg])) { /* Call report method */ |
2341 | notfound = 1; lr = -1; | |
2342 | } else if (cvp && (cv=cvp[nomethod_amg])) { | |
2343 | notfound = 1; lr = 1; | |
bf5522a1 MB |
2344 | } else if ((use_default_op = |
2345 | (!ocvp || oamtp->fallback >= AMGfallYES) | |
2346 | && (!cvp || amtp->fallback >= AMGfallYES)) | |
2347 | && !DEBUG_o_TEST) { | |
4cc0ca18 NC |
2348 | /* Skip generating the "no method found" message. */ |
2349 | return NULL; | |
a0d0e21e | 2350 | } else { |
46fc3d4c | 2351 | SV *msg; |
774d564b | 2352 | if (off==-1) off=method; |
b267980d | 2353 | msg = sv_2mortal(Perl_newSVpvf(aTHX_ |
a0288114 | 2354 | "Operation \"%s\": no method found,%sargument %s%s%s%s", |
89ffc314 | 2355 | AMG_id2name(method + assignshift), |
e7ea3e70 | 2356 | (flags & AMGf_unary ? " " : "\n\tleft "), |
b267980d | 2357 | SvAMAGIC(left)? |
a0d0e21e LW |
2358 | "in overloaded package ": |
2359 | "has no overloaded magic", | |
b267980d | 2360 | SvAMAGIC(left)? |
bfcb3514 | 2361 | HvNAME_get(SvSTASH(SvRV(left))): |
a0d0e21e | 2362 | "", |
b267980d | 2363 | SvAMAGIC(right)? |
e7ea3e70 | 2364 | ",\n\tright argument in overloaded package ": |
b267980d | 2365 | (flags & AMGf_unary |
e7ea3e70 IZ |
2366 | ? "" |
2367 | : ",\n\tright argument has no overloaded magic"), | |
b267980d | 2368 | SvAMAGIC(right)? |
bfcb3514 | 2369 | HvNAME_get(SvSTASH(SvRV(right))): |
46fc3d4c | 2370 | "")); |
bf5522a1 | 2371 | if (use_default_op) { |
b15aece3 | 2372 | DEBUG_o( Perl_deb(aTHX_ "%s", SvPVX_const(msg)) ); |
a0d0e21e | 2373 | } else { |
be2597df | 2374 | Perl_croak(aTHX_ "%"SVf, SVfARG(msg)); |
a0d0e21e LW |
2375 | } |
2376 | return NULL; | |
2377 | } | |
ee239bfe | 2378 | force_cpy = force_cpy || assign; |
a0d0e21e LW |
2379 | } |
2380 | } | |
497b47a8 | 2381 | #ifdef DEBUGGING |
a0d0e21e | 2382 | if (!notfound) { |
497b47a8 | 2383 | DEBUG_o(Perl_deb(aTHX_ |
a0288114 | 2384 | "Overloaded operator \"%s\"%s%s%s:\n\tmethod%s found%s in package %s%s\n", |
497b47a8 JH |
2385 | AMG_id2name(off), |
2386 | method+assignshift==off? "" : | |
a0288114 | 2387 | " (initially \"", |
497b47a8 JH |
2388 | method+assignshift==off? "" : |
2389 | AMG_id2name(method+assignshift), | |
a0288114 | 2390 | method+assignshift==off? "" : "\")", |
497b47a8 JH |
2391 | flags & AMGf_unary? "" : |
2392 | lr==1 ? " for right argument": " for left argument", | |
2393 | flags & AMGf_unary? " for argument" : "", | |
bfcb3514 | 2394 | stash ? HvNAME_get(stash) : "null", |
497b47a8 | 2395 | fl? ",\n\tassignment variant used": "") ); |
ee239bfe | 2396 | } |
497b47a8 | 2397 | #endif |
748a9306 LW |
2398 | /* Since we use shallow copy during assignment, we need |
2399 | * to dublicate the contents, probably calling user-supplied | |
2400 | * version of copy operator | |
2401 | */ | |
ee239bfe IZ |
2402 | /* We need to copy in following cases: |
2403 | * a) Assignment form was called. | |
2404 | * assignshift==1, assign==T, method + 1 == off | |
2405 | * b) Increment or decrement, called directly. | |
2406 | * assignshift==0, assign==0, method + 0 == off | |
2407 | * c) Increment or decrement, translated to assignment add/subtr. | |
b267980d | 2408 | * assignshift==0, assign==T, |
ee239bfe IZ |
2409 | * force_cpy == T |
2410 | * d) Increment or decrement, translated to nomethod. | |
b267980d | 2411 | * assignshift==0, assign==0, |
ee239bfe IZ |
2412 | * force_cpy == T |
2413 | * e) Assignment form translated to nomethod. | |
2414 | * assignshift==1, assign==T, method + 1 != off | |
2415 | * force_cpy == T | |
2416 | */ | |
2417 | /* off is method, method+assignshift, or a result of opcode substitution. | |
2418 | * In the latter case assignshift==0, so only notfound case is important. | |
2419 | */ | |
2420 | if (( (method + assignshift == off) | |
2421 | && (assign || (method == inc_amg) || (method == dec_amg))) | |
2422 | || force_cpy) | |
6f1401dc | 2423 | { |
1b38c28e NC |
2424 | /* newSVsv does not behave as advertised, so we copy missing |
2425 | * information by hand */ | |
2426 | SV *tmpRef = SvRV(left); | |
2427 | SV *rv_copy; | |
31d632c3 | 2428 | if (SvREFCNT(tmpRef) > 1 && (rv_copy = AMG_CALLunary(left,copy_amg))) { |
1b38c28e NC |
2429 | SvRV_set(left, rv_copy); |
2430 | SvSETMAGIC(left); | |
2431 | SvREFCNT_dec(tmpRef); | |
2432 | } | |
6f1401dc DM |
2433 | } |
2434 | ||
a0d0e21e LW |
2435 | { |
2436 | dSP; | |
2437 | BINOP myop; | |
2438 | SV* res; | |
b7787f18 | 2439 | const bool oldcatch = CATCH_GET; |
a0d0e21e | 2440 | |
54310121 | 2441 | CATCH_SET(TRUE); |
a0d0e21e LW |
2442 | Zero(&myop, 1, BINOP); |
2443 | myop.op_last = (OP *) &myop; | |
b37c2d43 | 2444 | myop.op_next = NULL; |
54310121 | 2445 | myop.op_flags = OPf_WANT_SCALAR | OPf_STACKED; |
a0d0e21e | 2446 | |
e788e7d3 | 2447 | PUSHSTACKi(PERLSI_OVERLOAD); |
a0d0e21e | 2448 | ENTER; |
462e5cf6 | 2449 | SAVEOP(); |
533c011a | 2450 | PL_op = (OP *) &myop; |
3280af22 | 2451 | if (PERLDB_SUB && PL_curstash != PL_debstash) |
533c011a | 2452 | PL_op->op_private |= OPpENTERSUB_DB; |
a0d0e21e | 2453 | PUTBACK; |
897d3989 | 2454 | Perl_pp_pushmark(aTHX); |
a0d0e21e | 2455 | |
924508f0 | 2456 | EXTEND(SP, notfound + 5); |
a0d0e21e LW |
2457 | PUSHs(lr>0? right: left); |
2458 | PUSHs(lr>0? left: right); | |
3280af22 | 2459 | PUSHs( lr > 0 ? &PL_sv_yes : ( assign ? &PL_sv_undef : &PL_sv_no )); |
a0d0e21e | 2460 | if (notfound) { |
59cd0e26 NC |
2461 | PUSHs(newSVpvn_flags(AMG_id2name(method + assignshift), |
2462 | AMG_id2namelen(method + assignshift), SVs_TEMP)); | |
a0d0e21e | 2463 | } |
ad64d0ec | 2464 | PUSHs(MUTABLE_SV(cv)); |
a0d0e21e LW |
2465 | PUTBACK; |
2466 | ||
139d0ce6 | 2467 | if ((PL_op = PL_ppaddr[OP_ENTERSUB](aTHX))) |
cea2e8a9 | 2468 | CALLRUNOPS(aTHX); |
a0d0e21e LW |
2469 | LEAVE; |
2470 | SPAGAIN; | |
2471 | ||
2472 | res=POPs; | |
ebafeae7 | 2473 | PUTBACK; |
d3acc0f7 | 2474 | POPSTACK; |
54310121 | 2475 | CATCH_SET(oldcatch); |
a0d0e21e | 2476 | |
a0d0e21e | 2477 | if (postpr) { |
b7787f18 | 2478 | int ans; |
a0d0e21e LW |
2479 | switch (method) { |
2480 | case le_amg: | |
2481 | case sle_amg: | |
2482 | ans=SvIV(res)<=0; break; | |
2483 | case lt_amg: | |
2484 | case slt_amg: | |
2485 | ans=SvIV(res)<0; break; | |
2486 | case ge_amg: | |
2487 | case sge_amg: | |
2488 | ans=SvIV(res)>=0; break; | |
2489 | case gt_amg: | |
2490 | case sgt_amg: | |
2491 | ans=SvIV(res)>0; break; | |
2492 | case eq_amg: | |
2493 | case seq_amg: | |
2494 | ans=SvIV(res)==0; break; | |
2495 | case ne_amg: | |
2496 | case sne_amg: | |
2497 | ans=SvIV(res)!=0; break; | |
2498 | case inc_amg: | |
2499 | case dec_amg: | |
bbce6d69 | 2500 | SvSetSV(left,res); return left; |
dc437b57 | 2501 | case not_amg: |
fe7ac86a | 2502 | ans=!SvTRUE(res); break; |
b7787f18 AL |
2503 | default: |
2504 | ans=0; break; | |
a0d0e21e | 2505 | } |
54310121 | 2506 | return boolSV(ans); |
748a9306 LW |
2507 | } else if (method==copy_amg) { |
2508 | if (!SvROK(res)) { | |
cea2e8a9 | 2509 | Perl_croak(aTHX_ "Copy method did not return a reference"); |
748a9306 LW |
2510 | } |
2511 | return SvREFCNT_inc(SvRV(res)); | |
a0d0e21e LW |
2512 | } else { |
2513 | return res; | |
2514 | } | |
2515 | } | |
2516 | } | |
c9d5ac95 GS |
2517 | |
2518 | /* | |
7fc63493 | 2519 | =for apidoc is_gv_magical_sv |
c9d5ac95 GS |
2520 | |
2521 | Returns C<TRUE> if given the name of a magical GV. | |
2522 | ||
2523 | Currently only useful internally when determining if a GV should be | |
2524 | created even in rvalue contexts. | |
2525 | ||
2526 | C<flags> is not used at present but available for future extension to | |
2527 | allow selecting particular classes of magical variable. | |
2528 | ||
b9b0e72c NC |
2529 | Currently assumes that C<name> is NUL terminated (as well as len being valid). |
2530 | This assumption is met by all callers within the perl core, which all pass | |
2531 | pointers returned by SvPV. | |
2532 | ||
c9d5ac95 GS |
2533 | =cut |
2534 | */ | |
9d8f40c4 | 2535 | |
c9d5ac95 | 2536 | bool |
9d8f40c4 | 2537 | Perl_is_gv_magical_sv(pTHX_ SV *const name_sv, U32 flags) |
c9d5ac95 | 2538 | { |
9d8f40c4 NC |
2539 | STRLEN len; |
2540 | const char *const name = SvPV_const(name_sv, len); | |
9d4ba2ae | 2541 | |
9d8f40c4 NC |
2542 | PERL_UNUSED_ARG(flags); |
2543 | PERL_ARGS_ASSERT_IS_GV_MAGICAL_SV; | |
7918f24d | 2544 | |
b9b0e72c | 2545 | if (len > 1) { |
b464bac0 | 2546 | const char * const name1 = name + 1; |
b9b0e72c NC |
2547 | switch (*name) { |
2548 | case 'I': | |
f2df7081 | 2549 | if (len == 3 && name[1] == 'S' && name[2] == 'A') |
b9b0e72c NC |
2550 | goto yes; |
2551 | break; | |
2552 | case 'O': | |
9431620d | 2553 | if (len == 8 && strEQ(name1, "VERLOAD")) |
b9b0e72c NC |
2554 | goto yes; |
2555 | break; | |
2556 | case 'S': | |
9431620d | 2557 | if (len == 3 && name[1] == 'I' && name[2] == 'G') |
b9b0e72c NC |
2558 | goto yes; |
2559 | break; | |
2560 | /* Using ${^...} variables is likely to be sufficiently rare that | |
2561 | it seems sensible to avoid the space hit of also checking the | |
2562 | length. */ | |
2563 | case '\017': /* ${^OPEN} */ | |
9431620d | 2564 | if (strEQ(name1, "PEN")) |
b9b0e72c NC |
2565 | goto yes; |
2566 | break; | |
2567 | case '\024': /* ${^TAINT} */ | |
9431620d | 2568 | if (strEQ(name1, "AINT")) |
b9b0e72c NC |
2569 | goto yes; |
2570 | break; | |
2571 | case '\025': /* ${^UNICODE} */ | |
9431620d | 2572 | if (strEQ(name1, "NICODE")) |
b9b0e72c | 2573 | goto yes; |
a0288114 | 2574 | if (strEQ(name1, "TF8LOCALE")) |
7cebcbc0 | 2575 | goto yes; |
b9b0e72c NC |
2576 | break; |
2577 | case '\027': /* ${^WARNING_BITS} */ | |
9431620d | 2578 | if (strEQ(name1, "ARNING_BITS")) |
b9b0e72c NC |
2579 | goto yes; |
2580 | break; | |
2581 | case '1': | |
2582 | case '2': | |
2583 | case '3': | |
2584 | case '4': | |
2585 | case '5': | |
2586 | case '6': | |
2587 | case '7': | |
2588 | case '8': | |
2589 | case '9': | |
c9d5ac95 | 2590 | { |
7fc63493 | 2591 | const char *end = name + len; |
c9d5ac95 GS |
2592 | while (--end > name) { |
2593 | if (!isDIGIT(*end)) | |
2594 | return FALSE; | |
2595 | } | |
b9b0e72c NC |
2596 | goto yes; |
2597 | } | |
2598 | } | |
2599 | } else { | |
2600 | /* Because we're already assuming that name is NUL terminated | |
2601 | below, we can treat an empty name as "\0" */ | |
2602 | switch (*name) { | |
2603 | case '&': | |
2604 | case '`': | |
2605 | case '\'': | |
2606 | case ':': | |
2607 | case '?': | |
2608 | case '!': | |
2609 | case '-': | |
2610 | case '#': | |
2611 | case '[': | |
2612 | case '^': | |
2613 | case '~': | |
2614 | case '=': | |
2615 | case '%': | |
2616 | case '.': | |
2617 | case '(': | |
2618 | case ')': | |
2619 | case '<': | |
2620 | case '>': | |
b9b0e72c NC |
2621 | case '\\': |
2622 | case '/': | |
2623 | case '|': | |
2624 | case '+': | |
2625 | case ';': | |
2626 | case ']': | |
2627 | case '\001': /* $^A */ | |
2628 | case '\003': /* $^C */ | |
2629 | case '\004': /* $^D */ | |
2630 | case '\005': /* $^E */ | |
2631 | case '\006': /* $^F */ | |
2632 | case '\010': /* $^H */ | |
2633 | case '\011': /* $^I, NOT \t in EBCDIC */ | |
2634 | case '\014': /* $^L */ | |
2635 | case '\016': /* $^N */ | |
2636 | case '\017': /* $^O */ | |
2637 | case '\020': /* $^P */ | |
2638 | case '\023': /* $^S */ | |
2639 | case '\024': /* $^T */ | |
2640 | case '\026': /* $^V */ | |
2641 | case '\027': /* $^W */ | |
2642 | case '1': | |
2643 | case '2': | |
2644 | case '3': | |
2645 | case '4': | |
2646 | case '5': | |
2647 | case '6': | |
2648 | case '7': | |
2649 | case '8': | |
2650 | case '9': | |
2651 | yes: | |
2652 | return TRUE; | |
2653 | default: | |
2654 | break; | |
c9d5ac95 | 2655 | } |
c9d5ac95 GS |
2656 | } |
2657 | return FALSE; | |
2658 | } | |
66610fdd | 2659 | |
f5c1e807 NC |
2660 | void |
2661 | Perl_gv_name_set(pTHX_ GV *gv, const char *name, U32 len, U32 flags) | |
2662 | { | |
2663 | dVAR; | |
acda4c6a | 2664 | U32 hash; |
f5c1e807 | 2665 | |
7918f24d | 2666 | PERL_ARGS_ASSERT_GV_NAME_SET; |
f5c1e807 NC |
2667 | PERL_UNUSED_ARG(flags); |
2668 | ||
acda4c6a NC |
2669 | if (len > I32_MAX) |
2670 | Perl_croak(aTHX_ "panic: gv name too long (%"UVuf")", (UV) len); | |
2671 | ||
ae8cc45f NC |
2672 | if (!(flags & GV_ADD) && GvNAME_HEK(gv)) { |
2673 | unshare_hek(GvNAME_HEK(gv)); | |
2674 | } | |
2675 | ||
acda4c6a | 2676 | PERL_HASH(hash, name, len); |
9f616d01 | 2677 | GvNAME_HEK(gv) = share_hek(name, len, hash); |
f5c1e807 NC |
2678 | } |
2679 | ||
66610fdd | 2680 | /* |
f7461760 Z |
2681 | =for apidoc gv_try_downgrade |
2682 | ||
2867cdbc Z |
2683 | If the typeglob C<gv> can be expressed more succinctly, by having |
2684 | something other than a real GV in its place in the stash, replace it | |
2685 | with the optimised form. Basic requirements for this are that C<gv> | |
2686 | is a real typeglob, is sufficiently ordinary, and is only referenced | |
2687 | from its package. This function is meant to be used when a GV has been | |
2688 | looked up in part to see what was there, causing upgrading, but based | |
2689 | on what was found it turns out that the real GV isn't required after all. | |
2690 | ||
2691 | If C<gv> is a completely empty typeglob, it is deleted from the stash. | |
2692 | ||
2693 | If C<gv> is a typeglob containing only a sufficiently-ordinary constant | |
2694 | sub, the typeglob is replaced with a scalar-reference placeholder that | |
2695 | more compactly represents the same thing. | |
f7461760 Z |
2696 | |
2697 | =cut | |
2698 | */ | |
2699 | ||
2700 | void | |
2701 | Perl_gv_try_downgrade(pTHX_ GV *gv) | |
2702 | { | |
2703 | HV *stash; | |
2704 | CV *cv; | |
2705 | HEK *namehek; | |
2706 | SV **gvp; | |
2707 | PERL_ARGS_ASSERT_GV_TRY_DOWNGRADE; | |
95f56751 FC |
2708 | |
2709 | /* XXX Why and where does this leave dangling pointers during global | |
2710 | destruction? */ | |
627364f1 | 2711 | if (PL_phase == PERL_PHASE_DESTRUCT) return; |
95f56751 | 2712 | |
2867cdbc | 2713 | if (!(SvREFCNT(gv) == 1 && SvTYPE(gv) == SVt_PVGV && !SvFAKE(gv) && |
803f2748 | 2714 | !SvOBJECT(gv) && !SvREADONLY(gv) && |
f7461760 | 2715 | isGV_with_GP(gv) && GvGP(gv) && |
2867cdbc | 2716 | !GvINTRO(gv) && GvREFCNT(gv) == 1 && |
f7461760 | 2717 | !GvSV(gv) && !GvAV(gv) && !GvHV(gv) && !GvIOp(gv) && !GvFORM(gv) && |
099be4f1 | 2718 | GvEGVx(gv) == gv && (stash = GvSTASH(gv)))) |
2867cdbc | 2719 | return; |
803f2748 DM |
2720 | if (SvMAGICAL(gv)) { |
2721 | MAGIC *mg; | |
2722 | /* only backref magic is allowed */ | |
2723 | if (SvGMAGICAL(gv) || SvSMAGICAL(gv)) | |
2724 | return; | |
2725 | for (mg = SvMAGIC(gv); mg; mg = mg->mg_moremagic) { | |
2726 | if (mg->mg_type != PERL_MAGIC_backref) | |
2727 | return; | |
2728 | } | |
2729 | } | |
2867cdbc Z |
2730 | cv = GvCV(gv); |
2731 | if (!cv) { | |
2732 | HEK *gvnhek = GvNAME_HEK(gv); | |
2733 | (void)hv_delete(stash, HEK_KEY(gvnhek), | |
2734 | HEK_UTF8(gvnhek) ? -HEK_LEN(gvnhek) : HEK_LEN(gvnhek), G_DISCARD); | |
2735 | } else if (GvMULTI(gv) && cv && | |
f7461760 Z |
2736 | !SvOBJECT(cv) && !SvMAGICAL(cv) && !SvREADONLY(cv) && |
2737 | CvSTASH(cv) == stash && CvGV(cv) == gv && | |
2738 | CvCONST(cv) && !CvMETHOD(cv) && !CvLVALUE(cv) && !CvUNIQUE(cv) && | |
2739 | !CvNODEBUG(cv) && !CvCLONE(cv) && !CvCLONED(cv) && !CvANON(cv) && | |
2740 | (namehek = GvNAME_HEK(gv)) && | |
2741 | (gvp = hv_fetch(stash, HEK_KEY(namehek), | |
2742 | HEK_LEN(namehek)*(HEK_UTF8(namehek) ? -1 : 1), 0)) && | |
2743 | *gvp == (SV*)gv) { | |
2744 | SV *value = SvREFCNT_inc(CvXSUBANY(cv).any_ptr); | |
2745 | SvREFCNT(gv) = 0; | |
2746 | sv_clear((SV*)gv); | |
2747 | SvREFCNT(gv) = 1; | |
2748 | SvFLAGS(gv) = SVt_IV|SVf_ROK; | |
2749 | SvANY(gv) = (XPVGV*)((char*)&(gv->sv_u.svu_iv) - | |
2750 | STRUCT_OFFSET(XPVIV, xiv_iv)); | |
2751 | SvRV_set(gv, value); | |
2752 | } | |
2753 | } | |
2754 | ||
2755 | /* | |
66610fdd RGS |
2756 | * Local variables: |
2757 | * c-indentation-style: bsd | |
2758 | * c-basic-offset: 4 | |
2759 | * indent-tabs-mode: t | |
2760 | * End: | |
2761 | * | |
37442d52 RGS |
2762 | * ex: set ts=8 sts=4 sw=4 noet: |
2763 | */ |