3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, by Larry Wall and others
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.
12 * 'Mercy!' cried Gandalf. 'If the giving of information is to be the cure
13 * of your inquisitiveness, I shall spend all the rest of my days answering
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,'
23 A GV is a structure which corresponds to to a Perl typeglob, ie *foo.
24 It is a structure that holds a pointer to a scalar, an array, a hash etc,
25 corresponding to $foo, @foo, %foo.
27 GVs are usually found as values in stashes (symbol table hashes) where
28 Perl stores its global variables.
37 static const char S_autoload[] = "AUTOLOAD";
38 static const STRLEN S_autolen = sizeof(S_autoload)-1;
41 #ifdef PERL_DONT_CREATE_GVSV
43 Perl_gv_SVadd(pTHX_ GV *gv)
45 if (!gv || SvTYPE((SV*)gv) != SVt_PVGV)
46 Perl_croak(aTHX_ "Bad symbol for scalar");
54 Perl_gv_AVadd(pTHX_ register GV *gv)
56 if (!gv || SvTYPE((SV*)gv) != SVt_PVGV)
57 Perl_croak(aTHX_ "Bad symbol for array");
64 Perl_gv_HVadd(pTHX_ register GV *gv)
66 if (!gv || SvTYPE((SV*)gv) != SVt_PVGV)
67 Perl_croak(aTHX_ "Bad symbol for hash");
74 Perl_gv_IOadd(pTHX_ register GV *gv)
77 if (!gv || SvTYPE((SV*)gv) != SVt_PVGV) {
80 * if it walks like a dirhandle, then let's assume that
81 * this is a dirhandle.
83 const char * const fh =
84 PL_op->op_type == OP_READDIR ||
85 PL_op->op_type == OP_TELLDIR ||
86 PL_op->op_type == OP_SEEKDIR ||
87 PL_op->op_type == OP_REWINDDIR ||
88 PL_op->op_type == OP_CLOSEDIR ?
89 "dirhandle" : "filehandle";
90 Perl_croak(aTHX_ "Bad symbol for %s", fh);
94 #ifdef GV_UNIQUE_CHECK
96 Perl_croak(aTHX_ "Bad symbol for filehandle (GV is unique)");
105 Perl_gv_fetchfile(pTHX_ const char *name)
116 tmplen = strlen(name) + 2;
117 if (tmplen < sizeof smallbuf)
120 Newx(tmpbuf, tmplen + 1, char);
121 /* This is where the debugger's %{"::_<$filename"} hash is created */
124 memcpy(tmpbuf + 2, name, tmplen - 1);
125 gv = *(GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, TRUE);
127 gv_init(gv, PL_defstash, tmpbuf, tmplen, FALSE);
128 #ifdef PERL_DONT_CREATE_GVSV
129 GvSV(gv) = newSVpvn(name, tmplen - 2);
131 sv_setpvn(GvSV(gv), name, tmplen - 2);
134 hv_magic(GvHVn(gv_AVadd(gv)), NULL, PERL_MAGIC_dbfile);
136 if (tmpbuf != smallbuf)
142 =for apidoc gv_const_sv
144 If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for
145 inlining, or C<gv> is a placeholder reference that would be promoted to such
146 a typeglob, then returns the value returned by the sub. Otherwise, returns
153 Perl_gv_const_sv(pTHX_ GV *gv)
155 if (SvTYPE(gv) == SVt_PVGV)
156 return cv_const_sv(GvCVu(gv));
157 return SvROK(gv) ? SvRV(gv) : NULL;
161 Perl_newGP(pTHX_ GV *const gv)
164 const char *const file = CopFILE(PL_curcop) ? CopFILE(PL_curcop) : "";
165 STRLEN len = strlen(file);
168 PERL_HASH(hash, file, len);
172 #ifndef PERL_DONT_CREATE_GVSV
173 gp->gv_sv = newSV(0);
176 gp->gp_line = CopLINE(PL_curcop);
177 /* XXX Ideally this cast would be replaced with a change to const char*
179 gp->gp_file_hek = share_hek(file, len, hash);
187 Perl_gv_init(pTHX_ GV *gv, HV *stash, const char *name, STRLEN len, int multi)
190 const U32 old_type = SvTYPE(gv);
191 const bool doproto = old_type > SVt_NULL;
192 const char * const proto = (doproto && SvPOK(gv)) ? SvPVX_const(gv) : NULL;
193 SV *const has_constant = doproto && SvROK(gv) ? SvRV(gv) : NULL;
194 const U32 exported_constant = has_constant ? SvPCS_IMPORTED(gv) : 0;
196 assert (!(proto && has_constant));
199 /* The constant has to be a simple scalar type. */
200 switch (SvTYPE(has_constant)) {
206 Perl_croak(aTHX_ "Cannot convert a reference to %s to typeglob",
207 sv_reftype(has_constant, 0));
215 if (old_type < SVt_PVGV) {
216 if (old_type >= SVt_PV)
218 sv_upgrade((SV*)gv, SVt_PVGV);
226 Safefree(SvPVX_mutable(gv));
231 GvGP(gv) = Perl_newGP(aTHX_ gv);
234 Perl_sv_add_backref(aTHX_ (SV*)stash, (SV*)gv);
235 gv_name_set(gv, name, len, GV_ADD);
236 if (multi || doproto) /* doproto means it _was_ mentioned */
238 if (doproto) { /* Replicate part of newSUB here. */
241 /* newCONSTSUB takes ownership of the reference from us. */
242 GvCV(gv) = newCONSTSUB(stash, name, has_constant);
243 /* If this reference was a copy of another, then the subroutine
244 must have been "imported", by a Perl space assignment to a GV
245 from a reference to CV. */
246 if (exported_constant)
247 GvIMPORTED_CV_on(gv);
249 /* XXX unsafe for threads if eval_owner isn't held */
250 (void) start_subparse(0,0); /* Create empty CV in compcv. */
251 GvCV(gv) = PL_compcv;
257 CvFILE_set_from_cop(GvCV(gv), PL_curcop);
258 CvSTASH(GvCV(gv)) = PL_curstash;
260 sv_setpv((SV*)GvCV(gv), proto);
267 S_gv_init_sv(pTHX_ GV *gv, I32 sv_type)
279 #ifdef PERL_DONT_CREATE_GVSV
292 =for apidoc gv_fetchmeth
294 Returns the glob with the given C<name> and a defined subroutine or
295 C<NULL>. The glob lives in the given C<stash>, or in the stashes
296 accessible via @ISA and UNIVERSAL::.
298 The argument C<level> should be either 0 or -1. If C<level==0>, as a
299 side-effect creates a glob with the given C<name> in the given C<stash>
300 which in the case of success contains an alias for the subroutine, and sets
301 up caching info for this glob. Similarly for all the searched stashes.
303 This function grants C<"SUPER"> token as a postfix of the stash name. The
304 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
305 visible to Perl code. So when calling C<call_sv>, you should not use
306 the GV directly; instead, you should use the method's CV, which can be
307 obtained from the GV with the C<GvCV> macro.
313 Perl_gv_fetchmeth(pTHX_ HV *stash, const char *name, STRLEN len, I32 level)
322 HV* lastchance = NULL;
324 /* UNIVERSAL methods should be callable without a stash */
326 level = -1; /* probably appropriate */
327 if(!(stash = gv_stashpvs("UNIVERSAL", FALSE)))
331 hvname = HvNAME_get(stash);
334 "Can't use anonymous symbol table for method lookup");
336 if ((level > 100) || (level < -100))
337 Perl_croak(aTHX_ "Recursive inheritance detected while looking for method '%s' in package '%s'",
340 DEBUG_o( Perl_deb(aTHX_ "Looking for method %s in package %s\n",name,hvname) );
342 gvp = (GV**)hv_fetch(stash, name, len, (level >= 0));
347 if (SvTYPE(topgv) != SVt_PVGV)
348 gv_init(topgv, stash, name, len, TRUE);
349 if ((cv = GvCV(topgv))) {
350 /* If genuine method or valid cache entry, use it */
351 if (!GvCVGEN(topgv) || GvCVGEN(topgv) == PL_sub_generation)
353 /* Stale cached entry: junk it */
355 GvCV(topgv) = cv = NULL;
358 else if (GvCVGEN(topgv) == PL_sub_generation)
359 return 0; /* cache indicates sub doesn't exist */
362 gvp = (GV**)hv_fetchs(stash, "ISA", FALSE);
363 av = (gvp && (gv = *gvp) && gv != (GV*)&PL_sv_undef) ? GvAV(gv) : NULL;
365 /* create and re-create @.*::SUPER::ISA on demand */
366 if (!av || !SvMAGIC(av)) {
367 STRLEN packlen = HvNAMELEN_get(stash);
369 if (packlen >= 7 && strEQ(hvname + packlen - 7, "::SUPER")) {
373 basestash = gv_stashpvn(hvname, packlen, TRUE);
374 gvp = (GV**)hv_fetchs(basestash, "ISA", FALSE);
375 if (gvp && (gv = *gvp) != (GV*)&PL_sv_undef && (av = GvAV(gv))) {
376 gvp = (GV**)hv_fetchs(stash, "ISA", TRUE);
377 if (!gvp || !(gv = *gvp))
378 Perl_croak(aTHX_ "Cannot create %s::ISA", hvname);
379 if (SvTYPE(gv) != SVt_PVGV)
380 gv_init(gv, stash, "ISA", 3, TRUE);
381 SvREFCNT_dec(GvAV(gv));
382 GvAV(gv) = (AV*)SvREFCNT_inc_simple(av);
388 SV** svp = AvARRAY(av);
389 /* NOTE: No support for tied ISA */
390 I32 items = AvFILLp(av) + 1;
392 SV* const sv = *svp++;
393 HV* const basestash = gv_stashsv(sv, FALSE);
395 if (ckWARN(WARN_MISC))
396 Perl_warner(aTHX_ packWARN(WARN_MISC), "Can't locate package %"SVf" for @%s::ISA",
400 gv = gv_fetchmeth(basestash, name, len,
401 (level >= 0) ? level + 1 : level - 1);
407 /* if at top level, try UNIVERSAL */
409 if (level == 0 || level == -1) {
410 lastchance = gv_stashpvs("UNIVERSAL", FALSE);
413 if ((gv = gv_fetchmeth(lastchance, name, len,
414 (level >= 0) ? level + 1 : level - 1)))
418 * Cache method in topgv if:
419 * 1. topgv has no synonyms (else inheritance crosses wires)
420 * 2. method isn't a stub (else AUTOLOAD fails spectacularly)
423 GvREFCNT(topgv) == 1 &&
425 (CvROOT(cv) || CvXSUB(cv)))
427 if ((cv = GvCV(topgv)))
429 GvCV(topgv) = (CV*)SvREFCNT_inc(GvCV(gv));
430 GvCVGEN(topgv) = PL_sub_generation;
434 else if (topgv && GvREFCNT(topgv) == 1) {
435 /* cache the fact that the method is not defined */
436 GvCVGEN(topgv) = PL_sub_generation;
445 =for apidoc gv_fetchmeth_autoload
447 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
448 Returns a glob for the subroutine.
450 For an autoloaded subroutine without a GV, will create a GV even
451 if C<level < 0>. For an autoloaded subroutine without a stub, GvCV()
452 of the result may be zero.
458 Perl_gv_fetchmeth_autoload(pTHX_ HV *stash, const char *name, STRLEN len, I32 level)
460 GV *gv = gv_fetchmeth(stash, name, len, level);
467 return NULL; /* UNIVERSAL::AUTOLOAD could cause trouble */
468 if (len == S_autolen && strnEQ(name, S_autoload, S_autolen))
470 if (!(gv = gv_fetchmeth(stash, S_autoload, S_autolen, FALSE)))
473 if (!(CvROOT(cv) || CvXSUB(cv)))
475 /* Have an autoload */
476 if (level < 0) /* Cannot do without a stub */
477 gv_fetchmeth(stash, name, len, 0);
478 gvp = (GV**)hv_fetch(stash, name, len, (level >= 0));
487 =for apidoc gv_fetchmethod_autoload
489 Returns the glob which contains the subroutine to call to invoke the method
490 on the C<stash>. In fact in the presence of autoloading this may be the
491 glob for "AUTOLOAD". In this case the corresponding variable $AUTOLOAD is
494 The third parameter of C<gv_fetchmethod_autoload> determines whether
495 AUTOLOAD lookup is performed if the given method is not present: non-zero
496 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
497 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
498 with a non-zero C<autoload> parameter.
500 These functions grant C<"SUPER"> token as a prefix of the method name. Note
501 that if you want to keep the returned glob for a long time, you need to
502 check for it being "AUTOLOAD", since at the later time the call may load a
503 different subroutine due to $AUTOLOAD changing its value. Use the glob
504 created via a side effect to do this.
506 These functions have the same side-effects and as C<gv_fetchmeth> with
507 C<level==0>. C<name> should be writable if contains C<':'> or C<'
508 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
509 C<call_sv> apply equally to these functions.
515 Perl_gv_fetchmethod_autoload(pTHX_ HV *stash, const char *name, I32 autoload)
518 register const char *nend;
519 const char *nsplit = NULL;
523 if (stash && SvTYPE(stash) < SVt_PVHV)
526 for (nend = name; *nend; nend++) {
529 else if (*nend == ':' && *(nend + 1) == ':')
533 const char * const origname = name;
537 if ((nsplit - origname) == 5 && strnEQ(origname, "SUPER", 5)) {
538 /* ->SUPER::method should really be looked up in original stash */
539 SV * const tmpstr = sv_2mortal(Perl_newSVpvf(aTHX_ "%s::SUPER",
540 CopSTASHPV(PL_curcop)));
541 /* __PACKAGE__::SUPER stash should be autovivified */
542 stash = gv_stashpvn(SvPVX_const(tmpstr), SvCUR(tmpstr), TRUE);
543 DEBUG_o( Perl_deb(aTHX_ "Treating %s as %s::%s\n",
544 origname, HvNAME_get(stash), name) );
547 /* don't autovifify if ->NoSuchStash::method */
548 stash = gv_stashpvn(origname, nsplit - origname, FALSE);
550 /* however, explicit calls to Pkg::SUPER::method may
551 happen, and may require autovivification to work */
552 if (!stash && (nsplit - origname) >= 7 &&
553 strnEQ(nsplit - 7, "::SUPER", 7) &&
554 gv_stashpvn(origname, nsplit - origname - 7, FALSE))
555 stash = gv_stashpvn(origname, nsplit - origname, TRUE);
560 gv = gv_fetchmeth(stash, name, nend - name, 0);
562 if (strEQ(name,"import") || strEQ(name,"unimport"))
563 gv = (GV*)&PL_sv_yes;
565 gv = gv_autoload4(ostash, name, nend - name, TRUE);
568 CV* const cv = GvCV(gv);
569 if (!CvROOT(cv) && !CvXSUB(cv)) {
577 if (GvCV(stubgv) != cv) /* orphaned import */
580 autogv = gv_autoload4(GvSTASH(stubgv),
581 GvNAME(stubgv), GvNAMELEN(stubgv), TRUE);
591 Perl_gv_autoload4(pTHX_ HV *stash, const char *name, STRLEN len, I32 method)
599 const char *packname = "";
600 STRLEN packname_len = 0;
602 if (len == S_autolen && strnEQ(name, S_autoload, S_autolen))
605 if (SvTYPE(stash) < SVt_PVHV) {
606 packname = SvPV_const((SV*)stash, packname_len);
610 packname = HvNAME_get(stash);
611 packname_len = HvNAMELEN_get(stash);
614 if (!(gv = gv_fetchmeth(stash, S_autoload, S_autolen, FALSE)))
618 if (!(CvROOT(cv) || CvXSUB(cv)))
622 * Inheriting AUTOLOAD for non-methods works ... for now.
624 if (!method && (GvCVGEN(gv) || GvSTASH(gv) != stash)
625 && ckWARN2(WARN_DEPRECATED, WARN_SYNTAX)
627 Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
628 "Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated",
629 packname, (int)len, name);
632 /* rather than lookup/init $AUTOLOAD here
633 * only to have the XSUB do another lookup for $AUTOLOAD
634 * and split that value on the last '::',
635 * pass along the same data via some unused fields in the CV
638 SvPV_set(cv, (char *)name); /* cast to lose constness warning */
644 * Given &FOO::AUTOLOAD, set $FOO::AUTOLOAD to desired function name.
645 * The subroutine's original name may not be "AUTOLOAD", so we don't
646 * use that, but for lack of anything better we will use the sub's
647 * original package to look up $AUTOLOAD.
649 varstash = GvSTASH(CvGV(cv));
650 vargv = *(GV**)hv_fetch(varstash, S_autoload, S_autolen, TRUE);
654 gv_init(vargv, varstash, S_autoload, S_autolen, FALSE);
655 #ifdef PERL_DONT_CREATE_GVSV
656 GvSV(vargv) = newSV(0);
660 varsv = GvSVn(vargv);
661 sv_setpvn(varsv, packname, packname_len);
662 sv_catpvs(varsv, "::");
663 sv_catpvn(varsv, name, len);
668 /* require_tie_mod() internal routine for requiring a module
669 * that implements the logic of automatical ties like %! and %-
671 * The "gv" parameter should be the glob.
672 * "varpv" holds the name of the var, used for error messages
673 * "namesv" holds the module name
674 * "methpv" holds the method name to test for to check that things
675 * are working reasonably close to as expected
676 * "flags" if flag & 1 then save the scalar before loading.
677 * For the protection of $! to work (it is set by this routine)
678 * the sv slot must already be magicalized.
681 S_require_tie_mod(pTHX_ GV *gv, const char *varpv, SV* namesv, const char *methpv,const U32 flags)
684 HV* stash = gv_stashsv(namesv, FALSE);
686 if (!stash || !(gv_fetchmethod(stash, methpv))) {
687 SV *module = newSVsv(namesv);
693 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, module, NULL);
696 stash = gv_stashsv(namesv, FALSE);
698 Perl_croak( aTHX_ "panic: Can't use %%%s because %"SVf" is not available",
700 else if (!gv_fetchmethod(stash, methpv))
701 Perl_croak( aTHX_ "panic: Can't use %%%s because %"SVf" does not support method %s",
702 varpv, module, methpv);
708 =for apidoc gv_stashpv
710 Returns a pointer to the stash for a specified package. C<name> should
711 be a valid UTF-8 string and must be null-terminated. If C<create> is set
712 then the package will be created if it does not already exist. If C<create>
713 is not set and the package does not exist then NULL is returned.
719 Perl_gv_stashpv(pTHX_ const char *name, I32 create)
721 return gv_stashpvn(name, strlen(name), create);
725 =for apidoc gv_stashpvn
727 Returns a pointer to the stash for a specified package. C<name> should
728 be a valid UTF-8 string. The C<namelen> parameter indicates the length of
729 the C<name>, in bytes. If C<create> is set then the package will be
730 created if it does not already exist. If C<create> is not set and the
731 package does not exist then NULL is returned.
737 Perl_gv_stashpvn(pTHX_ const char *name, U32 namelen, I32 create)
744 if (namelen + 3 < sizeof smallbuf)
747 Newx(tmpbuf, namelen + 3, char);
748 Copy(name,tmpbuf,namelen,char);
749 tmpbuf[namelen++] = ':';
750 tmpbuf[namelen++] = ':';
751 tmpbuf[namelen] = '\0';
752 tmpgv = gv_fetchpvn_flags(tmpbuf, namelen, create, SVt_PVHV);
753 if (tmpbuf != smallbuf)
758 GvHV(tmpgv) = newHV();
760 if (!HvNAME_get(stash))
761 hv_name_set(stash, name, namelen, 0);
766 =for apidoc gv_stashsv
768 Returns a pointer to the stash for a specified package, which must be a
769 valid UTF-8 string. See C<gv_stashpv>.
775 Perl_gv_stashsv(pTHX_ SV *sv, I32 create)
778 const char * const ptr = SvPV_const(sv,len);
779 return gv_stashpvn(ptr, len, create);
784 Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, I32 sv_type) {
785 return gv_fetchpvn_flags(nambeg, strlen(nambeg), add, sv_type);
789 Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, I32 sv_type) {
791 const char * const nambeg = SvPV_const(name, len);
792 return gv_fetchpvn_flags(nambeg, len, flags | SvUTF8(name), sv_type);
796 Perl_gv_fetchpvn_flags(pTHX_ const char *nambeg, STRLEN full_len, I32 flags,
800 register const char *name = nambeg;
801 register GV *gv = NULL;
804 register const char *name_cursor;
806 const I32 no_init = flags & (GV_NOADD_NOINIT | GV_NOINIT);
807 const I32 no_expand = flags & GV_NOEXPAND;
809 flags & ~SVf_UTF8 & ~GV_NOADD_NOINIT & ~GV_NOEXPAND & ~GV_NOTQUAL;
810 const char *const name_end = nambeg + full_len;
811 const char *const name_em1 = name_end - 1;
813 if (flags & GV_NOTQUAL) {
814 /* Caller promised that there is no stash, so we can skip the check. */
819 if (full_len > 2 && *name == '*' && isALPHA(name[1])) {
820 /* accidental stringify on a GV? */
824 for (name_cursor = name; name_cursor < name_end; name_cursor++) {
825 if ((*name_cursor == ':' && name_cursor < name_em1
826 && name_cursor[1] == ':')
827 || (*name_cursor == '\'' && name_cursor[1]))
831 if (!stash || !SvREFCNT(stash)) /* symbol table under destruction */
834 len = name_cursor - name;
839 if (len + 3 < (I32)sizeof (smallbuf))
842 Newx(tmpbuf, len+3, char);
843 Copy(name, tmpbuf, len, char);
847 gvp = (GV**)hv_fetch(stash,tmpbuf,len,add);
848 gv = gvp ? *gvp : NULL;
849 if (gv && gv != (GV*)&PL_sv_undef) {
850 if (SvTYPE(gv) != SVt_PVGV)
851 gv_init(gv, stash, tmpbuf, len, (add & GV_ADDMULTI));
855 if (tmpbuf != smallbuf)
857 if (!gv || gv == (GV*)&PL_sv_undef)
860 if (!(stash = GvHV(gv)))
861 stash = GvHV(gv) = newHV();
863 if (!HvNAME_get(stash))
864 hv_name_set(stash, nambeg, name_cursor - nambeg, 0);
867 if (*name_cursor == ':')
871 if (name == name_end)
872 return gv ? gv : (GV*)*hv_fetchs(PL_defstash, "main::", TRUE);
875 len = name_cursor - name;
877 /* No stash in name, so see how we can default */
881 if (len && isIDFIRST_lazy(name)) {
890 if ((name[0] == 'I' && name[1] == 'N' && name[2] == 'C')
891 || (name[0] == 'E' && name[1] == 'N' && name[2] == 'V')
892 || (name[0] == 'S' && name[1] == 'I' && name[2] == 'G'))
896 if (name[0] == 'A' && name[1] == 'R' && name[2] == 'G'
901 if (name[0] == 'S' && name[1] == 'T' && name[2] == 'D'
902 && name[3] == 'I' && name[4] == 'N')
906 if ((name[0] == 'S' && name[1] == 'T' && name[2] == 'D')
907 &&((name[3] == 'O' && name[4] == 'U' && name[5] == 'T')
908 ||(name[3] == 'E' && name[4] == 'R' && name[5] == 'R')))
912 if (name[0] == 'A' && name[1] == 'R' && name[2] == 'G'
913 && name[3] == 'V' && name[4] == 'O' && name[5] == 'U'
921 else if (IN_PERL_COMPILETIME) {
923 if (add && (PL_hints & HINT_STRICT_VARS) &&
924 sv_type != SVt_PVCV &&
925 sv_type != SVt_PVGV &&
926 sv_type != SVt_PVFM &&
927 sv_type != SVt_PVIO &&
928 !(len == 1 && sv_type == SVt_PV &&
929 (*name == 'a' || *name == 'b')) )
931 gvp = (GV**)hv_fetch(stash,name,len,0);
933 *gvp == (GV*)&PL_sv_undef ||
934 SvTYPE(*gvp) != SVt_PVGV)
938 else if ((sv_type == SVt_PV && !GvIMPORTED_SV(*gvp)) ||
939 (sv_type == SVt_PVAV && !GvIMPORTED_AV(*gvp)) ||
940 (sv_type == SVt_PVHV && !GvIMPORTED_HV(*gvp)) )
942 Perl_warn(aTHX_ "Variable \"%c%s\" is not imported",
943 sv_type == SVt_PVAV ? '@' :
944 sv_type == SVt_PVHV ? '%' : '$',
947 Perl_warn(aTHX_ "\t(Did you mean &%s instead?)\n", name);
953 stash = CopSTASH(PL_curcop);
959 /* By this point we should have a stash and a name */
963 SV * const err = Perl_mess(aTHX_
964 "Global symbol \"%s%s\" requires explicit package name",
965 (sv_type == SVt_PV ? "$"
966 : sv_type == SVt_PVAV ? "@"
967 : sv_type == SVt_PVHV ? "%"
970 if (USE_UTF8_IN_NAMES)
973 gv = gv_fetchpvn_flags("<none>::", 8, GV_ADDMULTI, SVt_PVHV);
975 /* symbol table under destruction */
984 if (!SvREFCNT(stash)) /* symbol table under destruction */
987 gvp = (GV**)hv_fetch(stash,name,len,add);
988 if (!gvp || *gvp == (GV*)&PL_sv_undef)
991 if (SvTYPE(gv) == SVt_PVGV) {
994 gv_init_sv(gv, sv_type);
995 if (sv_type == SVt_PVHV && len == 1 ) {
997 require_tie_mod(gv, "!", newSVpvs("Errno"), "TIEHASH", 1);
999 if (*name == '-' || *name == '+')
1000 require_tie_mod(gv, name, newSVpvs("re::Tie::Hash::NamedCapture"), "FETCH", 0);
1005 } else if (no_init) {
1007 } else if (no_expand && SvROK(gv)) {
1011 /* Adding a new symbol */
1013 if (add & GV_ADDWARN && ckWARN_d(WARN_INTERNAL))
1014 Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "Had to create %s unexpectedly", nambeg);
1015 gv_init(gv, stash, name, len, add & GV_ADDMULTI);
1016 gv_init_sv(gv, sv_type);
1018 if (isALPHA(name[0]) && ! (isLEXWARN_on ? ckWARN(WARN_ONCE)
1019 : (PL_dowarn & G_WARN_ON ) ) )
1022 /* set up magic where warranted */
1027 /* Nothing else to do.
1028 The compiler will probably turn the switch statement into a
1029 branch table. Make sure we avoid even that small overhead for
1030 the common case of lower case variable names. */
1034 const char * const name2 = name + 1;
1037 if (strEQ(name2, "RGV")) {
1038 IoFLAGS(GvIOn(gv)) |= IOf_ARGV|IOf_START;
1040 else if (strEQ(name2, "RGVOUT")) {
1045 if (strnEQ(name2, "XPORT", 5))
1049 if (strEQ(name2, "SA")) {
1050 AV* const av = GvAVn(gv);
1052 sv_magic((SV*)av, (SV*)gv, PERL_MAGIC_isa, NULL, 0);
1053 /* NOTE: No support for tied ISA */
1054 if ((add & GV_ADDMULTI) && strEQ(nambeg,"AnyDBM_File::ISA")
1055 && AvFILLp(av) == -1)
1058 av_push(av, newSVpvn(pname = "NDBM_File",9));
1059 gv_stashpvn(pname, 9, TRUE);
1060 av_push(av, newSVpvn(pname = "DB_File",7));
1061 gv_stashpvn(pname, 7, TRUE);
1062 av_push(av, newSVpvn(pname = "GDBM_File",9));
1063 gv_stashpvn(pname, 9, TRUE);
1064 av_push(av, newSVpvn(pname = "SDBM_File",9));
1065 gv_stashpvn(pname, 9, TRUE);
1066 av_push(av, newSVpvn(pname = "ODBM_File",9));
1067 gv_stashpvn(pname, 9, TRUE);
1072 if (strEQ(name2, "VERLOAD")) {
1073 HV* const hv = GvHVn(gv);
1075 hv_magic(hv, NULL, PERL_MAGIC_overload);
1079 if (strEQ(name2, "IG")) {
1083 Newxz(PL_psig_ptr, SIG_SIZE, SV*);
1084 Newxz(PL_psig_name, SIG_SIZE, SV*);
1085 Newxz(PL_psig_pend, SIG_SIZE, int);
1089 hv_magic(hv, NULL, PERL_MAGIC_sig);
1090 for (i = 1; i < SIG_SIZE; i++) {
1091 SV * const * const init = hv_fetch(hv, PL_sig_name[i], strlen(PL_sig_name[i]), 1);
1093 sv_setsv(*init, &PL_sv_undef);
1095 PL_psig_name[i] = 0;
1096 PL_psig_pend[i] = 0;
1101 if (strEQ(name2, "ERSION"))
1104 case '\003': /* $^CHILD_ERROR_NATIVE */
1105 if (strEQ(name2, "HILD_ERROR_NATIVE"))
1108 case '\005': /* $^ENCODING */
1109 if (strEQ(name2, "NCODING"))
1112 case '\017': /* $^OPEN */
1113 if (strEQ(name2, "PEN"))
1116 case '\024': /* ${^TAINT} */
1117 if (strEQ(name2, "AINT"))
1120 case '\025': /* ${^UNICODE}, ${^UTF8LOCALE} */
1121 if (strEQ(name2, "NICODE"))
1123 if (strEQ(name2, "TF8LOCALE"))
1125 if (strEQ(name2, "TF8CACHE"))
1128 case '\027': /* $^WARNING_BITS */
1129 if (strEQ(name2, "ARNING_BITS"))
1142 /* ensures variable is only digits */
1143 /* ${"1foo"} fails this test (and is thus writeable) */
1144 /* added by japhy, but borrowed from is_gv_magical */
1145 const char *end = name + len;
1146 while (--end > name) {
1147 if (!isDIGIT(*end)) return gv;
1154 /* Names of length 1. (Or 0. But name is NUL terminated, so that will
1155 be case '\0' in this switch statement (ie a default case) */
1161 sv_type == SVt_PVAV ||
1162 sv_type == SVt_PVHV ||
1163 sv_type == SVt_PVCV ||
1164 sv_type == SVt_PVFM ||
1167 PL_sawampersand = TRUE;
1171 sv_setpv(GvSVn(gv),PL_chopset);
1175 #ifdef COMPLEX_STATUS
1176 SvUPGRADE(GvSVn(gv), SVt_PVLV);
1182 /* If %! has been used, automatically load Errno.pm. */
1184 sv_magic(GvSVn(gv), (SV*)gv, PERL_MAGIC_sv, name, len);
1186 /* magicalization must be done before require_tie_mod is called */
1187 if (sv_type == SVt_PVHV)
1188 require_tie_mod(gv, "!", newSVpvs("Errno"), "TIEHASH", 1);
1193 GvMULTI_on(gv); /* no used once warnings here */
1195 bool plus = (*name == '+');
1196 SV *stashname = newSVpvs("re::Tie::Hash::NamedCapture");
1197 AV* const av = GvAVn(gv);
1198 HV *const hv = GvHVn(gv);
1199 HV *const hv_tie = newHV();
1200 SV *tie = newRV_noinc((SV*)hv_tie);
1202 sv_bless(tie, gv_stashsv(stashname,1));
1203 hv_magic(hv, (GV*)tie, PERL_MAGIC_tied);
1204 sv_magic((SV*)av, (plus ? (SV*)av : NULL), PERL_MAGIC_regdata, NULL, 0);
1205 sv_magic(GvSVn(gv), (SV*)gv, PERL_MAGIC_sv, name, len);
1208 SvREADONLY_on(GvSVn(gv));
1210 Perl_hv_store(aTHX_ hv_tie, STR_WITH_LEN("all"), newSViv(1), 0);
1216 if (sv_type == SVt_PVHV)
1217 require_tie_mod(gv, name, stashname, "FETCH", 0);
1223 if (sv_type == SVt_PV && ckWARN2(WARN_DEPRECATED, WARN_SYNTAX))
1224 Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
1225 "$%c is no longer supported", *name);
1228 sv_setiv(GvSVn(gv), (IV)(IoFLAGS(GvIOp(PL_defoutgv)) & IOf_FLUSH) != 0);
1231 case '\010': /* $^H */
1233 HV *const hv = GvHVn(gv);
1234 hv_magic(hv, NULL, PERL_MAGIC_hints);
1237 case '\023': /* $^S */
1248 SvREADONLY_on(GvSVn(gv));
1263 case '\001': /* $^A */
1264 case '\003': /* $^C */
1265 case '\004': /* $^D */
1266 case '\005': /* $^E */
1267 case '\006': /* $^F */
1268 case '\011': /* $^I, NOT \t in EBCDIC */
1269 case '\016': /* $^N */
1270 case '\017': /* $^O */
1271 case '\020': /* $^P */
1272 case '\024': /* $^T */
1273 case '\027': /* $^W */
1275 sv_magic(GvSVn(gv), (SV*)gv, PERL_MAGIC_sv, name, len);
1278 case '\014': /* $^L */
1279 sv_setpvn(GvSVn(gv),"\f",1);
1280 PL_formfeed = GvSVn(gv);
1283 sv_setpvn(GvSVn(gv),"\034",1);
1287 SV * const sv = GvSVn(gv);
1288 if (!sv_derived_from(PL_patchlevel, "version"))
1289 upg_version(PL_patchlevel);
1290 GvSV(gv) = vnumify(PL_patchlevel);
1291 SvREADONLY_on(GvSV(gv));
1295 case '\026': /* $^V */
1297 SV * const sv = GvSVn(gv);
1298 GvSV(gv) = new_version(PL_patchlevel);
1299 SvREADONLY_on(GvSV(gv));
1309 Perl_gv_fullname4(pTHX_ SV *sv, const GV *gv, const char *prefix, bool keepmain)
1313 const HV * const hv = GvSTASH(gv);
1318 sv_setpv(sv, prefix ? prefix : "");
1320 name = HvNAME_get(hv);
1322 namelen = HvNAMELEN_get(hv);
1328 if (keepmain || strNE(name, "main")) {
1329 sv_catpvn(sv,name,namelen);
1332 sv_catpvn(sv,GvNAME(gv),GvNAMELEN(gv));
1336 Perl_gv_efullname4(pTHX_ SV *sv, const GV *gv, const char *prefix, bool keepmain)
1338 const GV * const egv = GvEGV(gv);
1339 gv_fullname4(sv, egv ? egv : gv, prefix, keepmain);
1347 IO * const io = (IO*)newSV(0);
1349 sv_upgrade((SV *)io,SVt_PVIO);
1350 /* This used to read SvREFCNT(io) = 1;
1351 It's not clear why the reference count needed an explicit reset. NWC
1353 assert (SvREFCNT(io) == 1);
1355 /* Clear the stashcache because a new IO could overrule a package name */
1356 hv_clear(PL_stashcache);
1357 iogv = gv_fetchpvs("FileHandle::", 0, SVt_PVHV);
1358 /* unless exists($main::{FileHandle}) and defined(%main::FileHandle::) */
1359 if (!(iogv && GvHV(iogv) && HvARRAY(GvHV(iogv))))
1360 iogv = gv_fetchpvs("IO::Handle::", GV_ADD, SVt_PVHV);
1361 SvSTASH_set(io, (HV*)SvREFCNT_inc(GvHV(iogv)));
1366 Perl_gv_check(pTHX_ const HV *stash)
1371 if (!HvARRAY(stash))
1373 for (i = 0; i <= (I32) HvMAX(stash); i++) {
1375 for (entry = HvARRAY(stash)[i]; entry; entry = HeNEXT(entry)) {
1378 if (HeKEY(entry)[HeKLEN(entry)-1] == ':' &&
1379 (gv = (GV*)HeVAL(entry)) && isGV(gv) && (hv = GvHV(gv)))
1381 if (hv != PL_defstash && hv != stash)
1382 gv_check(hv); /* nested package */
1384 else if (isALPHA(*HeKEY(entry))) {
1386 gv = (GV*)HeVAL(entry);
1387 if (SvTYPE(gv) != SVt_PVGV || GvMULTI(gv))
1390 /* performance hack: if filename is absolute and it's a standard
1391 * module, don't bother warning */
1392 #ifdef MACOS_TRADITIONAL
1393 # define LIB_COMPONENT ":lib:"
1395 # define LIB_COMPONENT "/lib/"
1398 && PERL_FILE_IS_ABSOLUTE(file)
1399 && (instr(file, LIB_COMPONENT) || instr(file, ".pm")))
1403 CopLINE_set(PL_curcop, GvLINE(gv));
1405 CopFILE(PL_curcop) = (char *)file; /* set for warning */
1407 CopFILEGV(PL_curcop) = gv_fetchfile(file);
1409 Perl_warner(aTHX_ packWARN(WARN_ONCE),
1410 "Name \"%s::%s\" used only once: possible typo",
1411 HvNAME_get(stash), GvNAME(gv));
1418 Perl_newGVgen(pTHX_ const char *pack)
1421 return gv_fetchpv(Perl_form(aTHX_ "%s::_GEN_%ld", pack, (long)PL_gensym++),
1425 /* hopefully this is only called on local symbol table entries */
1428 Perl_gp_ref(pTHX_ GP *gp)
1436 /* multi-named GPs cannot be used for method cache */
1437 SvREFCNT_dec(gp->gp_cv);
1442 /* Adding a new name to a subroutine invalidates method cache */
1443 PL_sub_generation++;
1450 Perl_gp_free(pTHX_ GV *gv)
1455 if (!gv || !isGV_with_GP(gv) || !(gp = GvGP(gv)))
1457 if (gp->gp_refcnt == 0) {
1458 if (ckWARN_d(WARN_INTERNAL))
1459 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
1460 "Attempt to free unreferenced glob pointers"
1461 pTHX__FORMAT pTHX__VALUE);
1465 /* Deleting the name of a subroutine invalidates method cache */
1466 PL_sub_generation++;
1468 if (--gp->gp_refcnt > 0) {
1469 if (gp->gp_egv == gv)
1475 if (gp->gp_file_hek)
1476 unshare_hek(gp->gp_file_hek);
1477 SvREFCNT_dec(gp->gp_sv);
1478 SvREFCNT_dec(gp->gp_av);
1479 /* FIXME - another reference loop GV -> symtab -> GV ?
1480 Somehow gp->gp_hv can end up pointing at freed garbage. */
1481 if (gp->gp_hv && SvTYPE(gp->gp_hv) == SVt_PVHV) {
1482 const char *hvname = HvNAME_get(gp->gp_hv);
1483 if (PL_stashcache && hvname)
1484 hv_delete(PL_stashcache, hvname, HvNAMELEN_get(gp->gp_hv),
1486 SvREFCNT_dec(gp->gp_hv);
1488 SvREFCNT_dec(gp->gp_io);
1489 SvREFCNT_dec(gp->gp_cv);
1490 SvREFCNT_dec(gp->gp_form);
1497 Perl_magic_freeovrld(pTHX_ SV *sv, MAGIC *mg)
1499 AMT * const amtp = (AMT*)mg->mg_ptr;
1500 PERL_UNUSED_ARG(sv);
1502 if (amtp && AMT_AMAGIC(amtp)) {
1504 for (i = 1; i < NofAMmeth; i++) {
1505 CV * const cv = amtp->table[i];
1507 SvREFCNT_dec((SV *) cv);
1508 amtp->table[i] = NULL;
1515 /* Updates and caches the CV's */
1518 Perl_Gv_AMupdate(pTHX_ HV *stash)
1521 MAGIC* const mg = mg_find((SV*)stash, PERL_MAGIC_overload_table);
1525 const AMT * const amtp = (AMT*)mg->mg_ptr;
1526 if (amtp->was_ok_am == PL_amagic_generation
1527 && amtp->was_ok_sub == PL_sub_generation) {
1528 return (bool)AMT_OVERLOADED(amtp);
1530 sv_unmagic((SV*)stash, PERL_MAGIC_overload_table);
1533 DEBUG_o( Perl_deb(aTHX_ "Recalcing overload magic in package %s\n",HvNAME_get(stash)) );
1536 amt.was_ok_am = PL_amagic_generation;
1537 amt.was_ok_sub = PL_sub_generation;
1538 amt.fallback = AMGfallNO;
1542 int filled = 0, have_ovl = 0;
1545 /* Work with "fallback" key, which we assume to be first in PL_AMG_names */
1547 /* Try to find via inheritance. */
1548 GV *gv = gv_fetchmeth(stash, PL_AMG_names[0], 2, -1);
1549 SV * const sv = gv ? GvSV(gv) : NULL;
1553 lim = DESTROY_amg; /* Skip overloading entries. */
1554 #ifdef PERL_DONT_CREATE_GVSV
1556 NOOP; /* Equivalent to !SvTRUE and !SvOK */
1559 else if (SvTRUE(sv))
1560 amt.fallback=AMGfallYES;
1562 amt.fallback=AMGfallNEVER;
1564 for (i = 1; i < lim; i++)
1565 amt.table[i] = NULL;
1566 for (; i < NofAMmeth; i++) {
1567 const char * const cooky = PL_AMG_names[i];
1568 /* Human-readable form, for debugging: */
1569 const char * const cp = (i >= DESTROY_amg ? cooky : AMG_id2name(i));
1570 const STRLEN l = strlen(cooky);
1572 DEBUG_o( Perl_deb(aTHX_ "Checking overloading of \"%s\" in package \"%.256s\"\n",
1573 cp, HvNAME_get(stash)) );
1574 /* don't fill the cache while looking up!
1575 Creation of inheritance stubs in intermediate packages may
1576 conflict with the logic of runtime method substitution.
1577 Indeed, for inheritance A -> B -> C, if C overloads "+0",
1578 then we could have created stubs for "(+0" in A and C too.
1579 But if B overloads "bool", we may want to use it for
1580 numifying instead of C's "+0". */
1581 if (i >= DESTROY_amg)
1582 gv = Perl_gv_fetchmeth_autoload(aTHX_ stash, cooky, l, 0);
1583 else /* Autoload taken care of below */
1584 gv = Perl_gv_fetchmeth(aTHX_ stash, cooky, l, -1);
1586 if (gv && (cv = GvCV(gv))) {
1588 if (GvNAMELEN(CvGV(cv)) == 3 && strEQ(GvNAME(CvGV(cv)), "nil")
1589 && strEQ(hvname = HvNAME_get(GvSTASH(CvGV(cv))), "overload")) {
1590 /* This is a hack to support autoloading..., while
1591 knowing *which* methods were declared as overloaded. */
1592 /* GvSV contains the name of the method. */
1594 SV *gvsv = GvSV(gv);
1596 DEBUG_o( Perl_deb(aTHX_ "Resolving method \"%"SVf256\
1597 "\" for overloaded \"%s\" in package \"%.256s\"\n",
1598 (void*)GvSV(gv), cp, hvname) );
1599 if (!gvsv || !SvPOK(gvsv)
1600 || !(ngv = gv_fetchmethod_autoload(stash, SvPVX_const(gvsv),
1603 /* Can be an import stub (created by "can"). */
1604 const char * const name = (gvsv && SvPOK(gvsv)) ? SvPVX_const(gvsv) : "???";
1605 Perl_croak(aTHX_ "%s method \"%.256s\" overloading \"%s\" "\
1606 "in package \"%.256s\"",
1607 (GvCVGEN(gv) ? "Stub found while resolving"
1611 cv = GvCV(gv = ngv);
1613 DEBUG_o( Perl_deb(aTHX_ "Overloading \"%s\" in package \"%.256s\" via \"%.256s::%.256s\"\n",
1614 cp, HvNAME_get(stash), HvNAME_get(GvSTASH(CvGV(cv))),
1615 GvNAME(CvGV(cv))) );
1617 if (i < DESTROY_amg)
1619 } else if (gv) { /* Autoloaded... */
1623 amt.table[i]=(CV*)SvREFCNT_inc_simple(cv);
1626 AMT_AMAGIC_on(&amt);
1628 AMT_OVERLOADED_on(&amt);
1629 sv_magic((SV*)stash, 0, PERL_MAGIC_overload_table,
1630 (char*)&amt, sizeof(AMT));
1634 /* Here we have no table: */
1636 AMT_AMAGIC_off(&amt);
1637 sv_magic((SV*)stash, 0, PERL_MAGIC_overload_table,
1638 (char*)&amt, sizeof(AMTS));
1644 Perl_gv_handler(pTHX_ HV *stash, I32 id)
1650 if (!stash || !HvNAME_get(stash))
1652 mg = mg_find((SV*)stash, PERL_MAGIC_overload_table);
1656 mg = mg_find((SV*)stash, PERL_MAGIC_overload_table);
1659 amtp = (AMT*)mg->mg_ptr;
1660 if ( amtp->was_ok_am != PL_amagic_generation
1661 || amtp->was_ok_sub != PL_sub_generation )
1663 if (AMT_AMAGIC(amtp)) {
1664 CV * const ret = amtp->table[id];
1665 if (ret && isGV(ret)) { /* Autoloading stab */
1666 /* Passing it through may have resulted in a warning
1667 "Inherited AUTOLOAD for a non-method deprecated", since
1668 our caller is going through a function call, not a method call.
1669 So return the CV for AUTOLOAD, setting $AUTOLOAD. */
1670 GV * const gv = gv_fetchmethod(stash, PL_AMG_names[id]);
1683 Perl_amagic_call(pTHX_ SV *left, SV *right, int method, int flags)
1688 CV **cvp=NULL, **ocvp=NULL;
1689 AMT *amtp=NULL, *oamtp=NULL;
1690 int off = 0, off1, lr = 0, notfound = 0;
1691 int postpr = 0, force_cpy = 0;
1692 int assign = AMGf_assign & flags;
1693 const int assignshift = assign ? 1 : 0;
1698 if (!(AMGf_noleft & flags) && SvAMAGIC(left)
1699 && (stash = SvSTASH(SvRV(left)))
1700 && (mg = mg_find((SV*)stash, PERL_MAGIC_overload_table))
1701 && (ocvp = cvp = (AMT_AMAGIC((AMT*)mg->mg_ptr)
1702 ? (oamtp = amtp = (AMT*)mg->mg_ptr)->table
1704 && ((cv = cvp[off=method+assignshift])
1705 || (assign && amtp->fallback > AMGfallNEVER && /* fallback to
1711 cv = cvp[off=method])))) {
1712 lr = -1; /* Call method for left argument */
1714 if (cvp && amtp->fallback > AMGfallNEVER && flags & AMGf_unary) {
1717 /* look for substituted methods */
1718 /* In all the covered cases we should be called with assign==0. */
1722 if ((cv = cvp[off=add_ass_amg])
1723 || ((cv = cvp[off = add_amg]) && (force_cpy = 0, postpr = 1))) {
1724 right = &PL_sv_yes; lr = -1; assign = 1;
1729 if ((cv = cvp[off = subtr_ass_amg])
1730 || ((cv = cvp[off = subtr_amg]) && (force_cpy = 0, postpr=1))) {
1731 right = &PL_sv_yes; lr = -1; assign = 1;
1735 (void)((cv = cvp[off=numer_amg]) || (cv = cvp[off=string_amg]));
1738 (void)((cv = cvp[off=string_amg]) || (cv = cvp[off=bool__amg]));
1741 (void)((cv = cvp[off=numer_amg]) || (cv = cvp[off=bool__amg]));
1744 (void)((cv = cvp[off=bool__amg])
1745 || (cv = cvp[off=numer_amg])
1746 || (cv = cvp[off=string_amg]));
1752 * SV* ref causes confusion with the interpreter variable of
1755 SV* const tmpRef=SvRV(left);
1756 if (!SvROK(tmpRef) && SvTYPE(tmpRef) <= SVt_PVMG) {
1758 * Just to be extra cautious. Maybe in some
1759 * additional cases sv_setsv is safe, too.
1761 SV* const newref = newSVsv(tmpRef);
1762 SvOBJECT_on(newref);
1763 /* As a bit of a source compatibility hack, SvAMAGIC() and
1764 friends dereference an RV, to behave the same was as when
1765 overloading was stored on the reference, not the referant.
1766 Hence we can't use SvAMAGIC_on()
1768 SvFLAGS(newref) |= SVf_AMAGIC;
1769 SvSTASH_set(newref, (HV*)SvREFCNT_inc(SvSTASH(tmpRef)));
1775 if ((cvp[off1=lt_amg] || cvp[off1=ncmp_amg])
1776 && ((cv = cvp[off=neg_amg]) || (cv = cvp[off=subtr_amg]))) {
1777 SV* const nullsv=sv_2mortal(newSViv(0));
1779 SV* const lessp = amagic_call(left,nullsv,
1780 lt_amg,AMGf_noright);
1781 logic = SvTRUE(lessp);
1783 SV* const lessp = amagic_call(left,nullsv,
1784 ncmp_amg,AMGf_noright);
1785 logic = (SvNV(lessp) < 0);
1788 if (off==subtr_amg) {
1799 if ((cv = cvp[off=subtr_amg])) {
1801 left = sv_2mortal(newSViv(0));
1806 case iter_amg: /* XXXX Eventually should do to_gv. */
1808 return NULL; /* Delegate operation to standard mechanisms. */
1816 return left; /* Delegate operation to standard mechanisms. */
1821 if (!cv) goto not_found;
1822 } else if (!(AMGf_noright & flags) && SvAMAGIC(right)
1823 && (stash = SvSTASH(SvRV(right)))
1824 && (mg = mg_find((SV*)stash, PERL_MAGIC_overload_table))
1825 && (cvp = (AMT_AMAGIC((AMT*)mg->mg_ptr)
1826 ? (amtp = (AMT*)mg->mg_ptr)->table
1828 && (cv = cvp[off=method])) { /* Method for right
1831 } else if (((ocvp && oamtp->fallback > AMGfallNEVER
1832 && (cvp=ocvp) && (lr = -1))
1833 || (cvp && amtp->fallback > AMGfallNEVER && (lr=1)))
1834 && !(flags & AMGf_unary)) {
1835 /* We look for substitution for
1836 * comparison operations and
1838 if (method==concat_amg || method==concat_ass_amg
1839 || method==repeat_amg || method==repeat_ass_amg) {
1840 return NULL; /* Delegate operation to string conversion */
1850 postpr = 1; off=ncmp_amg; break;
1857 postpr = 1; off=scmp_amg; break;
1859 if (off != -1) cv = cvp[off];
1864 not_found: /* No method found, either report or croak */
1872 return left; /* Delegate operation to standard mechanisms. */
1875 if (ocvp && (cv=ocvp[nomethod_amg])) { /* Call report method */
1876 notfound = 1; lr = -1;
1877 } else if (cvp && (cv=cvp[nomethod_amg])) {
1878 notfound = 1; lr = 1;
1879 } else if ((amtp && amtp->fallback >= AMGfallYES) && !DEBUG_o_TEST) {
1880 /* Skip generating the "no method found" message. */
1884 if (off==-1) off=method;
1885 msg = sv_2mortal(Perl_newSVpvf(aTHX_
1886 "Operation \"%s\": no method found,%sargument %s%s%s%s",
1887 AMG_id2name(method + assignshift),
1888 (flags & AMGf_unary ? " " : "\n\tleft "),
1890 "in overloaded package ":
1891 "has no overloaded magic",
1893 HvNAME_get(SvSTASH(SvRV(left))):
1896 ",\n\tright argument in overloaded package ":
1899 : ",\n\tright argument has no overloaded magic"),
1901 HvNAME_get(SvSTASH(SvRV(right))):
1903 if (amtp && amtp->fallback >= AMGfallYES) {
1904 DEBUG_o( Perl_deb(aTHX_ "%s", SvPVX_const(msg)) );
1906 Perl_croak(aTHX_ "%"SVf, SVfARG(msg));
1910 force_cpy = force_cpy || assign;
1915 DEBUG_o(Perl_deb(aTHX_
1916 "Overloaded operator \"%s\"%s%s%s:\n\tmethod%s found%s in package %s%s\n",
1918 method+assignshift==off? "" :
1920 method+assignshift==off? "" :
1921 AMG_id2name(method+assignshift),
1922 method+assignshift==off? "" : "\")",
1923 flags & AMGf_unary? "" :
1924 lr==1 ? " for right argument": " for left argument",
1925 flags & AMGf_unary? " for argument" : "",
1926 stash ? HvNAME_get(stash) : "null",
1927 fl? ",\n\tassignment variant used": "") );
1930 /* Since we use shallow copy during assignment, we need
1931 * to dublicate the contents, probably calling user-supplied
1932 * version of copy operator
1934 /* We need to copy in following cases:
1935 * a) Assignment form was called.
1936 * assignshift==1, assign==T, method + 1 == off
1937 * b) Increment or decrement, called directly.
1938 * assignshift==0, assign==0, method + 0 == off
1939 * c) Increment or decrement, translated to assignment add/subtr.
1940 * assignshift==0, assign==T,
1942 * d) Increment or decrement, translated to nomethod.
1943 * assignshift==0, assign==0,
1945 * e) Assignment form translated to nomethod.
1946 * assignshift==1, assign==T, method + 1 != off
1949 /* off is method, method+assignshift, or a result of opcode substitution.
1950 * In the latter case assignshift==0, so only notfound case is important.
1952 if (( (method + assignshift == off)
1953 && (assign || (method == inc_amg) || (method == dec_amg)))
1960 const bool oldcatch = CATCH_GET;
1963 Zero(&myop, 1, BINOP);
1964 myop.op_last = (OP *) &myop;
1965 myop.op_next = NULL;
1966 myop.op_flags = OPf_WANT_SCALAR | OPf_STACKED;
1968 PUSHSTACKi(PERLSI_OVERLOAD);
1971 PL_op = (OP *) &myop;
1972 if (PERLDB_SUB && PL_curstash != PL_debstash)
1973 PL_op->op_private |= OPpENTERSUB_DB;
1977 EXTEND(SP, notfound + 5);
1978 PUSHs(lr>0? right: left);
1979 PUSHs(lr>0? left: right);
1980 PUSHs( lr > 0 ? &PL_sv_yes : ( assign ? &PL_sv_undef : &PL_sv_no ));
1982 PUSHs( sv_2mortal(newSVpv(AMG_id2name(method + assignshift),0)));
1987 if ((PL_op = Perl_pp_entersub(aTHX)))
1995 CATCH_SET(oldcatch);
2002 ans=SvIV(res)<=0; break;
2005 ans=SvIV(res)<0; break;
2008 ans=SvIV(res)>=0; break;
2011 ans=SvIV(res)>0; break;
2014 ans=SvIV(res)==0; break;
2017 ans=SvIV(res)!=0; break;
2020 SvSetSV(left,res); return left;
2022 ans=!SvTRUE(res); break;
2027 } else if (method==copy_amg) {
2029 Perl_croak(aTHX_ "Copy method did not return a reference");
2031 return SvREFCNT_inc(SvRV(res));
2039 =for apidoc is_gv_magical_sv
2041 Returns C<TRUE> if given the name of a magical GV. Calls is_gv_magical.
2047 Perl_is_gv_magical_sv(pTHX_ SV *name, U32 flags)
2050 const char * const temp = SvPV_const(name, len);
2051 return is_gv_magical(temp, len, flags);
2055 =for apidoc is_gv_magical
2057 Returns C<TRUE> if given the name of a magical GV.
2059 Currently only useful internally when determining if a GV should be
2060 created even in rvalue contexts.
2062 C<flags> is not used at present but available for future extension to
2063 allow selecting particular classes of magical variable.
2065 Currently assumes that C<name> is NUL terminated (as well as len being valid).
2066 This assumption is met by all callers within the perl core, which all pass
2067 pointers returned by SvPV.
2072 Perl_is_gv_magical(pTHX_ const char *name, STRLEN len, U32 flags)
2074 PERL_UNUSED_CONTEXT;
2075 PERL_UNUSED_ARG(flags);
2078 const char * const name1 = name + 1;
2081 if (len == 3 && name1[1] == 'S' && name[2] == 'A')
2085 if (len == 8 && strEQ(name1, "VERLOAD"))
2089 if (len == 3 && name[1] == 'I' && name[2] == 'G')
2092 /* Using ${^...} variables is likely to be sufficiently rare that
2093 it seems sensible to avoid the space hit of also checking the
2095 case '\017': /* ${^OPEN} */
2096 if (strEQ(name1, "PEN"))
2099 case '\024': /* ${^TAINT} */
2100 if (strEQ(name1, "AINT"))
2103 case '\025': /* ${^UNICODE} */
2104 if (strEQ(name1, "NICODE"))
2106 if (strEQ(name1, "TF8LOCALE"))
2109 case '\027': /* ${^WARNING_BITS} */
2110 if (strEQ(name1, "ARNING_BITS"))
2123 const char *end = name + len;
2124 while (--end > name) {
2132 /* Because we're already assuming that name is NUL terminated
2133 below, we can treat an empty name as "\0" */
2160 case '\001': /* $^A */
2161 case '\003': /* $^C */
2162 case '\004': /* $^D */
2163 case '\005': /* $^E */
2164 case '\006': /* $^F */
2165 case '\010': /* $^H */
2166 case '\011': /* $^I, NOT \t in EBCDIC */
2167 case '\014': /* $^L */
2168 case '\016': /* $^N */
2169 case '\017': /* $^O */
2170 case '\020': /* $^P */
2171 case '\023': /* $^S */
2172 case '\024': /* $^T */
2173 case '\026': /* $^V */
2174 case '\027': /* $^W */
2194 Perl_gv_name_set(pTHX_ GV *gv, const char *name, U32 len, U32 flags)
2200 PERL_UNUSED_ARG(flags);
2203 Perl_croak(aTHX_ "panic: gv name too long (%"UVuf")", (UV) len);
2205 if (!(flags & GV_ADD) && GvNAME_HEK(gv)) {
2206 unshare_hek(GvNAME_HEK(gv));
2209 PERL_HASH(hash, name, len);
2210 GvNAME_HEK(gv) = share_hek(name, len, hash);
2215 * c-indentation-style: bsd
2217 * indent-tabs-mode: t
2220 * ex: set ts=8 sts=4 sw=4 noet: