This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update IPC-Cmd to CPAN version 0.66
[perl5.git] / mro.c
1 /*    mro.c
2  *
3  *    Copyright (c) 2007 Brandon L Black
4  *    Copyright (c) 2007, 2008 Larry Wall and others
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  *
9  */
10
11 /*
12  * 'Which order shall we go in?' said Frodo.  'Eldest first, or quickest first?
13  *  You'll be last either way, Master Peregrin.'
14  *
15  *     [p.101 of _The Lord of the Rings_, I/iii: "A Conspiracy Unmasked"]
16  */
17
18 /*
19 =head1 MRO Functions
20
21 These functions are related to the method resolution order of perl classes
22
23 =cut
24 */
25
26 #include "EXTERN.h"
27 #define PERL_IN_MRO_C
28 #include "perl.h"
29
30 static const struct mro_alg dfs_alg =
31     {S_mro_get_linear_isa_dfs, "dfs", 3, 0, 0};
32
33 SV *
34 Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta,
35                           const struct mro_alg *const which)
36 {
37     SV **data;
38     PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA;
39
40     data = (SV **)Perl_hv_common(aTHX_ smeta->mro_linear_all, NULL,
41                                  which->name, which->length, which->kflags,
42                                  HV_FETCH_JUST_SV, NULL, which->hash);
43     if (!data)
44         return NULL;
45
46     /* If we've been asked to look up the private data for the current MRO, then
47        cache it.  */
48     if (smeta->mro_which == which)
49         smeta->mro_linear_current = *data;
50
51     return *data;
52 }
53
54 SV *
55 Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta,
56                           const struct mro_alg *const which, SV *const data)
57 {
58     PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA;
59
60     if (!smeta->mro_linear_all) {
61         if (smeta->mro_which == which) {
62             /* If all we need to store is the current MRO's data, then don't use
63                memory on a hash with 1 element - store it direct, and signal
64                this by leaving the would-be-hash NULL.  */
65             smeta->mro_linear_current = data;
66             return data;
67         } else {
68             HV *const hv = newHV();
69             /* Start with 2 buckets. It's unlikely we'll need more. */
70             HvMAX(hv) = 1;      
71             smeta->mro_linear_all = hv;
72
73             if (smeta->mro_linear_current) {
74                 /* If we were storing something directly, put it in the hash
75                    before we lose it. */
76                 Perl_mro_set_private_data(aTHX_ smeta, smeta->mro_which, 
77                                           smeta->mro_linear_current);
78             }
79         }
80     }
81
82     /* We get here if we're storing more than one linearisation for this stash,
83        or the linearisation we are storing is not that if its current MRO.  */
84
85     if (smeta->mro_which == which) {
86         /* If we've been asked to store the private data for the current MRO,
87            then cache it.  */
88         smeta->mro_linear_current = data;
89     }
90
91     if (!Perl_hv_common(aTHX_ smeta->mro_linear_all, NULL,
92                         which->name, which->length, which->kflags,
93                         HV_FETCH_ISSTORE, data, which->hash)) {
94         Perl_croak(aTHX_ "panic: hv_store() failed in set_mro_private_data() "
95                    "for '%.*s' %d", (int) which->length, which->name,
96                    which->kflags);
97     }
98
99     return data;
100 }
101
102 const struct mro_alg *
103 Perl_mro_get_from_name(pTHX_ SV *name) {
104     SV **data;
105
106     PERL_ARGS_ASSERT_MRO_GET_FROM_NAME;
107
108     data = (SV **)Perl_hv_common(aTHX_ PL_registered_mros, name, NULL, 0, 0,
109                                  HV_FETCH_JUST_SV, NULL, 0);
110     if (!data)
111         return NULL;
112     assert(SvTYPE(*data) == SVt_IV);
113     assert(SvIOK(*data));
114     return INT2PTR(const struct mro_alg *, SvUVX(*data));
115 }
116
117 void
118 Perl_mro_register(pTHX_ const struct mro_alg *mro) {
119     SV *wrapper = newSVuv(PTR2UV(mro));
120
121     PERL_ARGS_ASSERT_MRO_REGISTER;
122
123     
124     if (!Perl_hv_common(aTHX_ PL_registered_mros, NULL,
125                         mro->name, mro->length, mro->kflags,
126                         HV_FETCH_ISSTORE, wrapper, mro->hash)) {
127         SvREFCNT_dec(wrapper);
128         Perl_croak(aTHX_ "panic: hv_store() failed in mro_register() "
129                    "for '%.*s' %d", (int) mro->length, mro->name, mro->kflags);
130     }
131 }
132
133 struct mro_meta*
134 Perl_mro_meta_init(pTHX_ HV* stash)
135 {
136     struct mro_meta* newmeta;
137
138     PERL_ARGS_ASSERT_MRO_META_INIT;
139     assert(HvAUX(stash));
140     assert(!(HvAUX(stash)->xhv_mro_meta));
141     Newxz(newmeta, 1, struct mro_meta);
142     HvAUX(stash)->xhv_mro_meta = newmeta;
143     newmeta->cache_gen = 1;
144     newmeta->pkg_gen = 1;
145     newmeta->mro_which = &dfs_alg;
146
147     return newmeta;
148 }
149
150 #if defined(USE_ITHREADS)
151
152 /* for sv_dup on new threads */
153 struct mro_meta*
154 Perl_mro_meta_dup(pTHX_ struct mro_meta* smeta, CLONE_PARAMS* param)
155 {
156     struct mro_meta* newmeta;
157
158     PERL_ARGS_ASSERT_MRO_META_DUP;
159
160     Newx(newmeta, 1, struct mro_meta);
161     Copy(smeta, newmeta, 1, struct mro_meta);
162
163     if (newmeta->mro_linear_all) {
164         newmeta->mro_linear_all
165             = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->mro_linear_all, param));
166         /* This is just acting as a shortcut pointer, and will be automatically
167            updated on the first get.  */
168         newmeta->mro_linear_current = NULL;
169     } else if (newmeta->mro_linear_current) {
170         /* Only the current MRO is stored, so this owns the data.  */
171         newmeta->mro_linear_current
172             = sv_dup_inc((const SV *)newmeta->mro_linear_current, param);
173     }
174
175     if (newmeta->mro_nextmethod)
176         newmeta->mro_nextmethod
177             = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->mro_nextmethod, param));
178     if (newmeta->isa)
179         newmeta->isa
180             = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->isa, param));
181
182     return newmeta;
183 }
184
185 #endif /* USE_ITHREADS */
186
187 /*
188 =for apidoc mro_get_linear_isa_dfs
189
190 Returns the Depth-First Search linearization of @ISA
191 the given stash.  The return value is a read-only AV*.
192 C<level> should be 0 (it is used internally in this
193 function's recursion).
194
195 You are responsible for C<SvREFCNT_inc()> on the
196 return value if you plan to store it anywhere
197 semi-permanently (otherwise it might be deleted
198 out from under you the next time the cache is
199 invalidated).
200
201 =cut
202 */
203 static AV*
204 S_mro_get_linear_isa_dfs(pTHX_ HV *stash, U32 level)
205 {
206     AV* retval;
207     GV** gvp;
208     GV* gv;
209     AV* av;
210     const HEK* stashhek;
211     struct mro_meta* meta;
212     SV *our_name;
213     HV *stored = NULL;
214
215     PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA_DFS;
216     assert(HvAUX(stash));
217
218     stashhek
219      = HvAUX(stash)->xhv_name && HvENAME_HEK_NN(stash)
220         ? HvENAME_HEK_NN(stash)
221         : HvNAME_HEK(stash);
222
223     if (!stashhek)
224       Perl_croak(aTHX_ "Can't linearize anonymous symbol table");
225
226     if (level > 100)
227         Perl_croak(aTHX_ "Recursive inheritance detected in package '%s'",
228                    HEK_KEY(stashhek));
229
230     meta = HvMROMETA(stash);
231
232     /* return cache if valid */
233     if((retval = MUTABLE_AV(MRO_GET_PRIVATE_DATA(meta, &dfs_alg)))) {
234         return retval;
235     }
236
237     /* not in cache, make a new one */
238
239     retval = MUTABLE_AV(sv_2mortal(MUTABLE_SV(newAV())));
240     /* We use this later in this function, but don't need a reference to it
241        beyond the end of this function, so reference count is fine.  */
242     our_name = newSVhek(stashhek);
243     av_push(retval, our_name); /* add ourselves at the top */
244
245     /* fetch our @ISA */
246     gvp = (GV**)hv_fetchs(stash, "ISA", FALSE);
247     av = (gvp && (gv = *gvp) && isGV_with_GP(gv)) ? GvAV(gv) : NULL;
248
249     /* "stored" is used to keep track of all of the classnames we have added to
250        the MRO so far, so we can do a quick exists check and avoid adding
251        duplicate classnames to the MRO as we go.
252        It's then retained to be re-used as a fast lookup for ->isa(), by adding
253        our own name and "UNIVERSAL" to it.  */
254
255     if(av && AvFILLp(av) >= 0) {
256
257         SV **svp = AvARRAY(av);
258         I32 items = AvFILLp(av) + 1;
259
260         /* foreach(@ISA) */
261         while (items--) {
262             SV* const sv = *svp++;
263             HV* const basestash = gv_stashsv(sv, 0);
264             SV *const *subrv_p;
265             I32 subrv_items;
266
267             if (!basestash) {
268                 /* if no stash exists for this @ISA member,
269                    simply add it to the MRO and move on */
270                 subrv_p = &sv;
271                 subrv_items = 1;
272             }
273             else {
274                 /* otherwise, recurse into ourselves for the MRO
275                    of this @ISA member, and append their MRO to ours.
276                    The recursive call could throw an exception, which
277                    has memory management implications here, hence the use of
278                    the mortal.  */
279                 const AV *const subrv
280                     = mro_get_linear_isa_dfs(basestash, level + 1);
281
282                 subrv_p = AvARRAY(subrv);
283                 subrv_items = AvFILLp(subrv) + 1;
284             }
285             if (stored) {
286                 while(subrv_items--) {
287                     SV *const subsv = *subrv_p++;
288                     /* LVALUE fetch will create a new undefined SV if necessary
289                      */
290                     HE *const he = hv_fetch_ent(stored, subsv, 1, 0);
291                     assert(he);
292                     if(HeVAL(he) != &PL_sv_undef) {
293                         /* It was newly created.  Steal it for our new SV, and
294                            replace it in the hash with the "real" thing.  */
295                         SV *const val = HeVAL(he);
296                         HEK *const key = HeKEY_hek(he);
297
298                         HeVAL(he) = &PL_sv_undef;
299                         /* Save copying by making a shared hash key scalar. We
300                            inline this here rather than calling
301                            Perl_newSVpvn_share because we already have the
302                            scalar, and we already have the hash key.  */
303                         assert(SvTYPE(val) == SVt_NULL);
304                         sv_upgrade(val, SVt_PV);
305                         SvPV_set(val, HEK_KEY(share_hek_hek(key)));
306                         SvCUR_set(val, HEK_LEN(key));
307                         SvREADONLY_on(val);
308                         SvFAKE_on(val);
309                         SvPOK_on(val);
310                         if (HEK_UTF8(key))
311                             SvUTF8_on(val);
312
313                         av_push(retval, val);
314                     }
315                 }
316             } else {
317                 /* We are the first (or only) parent. We can short cut the
318                    complexity above, because our @ISA is simply us prepended
319                    to our parent's @ISA, and our ->isa cache is simply our
320                    parent's, with our name added.  */
321                 /* newSVsv() is slow. This code is only faster if we can avoid
322                    it by ensuring that SVs in the arrays are shared hash key
323                    scalar SVs, because we can "copy" them very efficiently.
324                    Although to be fair, we can't *ensure* this, as a reference
325                    to the internal array is returned by mro::get_linear_isa(),
326                    so we'll have to be defensive just in case someone faffed
327                    with it.  */
328                 if (basestash) {
329                     SV **svp;
330                     stored = MUTABLE_HV(sv_2mortal((SV*)newHVhv(HvMROMETA(basestash)->isa)));
331                     av_extend(retval, subrv_items);
332                     AvFILLp(retval) = subrv_items;
333                     svp = AvARRAY(retval);
334                     while(subrv_items--) {
335                         SV *const val = *subrv_p++;
336                         *++svp = SvIsCOW_shared_hash(val)
337                             ? newSVhek(SvSHARED_HEK_FROM_PV(SvPVX(val)))
338                             : newSVsv(val);
339                     }
340                 } else {
341                     /* They have no stash.  So create ourselves an ->isa cache
342                        as if we'd copied it from what theirs should be.  */
343                     stored = MUTABLE_HV(sv_2mortal(MUTABLE_SV(newHV())));
344                     (void) hv_store(stored, "UNIVERSAL", 9, &PL_sv_undef, 0);
345                     av_push(retval,
346                             newSVhek(HeKEY_hek(hv_store_ent(stored, sv,
347                                                             &PL_sv_undef, 0))));
348                 }
349             }
350         }
351     } else {
352         /* We have no parents.  */
353         stored = MUTABLE_HV(sv_2mortal(MUTABLE_SV(newHV())));
354         (void) hv_store(stored, "UNIVERSAL", 9, &PL_sv_undef, 0);
355     }
356
357     (void) hv_store_ent(stored, our_name, &PL_sv_undef, 0);
358
359     SvREFCNT_inc_simple_void_NN(stored);
360     SvTEMP_off(stored);
361     SvREADONLY_on(stored);
362
363     meta->isa = stored;
364
365     /* now that we're past the exception dangers, grab our own reference to
366        the AV we're about to use for the result. The reference owned by the
367        mortals' stack will be released soon, so everything will balance.  */
368     SvREFCNT_inc_simple_void_NN(retval);
369     SvTEMP_off(retval);
370
371     /* we don't want anyone modifying the cache entry but us,
372        and we do so by replacing it completely */
373     SvREADONLY_on(retval);
374
375     return MUTABLE_AV(Perl_mro_set_private_data(aTHX_ meta, &dfs_alg,
376                                                 MUTABLE_SV(retval)));
377 }
378
379 /*
380 =for apidoc mro_get_linear_isa
381
382 Returns either C<mro_get_linear_isa_c3> or
383 C<mro_get_linear_isa_dfs> for the given stash,
384 dependant upon which MRO is in effect
385 for that stash.  The return value is a
386 read-only AV*.
387
388 You are responsible for C<SvREFCNT_inc()> on the
389 return value if you plan to store it anywhere
390 semi-permanently (otherwise it might be deleted
391 out from under you the next time the cache is
392 invalidated).
393
394 =cut
395 */
396 AV*
397 Perl_mro_get_linear_isa(pTHX_ HV *stash)
398 {
399     struct mro_meta* meta;
400     AV *isa;
401
402     PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA;
403     if(!SvOOK(stash))
404         Perl_croak(aTHX_ "Can't linearize anonymous symbol table");
405
406     meta = HvMROMETA(stash);
407     if (!meta->mro_which)
408         Perl_croak(aTHX_ "panic: invalid MRO!");
409     isa = meta->mro_which->resolve(aTHX_ stash, 0);
410
411     if (!meta->isa) {
412             HV *const isa_hash = newHV();
413             /* Linearisation didn't build it for us, so do it here.  */
414             SV *const *svp = AvARRAY(isa);
415             SV *const *const svp_end = svp + AvFILLp(isa) + 1;
416             const HEK *canon_name = HvENAME_HEK(stash);
417             if (!canon_name) canon_name = HvNAME_HEK(stash);
418
419             while (svp < svp_end) {
420                 (void) hv_store_ent(isa_hash, *svp++, &PL_sv_undef, 0);
421             }
422
423             (void) hv_common(isa_hash, NULL, HEK_KEY(canon_name),
424                              HEK_LEN(canon_name), HEK_FLAGS(canon_name),
425                              HV_FETCH_ISSTORE, &PL_sv_undef,
426                              HEK_HASH(canon_name));
427             (void) hv_store(isa_hash, "UNIVERSAL", 9, &PL_sv_undef, 0);
428
429             SvREADONLY_on(isa_hash);
430
431             meta->isa = isa_hash;
432     }
433
434     return isa;
435 }
436
437 /*
438 =for apidoc mro_isa_changed_in
439
440 Takes the necessary steps (cache invalidations, mostly)
441 when the @ISA of the given package has changed.  Invoked
442 by the C<setisa> magic, should not need to invoke directly.
443
444 =cut
445 */
446
447 /* Macro to avoid repeating the code five times. */
448 #define CLEAR_LINEAR(mEta)                                     \
449     if (mEta->mro_linear_all) {                                 \
450         SvREFCNT_dec(MUTABLE_SV(mEta->mro_linear_all));          \
451         mEta->mro_linear_all = NULL;                              \
452         /* This is just acting as a shortcut pointer.  */          \
453         mEta->mro_linear_current = NULL;                            \
454     } else if (mEta->mro_linear_current) {                           \
455         /* Only the current MRO is stored, so this owns the data.  */ \
456         SvREFCNT_dec(mEta->mro_linear_current);                        \
457         mEta->mro_linear_current = NULL;                                \
458     }
459
460 void
461 Perl_mro_isa_changed_in(pTHX_ HV* stash)
462 {
463     dVAR;
464     HV* isarev;
465     AV* linear_mro;
466     HE* iter;
467     SV** svp;
468     I32 items;
469     bool is_universal;
470     struct mro_meta * meta;
471     HV *isa = NULL;
472
473     const char * const stashname = HvENAME_get(stash);
474     const STRLEN stashname_len = HvENAMELEN_get(stash);
475
476     PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN;
477
478     if(!stashname)
479         Perl_croak(aTHX_ "Can't call mro_isa_changed_in() on anonymous symbol table");
480
481
482     /* wipe out the cached linearizations for this stash */
483     meta = HvMROMETA(stash);
484     CLEAR_LINEAR(meta);
485     if (meta->isa) {
486         /* Steal it for our own purposes. */
487         isa = (HV *)sv_2mortal((SV *)meta->isa);
488         meta->isa = NULL;
489     }
490
491     /* Inc the package generation, since our @ISA changed */
492     meta->pkg_gen++;
493
494     /* Wipe the global method cache if this package
495        is UNIVERSAL or one of its parents */
496
497     svp = hv_fetch(PL_isarev, stashname, stashname_len, 0);
498     isarev = svp ? MUTABLE_HV(*svp) : NULL;
499
500     if((stashname_len == 9 && strEQ(stashname, "UNIVERSAL"))
501         || (isarev && hv_exists(isarev, "UNIVERSAL", 9))) {
502         PL_sub_generation++;
503         is_universal = TRUE;
504     }
505     else { /* Wipe the local method cache otherwise */
506         meta->cache_gen++;
507         is_universal = FALSE;
508     }
509
510     /* wipe next::method cache too */
511     if(meta->mro_nextmethod) hv_clear(meta->mro_nextmethod);
512
513     /* Iterate the isarev (classes that are our children),
514        wiping out their linearization, method and isa caches
515        and upating PL_isarev. */
516     if(isarev) {
517         HV *isa_hashes = NULL;
518
519        /* We have to iterate through isarev twice to avoid a chicken and
520         * egg problem: if A inherits from B and both are in isarev, A might
521         * be processed before B and use B’s previous linearisation.
522         */
523
524        /* First iteration: Wipe everything, but stash away the isa hashes
525         * since we still need them for updating PL_isarev.
526         */
527
528         if(hv_iterinit(isarev)) {
529             /* Only create the hash if we need it; i.e., if isarev has
530                any elements. */
531             isa_hashes = (HV *)sv_2mortal((SV *)newHV());
532         }
533         while((iter = hv_iternext(isarev))) {
534             I32 len;
535             const char* const revkey = hv_iterkey(iter, &len);
536             HV* revstash = gv_stashpvn(revkey, len, 0);
537             struct mro_meta* revmeta;
538
539             if(!revstash) continue;
540             revmeta = HvMROMETA(revstash);
541             CLEAR_LINEAR(revmeta);
542             if(!is_universal)
543                 revmeta->cache_gen++;
544             if(revmeta->mro_nextmethod)
545                 hv_clear(revmeta->mro_nextmethod);
546
547             (void)
548               hv_store(
549                isa_hashes, (const char*)&revstash, sizeof(HV *),
550                revmeta->isa ? (SV *)revmeta->isa : &PL_sv_undef, 0
551               );
552             revmeta->isa = NULL;
553         }
554
555        /* Second pass: Update PL_isarev. We can just use isa_hashes to
556         * avoid another round of stash lookups. */
557
558        /* isarev might be deleted from PL_isarev during this loop, so hang
559         * on to it. */
560         SvREFCNT_inc_simple_void_NN(sv_2mortal((SV *)isarev));
561
562         if(isa_hashes) {
563             hv_iterinit(isa_hashes);
564             while((iter = hv_iternext(isa_hashes))) {
565                 HV* const revstash = *(HV **)HEK_KEY(HeKEY_hek(iter));
566                 HV * const isa = (HV *)HeVAL(iter);
567                 const HEK *namehek;
568
569                 /* We're starting at the 2nd element, skipping revstash */
570                 linear_mro = mro_get_linear_isa(revstash);
571                 svp = AvARRAY(linear_mro) + 1;
572                 items = AvFILLp(linear_mro);
573
574                 namehek = HvENAME_HEK(revstash);
575                 if (!namehek) namehek = HvNAME_HEK(revstash);
576
577                 while (items--) {
578                     SV* const sv = *svp++;
579                     HV* mroisarev;
580
581                     HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0);
582
583                     /* That fetch should not fail.  But if it had to create
584                        a new SV for us, then will need to upgrade it to an
585                        HV (which sv_upgrade() can now do for us). */
586
587                     mroisarev = MUTABLE_HV(HeVAL(he));
588
589                     SvUPGRADE(MUTABLE_SV(mroisarev), SVt_PVHV);
590
591                     /* This hash only ever contains PL_sv_yes. Storing it
592                        over itself is almost as cheap as calling hv_exists,
593                        so on aggregate we expect to save time by not making
594                        two calls to the common HV code for the case where
595                        it doesn't exist.  */
596            
597                     (void)
598                       hv_store(
599                        mroisarev, HEK_KEY(namehek), HEK_LEN(namehek),
600                        &PL_sv_yes, 0
601                       );
602                 }
603
604                 if((SV *)isa != &PL_sv_undef)
605                     mro_clean_isarev(
606                      isa, HEK_KEY(namehek), HEK_LEN(namehek),
607                      HvMROMETA(revstash)->isa
608                     );
609             }
610         }
611     }
612
613     /* Now iterate our MRO (parents), adding ourselves and everything from
614        our isarev to their isarev.
615     */
616
617     /* We're starting at the 2nd element, skipping ourselves here */
618     linear_mro = mro_get_linear_isa(stash);
619     svp = AvARRAY(linear_mro) + 1;
620     items = AvFILLp(linear_mro);
621
622     while (items--) {
623         SV* const sv = *svp++;
624         HV* mroisarev;
625
626         HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0);
627
628         /* That fetch should not fail.  But if it had to create a new SV for
629            us, then will need to upgrade it to an HV (which sv_upgrade() can
630            now do for us. */
631
632         mroisarev = MUTABLE_HV(HeVAL(he));
633
634         SvUPGRADE(MUTABLE_SV(mroisarev), SVt_PVHV);
635
636         /* This hash only ever contains PL_sv_yes. Storing it over itself is
637            almost as cheap as calling hv_exists, so on aggregate we expect to
638            save time by not making two calls to the common HV code for the
639            case where it doesn't exist.  */
640            
641         (void)hv_store(mroisarev, stashname, stashname_len, &PL_sv_yes, 0);
642     }
643
644     /* Delete our name from our former parents’ isarevs. */
645     if(isa && HvARRAY(isa))
646         mro_clean_isarev(isa, stashname, stashname_len, meta->isa);
647 }
648
649 /* Deletes name from all the isarev entries listed in isa */
650 STATIC void
651 S_mro_clean_isarev(pTHX_ HV * const isa, const char * const name,
652                          const STRLEN len, HV * const exceptions)
653 {
654     HE* iter;
655
656     PERL_ARGS_ASSERT_MRO_CLEAN_ISAREV;
657
658     /* Delete our name from our former parents’ isarevs. */
659     if(isa && HvARRAY(isa) && hv_iterinit(isa)) {
660         SV **svp;
661         while((iter = hv_iternext(isa))) {
662             I32 klen;
663             const char * const key = hv_iterkey(iter, &klen);
664             if(exceptions && hv_exists(exceptions, key, klen)) continue;
665             svp = hv_fetch(PL_isarev, key, klen, 0);
666             if(svp) {
667                 HV * const isarev = (HV *)*svp;
668                 (void)hv_delete(isarev, name, len, G_DISCARD);
669                 if(!HvARRAY(isarev) || !HvKEYS(isarev))
670                     (void)hv_delete(PL_isarev, key, klen, G_DISCARD);
671             }
672         }
673     }
674 }
675
676 /*
677 =for apidoc mro_package_moved
678
679 Call this function to signal to a stash that it has been assigned to
680 another spot in the stash hierarchy. C<stash> is the stash that has been
681 assigned. C<oldstash> is the stash it replaces, if any. C<gv> is the glob
682 that is actually being assigned to.
683
684 This can also be called with a null first argument to
685 indicate that C<oldstash> has been deleted.
686
687 This function invalidates isa caches on the old stash, on all subpackages
688 nested inside it, and on the subclasses of all those, including
689 non-existent packages that have corresponding entries in C<stash>.
690
691 It also sets the effective names (C<HvENAME>) on all the stashes as
692 appropriate.
693
694 If the C<gv> is present and is not in the symbol table, then this function
695 simply returns. This checked will be skipped if C<flags & 1>.
696
697 =cut
698 */
699 void
700 Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash,
701                        const GV * const gv, U32 flags)
702 {
703     SV *namesv;
704     HEK **namep;
705     I32 name_count;
706     HV *stashes;
707     HE* iter;
708
709     PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED;
710     assert(stash || oldstash);
711
712     /* Determine the name(s) of the location that stash was assigned to
713      * or from which oldstash was removed.
714      *
715      * We cannot reliably use the name in oldstash, because it may have
716      * been deleted from the location in the symbol table that its name
717      * suggests, as in this case:
718      *
719      *   $globref = \*foo::bar::;
720      *   Symbol::delete_package("foo");
721      *   *$globref = \%baz::;
722      *   *$globref = *frelp::;
723      *      # calls mro_package_moved(%frelp::, %baz::, *$globref, NULL, 0)
724      *
725      * So we get it from the gv. But, since the gv may no longer be in the
726      * symbol table, we check that first. The only reliable way to tell is
727      * to see whether its stash has an effective name and whether the gv
728      * resides in that stash under its name. That effective name may be
729      * different from what gv_fullname4 would use.
730      * If flags & 1, the caller has asked us to skip the check.
731      */
732     if(!(flags & 1)) {
733         SV **svp;
734         if(
735          !GvSTASH(gv) || !HvENAME(GvSTASH(gv)) ||
736          !(svp = hv_fetch(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv), 0)) ||
737          *svp != (SV *)gv
738         ) return;
739     }
740     assert(SvOOK(GvSTASH(gv)));
741     assert(GvNAMELEN(gv) > 1);
742     assert(GvNAME(gv)[GvNAMELEN(gv) - 1] == ':');
743     assert(GvNAME(gv)[GvNAMELEN(gv) - 2] == ':');
744     name_count = HvAUX(GvSTASH(gv))->xhv_name_count;
745     if (!name_count) {
746         name_count = 1;
747         namep = &HvAUX(GvSTASH(gv))->xhv_name;
748     }
749     else {
750         namep = (HEK **)HvAUX(GvSTASH(gv))->xhv_name;
751         if (name_count < 0) ++namep, name_count = -name_count - 1;
752     }
753     if (name_count == 1) {
754         if (HEK_LEN(*namep) == 4 && strnEQ(HEK_KEY(*namep), "main", 4)) {
755             namesv = sv_2mortal(newSVpvs(""));
756         }
757         else {
758             namesv = sv_2mortal(newSVhek(*namep));
759             sv_catpvs(namesv, "::");
760         }
761         sv_catpvn(namesv, GvNAME(gv), GvNAMELEN(gv) - 2);
762                                           /* skip trailing :: */
763     }
764     else {
765         SV *aname;
766         namesv = sv_2mortal((SV *)newAV());
767         while (name_count--) {
768             if(HEK_LEN(*namep) == 4 && strnEQ(HEK_KEY(*namep), "main", 4)){
769                 aname = newSVpvs(""); namep++;
770             }
771             else {
772                 aname = newSVhek(*namep++);
773                 sv_catpvs(aname, "::");
774             }
775             sv_catpvn(aname, GvNAME(gv), GvNAMELEN(gv) - 2);
776                                           /* skip trailing :: */
777             av_push((AV *)namesv, aname);
778         }
779     }
780
781     /* Get a list of all the affected classes. */
782     /* We cannot simply pass them all to mro_isa_changed_in to avoid
783        the list, as that function assumes that only one package has
784        changed. It does not work with:
785
786           @foo::ISA = qw( B B::B );
787           *B:: = delete $::{"A::"};
788
789        as neither B nor B::B can be updated before the other, since they
790        will reset caches on foo, which will see either B or B::B with the
791        wrong name. The names must be set on *all* affected stashes before
792        we do anything else. (And linearisations must be cleared, too.)
793      */
794     stashes = (HV *) sv_2mortal((SV *)newHV());
795     mro_gather_and_rename(
796      stashes, (HV *) sv_2mortal((SV *)newHV()),
797      stash, oldstash, namesv
798     );
799
800     /* Once the caches have been wiped on all the classes, call
801        mro_isa_changed_in on each. */
802     hv_iterinit(stashes);
803     while((iter = hv_iternext(stashes))) {
804         HV * const stash = *(HV **)HEK_KEY(HeKEY_hek(iter));
805         if(HvENAME(stash)) {
806             /* We have to restore the original meta->isa (that
807                mro_gather_and_rename set aside for us) this way, in case
808                one class in this list is a superclass of a another class
809                that we have already encountered. In such a case, meta->isa
810                will have been overwritten without old entries being deleted 
811                from PL_isarev. */
812             struct mro_meta * const meta = HvMROMETA(stash);
813             if(meta->isa != (HV *)HeVAL(iter)){
814                 SvREFCNT_dec(meta->isa);
815                 meta->isa
816                  = HeVAL(iter) == &PL_sv_yes
817                     ? NULL
818                     : (HV *)HeVAL(iter);
819                 HeVAL(iter) = NULL; /* We donated our reference count. */
820             }
821             mro_isa_changed_in(stash);
822         }
823     }
824 }
825
826 void
827 S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes,
828                               HV *stash, HV *oldstash, SV *namesv)
829 {
830     register XPVHV* xhv;
831     register HE *entry;
832     I32 riter = -1;
833     I32 items;
834     const bool stash_had_name = stash && HvENAME(stash);
835     bool fetched_isarev = FALSE;
836     HV *seen = NULL;
837     HV *isarev = NULL;
838     SV **svp = NULL;
839
840     PERL_ARGS_ASSERT_MRO_GATHER_AND_RENAME;
841
842     /* We use the seen_stashes hash to keep track of which packages have
843        been encountered so far. This must be separate from the main list of
844        stashes, as we need to distinguish between stashes being assigned
845        and stashes being replaced/deleted. (A nested stash can be on both
846        sides of an assignment. We cannot simply skip iterating through a
847        stash on the right if we have seen it on the left, as it will not
848        get its ename assigned to it.)
849
850        To avoid allocating extra SVs, instead of a bitfield we can make
851        bizarre use of immortals:
852
853         &PL_sv_undef:  seen on the left  (oldstash)
854         &PL_sv_no   :  seen on the right (stash)
855         &PL_sv_yes  :  seen on both sides
856
857      */
858
859     if(oldstash) {
860         /* Add to the big list. */
861         struct mro_meta * meta;
862         HE * const entry
863          = (HE *)
864              hv_common(
865               seen_stashes, NULL, (const char *)&oldstash, sizeof(HV *), 0,
866               HV_FETCH_LVALUE|HV_FETCH_EMPTY_HE, NULL, 0
867              );
868         if(HeVAL(entry) == &PL_sv_undef || HeVAL(entry) == &PL_sv_yes) {
869             oldstash = NULL;
870             goto check_stash;
871         }
872         HeVAL(entry)
873          = HeVAL(entry) == &PL_sv_no ? &PL_sv_yes : &PL_sv_undef;
874         meta = HvMROMETA(oldstash);
875         (void)
876           hv_store(
877            stashes, (const char *)&oldstash, sizeof(HV *),
878            meta->isa
879             ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
880             : &PL_sv_yes,
881            0
882           );
883         CLEAR_LINEAR(meta);
884
885         /* Update the effective name. */
886         if(HvENAME_get(oldstash)) {
887             const HEK * const enamehek = HvENAME_HEK(oldstash);
888             if(SvTYPE(namesv) == SVt_PVAV) {
889                 items = AvFILLp((AV *)namesv) + 1;
890                 svp = AvARRAY((AV *)namesv);
891             }
892             else {
893                 items = 1;
894                 svp = &namesv;
895             }
896             while (items--) {
897                 STRLEN len;
898                 const char *name = SvPVx_const(*svp++, len);
899                 if(PL_stashcache)
900                     (void)hv_delete(PL_stashcache, name, len, G_DISCARD);
901                 hv_ename_delete(oldstash, name, len, 0);
902
903                 if (!fetched_isarev) {
904                     /* If the name deletion caused a name change, then we
905                      * are not going to call mro_isa_changed_in with this
906                      * name (and not at all if it has become anonymous) so
907                      * we need to delete old isarev entries here, both
908                      * those in the superclasses and this class’s own list
909                      * of subclasses. We simply delete the latter from
910                      * PL_isarev, since we still need it. hv_delete morti-
911                      * fies it for us, so sv_2mortal is not necessary. */
912                     if(HvENAME_HEK(oldstash) != enamehek) {
913                         if(meta->isa && HvARRAY(meta->isa))
914                             mro_clean_isarev(meta->isa, name, len, NULL);
915                         isarev = (HV *)hv_delete(PL_isarev, name, len, 0);
916                         fetched_isarev=TRUE;
917                     }
918                 }
919             }
920         }
921     }
922    check_stash:
923     if(stash) {
924         if(SvTYPE(namesv) == SVt_PVAV) {
925             items = AvFILLp((AV *)namesv) + 1;
926             svp = AvARRAY((AV *)namesv);
927         }
928         else {
929             items = 1;
930             svp = &namesv;
931         }
932         while (items--) {
933             STRLEN len;
934             const char *name = SvPVx_const(*svp++, len);
935             hv_ename_add(stash, name, len, 0);
936         }
937
938        /* Add it to the big list if it needs
939         * mro_isa_changed_in called on it. That happens if it was
940         * detached from the symbol table (so it had no HvENAME) before
941         * being assigned to the spot named by the â€˜name’ variable, because
942         * its cached isa linerisation is now stale (the effective name
943         * having changed), and subclasses will then use that cache when
944         * mro_package_moved calls mro_isa_changed_in. (See
945         * [perl #77358].)
946         *
947         * If it did have a name, then its previous name is still
948         * used in isa caches, and there is no need for
949         * mro_package_moved to call mro_isa_changed_in.
950         */
951
952         entry
953          = (HE *)
954              hv_common(
955               seen_stashes, NULL, (const char *)&stash, sizeof(HV *), 0,
956               HV_FETCH_LVALUE|HV_FETCH_EMPTY_HE, NULL, 0
957              );
958         if(HeVAL(entry) == &PL_sv_yes || HeVAL(entry) == &PL_sv_no)
959             stash = NULL;
960         else {
961             HeVAL(entry)
962              = HeVAL(entry) == &PL_sv_undef ? &PL_sv_yes : &PL_sv_no;
963             if(!stash_had_name)
964             {
965                 struct mro_meta * const meta = HvMROMETA(stash);
966                 (void)
967                   hv_store(
968                    stashes, (const char *)&stash, sizeof(HV *),
969                    meta->isa
970                     ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
971                     : &PL_sv_yes,
972                    0
973                   );
974                 CLEAR_LINEAR(meta);
975             }
976         }
977     }
978
979     if(!stash && !oldstash)
980         /* Both stashes have been encountered already. */
981         return;
982
983     /* Add all the subclasses to the big list. */
984     if(!fetched_isarev) {
985         /* If oldstash is not null, then we can use its HvENAME to look up
986            the isarev hash, since all its subclasses will be listed there.
987
988            If oldstash is null, then this is an empty spot with no stash in
989            it, so subclasses could be listed in isarev hashes belonging to
990            any of the names, so we have to check all of them. */
991         if(oldstash) {
992             fetched_isarev = TRUE;
993             svp
994              = hv_fetch(
995                  PL_isarev, HvENAME(oldstash), HvENAMELEN_get(oldstash), 0
996                );
997             if (svp) isarev = MUTABLE_HV(*svp);
998         }
999         else if(SvTYPE(namesv) == SVt_PVAV) {
1000             items = AvFILLp((AV *)namesv) + 1;
1001             svp = AvARRAY((AV *)namesv);
1002         }
1003         else {
1004             items = 1;
1005             svp = &namesv;
1006         }
1007     }
1008     if(
1009         isarev || !fetched_isarev
1010     ) {
1011       while (fetched_isarev || items--) {
1012         HE *iter;
1013
1014         if (!fetched_isarev) {
1015             HE * const he = hv_fetch_ent(PL_isarev, *svp++, 0, 0);
1016             if (!he || !(isarev = MUTABLE_HV(HeVAL(he)))) continue;
1017         }
1018
1019         hv_iterinit(isarev);
1020         while((iter = hv_iternext(isarev))) {
1021             I32 len;
1022             const char* const revkey = hv_iterkey(iter, &len);
1023             HV* revstash = gv_stashpvn(revkey, len, 0);
1024             struct mro_meta * meta;
1025
1026             if(!revstash) continue;
1027             meta = HvMROMETA(revstash);
1028             (void)
1029               hv_store(
1030                stashes, (const char *)&revstash, sizeof(HV *),
1031                meta->isa
1032                 ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
1033                 : &PL_sv_yes,
1034                0
1035               );
1036             CLEAR_LINEAR(meta);
1037         }
1038
1039         if (fetched_isarev) break;
1040       }
1041     }
1042
1043     /* This is partly based on code in hv_iternext_flags. We are not call-
1044        ing that here, as we want to avoid resetting the hash iterator. */
1045
1046     /* Skip the entire loop if the hash is empty.   */
1047     if(oldstash && HvUSEDKEYS(oldstash)) { 
1048         xhv = (XPVHV*)SvANY(oldstash);
1049         seen = (HV *) sv_2mortal((SV *)newHV());
1050
1051         /* Iterate through entries in the oldstash, adding them to the
1052            list, meanwhile doing the equivalent of $seen{$key} = 1.
1053          */
1054
1055         while (++riter <= (I32)xhv->xhv_max) {
1056             entry = (HvARRAY(oldstash))[riter];
1057
1058             /* Iterate through the entries in this list */
1059             for(; entry; entry = HeNEXT(entry)) {
1060                 const char* key;
1061                 I32 len;
1062
1063                 /* If this entry is not a glob, ignore it.
1064                    Try the next.  */
1065                 if (!isGV(HeVAL(entry))) continue;
1066
1067                 key = hv_iterkey(entry, &len);
1068                 if(len > 1 && key[len-2] == ':' && key[len-1] == ':') {
1069                     HV * const oldsubstash = GvHV(HeVAL(entry));
1070                     SV ** const stashentry
1071                      = stash ? hv_fetch(stash, key, len, 0) : NULL;
1072                     HV *substash = NULL;
1073
1074                     /* Avoid main::main::main::... */
1075                     if(oldsubstash == oldstash) continue;
1076
1077                     if(
1078                         (
1079                             stashentry && *stashentry
1080                          && (substash = GvHV(*stashentry))
1081                         )
1082                      || (oldsubstash && HvENAME_get(oldsubstash))
1083                     )
1084                     {
1085                         /* Add :: and the key (minus the trailing ::)
1086                            to each name. */
1087                         SV *subname;
1088                         if(SvTYPE(namesv) == SVt_PVAV) {
1089                             SV *aname;
1090                             items = AvFILLp((AV *)namesv) + 1;
1091                             svp = AvARRAY((AV *)namesv);
1092                             subname = sv_2mortal((SV *)newAV());
1093                             while (items--) {
1094                                 aname = newSVsv(*svp++);
1095                                 sv_catpvs(aname, "::");
1096                                 sv_catpvn(aname, key, len-2);
1097                                 av_push((AV *)subname, aname);
1098                             }
1099                         }
1100                         else {
1101                             subname = sv_2mortal(newSVsv(namesv));
1102                             sv_catpvs(subname, "::");
1103                             sv_catpvn(subname, key, len-2);
1104                         }
1105                         mro_gather_and_rename(
1106                              stashes, seen_stashes,
1107                              substash, oldsubstash, subname
1108                         );
1109                     }
1110
1111                     (void)hv_store(seen, key, len, &PL_sv_yes, 0);
1112                 }
1113             }
1114         }
1115     }
1116
1117     /* Skip the entire loop if the hash is empty.   */
1118     if (stash && HvUSEDKEYS(stash)) {
1119         xhv = (XPVHV*)SvANY(stash);
1120         riter = -1;
1121
1122         /* Iterate through the new stash, skipping $seen{$key} items,
1123            calling mro_gather_and_rename(stashes,seen,entry,NULL, ...). */
1124         while (++riter <= (I32)xhv->xhv_max) {
1125             entry = (HvARRAY(stash))[riter];
1126
1127             /* Iterate through the entries in this list */
1128             for(; entry; entry = HeNEXT(entry)) {
1129                 const char* key;
1130                 I32 len;
1131
1132                 /* If this entry is not a glob, ignore it.
1133                    Try the next.  */
1134                 if (!isGV(HeVAL(entry))) continue;
1135
1136                 key = hv_iterkey(entry, &len);
1137                 if(len > 1 && key[len-2] == ':' && key[len-1] == ':') {
1138                     HV *substash;
1139
1140                     /* If this entry was seen when we iterated through the
1141                        oldstash, skip it. */
1142                     if(seen && hv_exists(seen, key, len)) continue;
1143
1144                     /* We get here only if this stash has no corresponding
1145                        entry in the stash being replaced. */
1146
1147                     substash = GvHV(HeVAL(entry));
1148                     if(substash) {
1149                         SV *subname;
1150
1151                         /* Avoid checking main::main::main::... */
1152                         if(substash == stash) continue;
1153
1154                         /* Add :: and the key (minus the trailing ::)
1155                            to each name. */
1156                         if(SvTYPE(namesv) == SVt_PVAV) {
1157                             SV *aname;
1158                             items = AvFILLp((AV *)namesv) + 1;
1159                             svp = AvARRAY((AV *)namesv);
1160                             subname = sv_2mortal((SV *)newAV());
1161                             while (items--) {
1162                                 aname = newSVsv(*svp++);
1163                                 sv_catpvs(aname, "::");
1164                                 sv_catpvn(aname, key, len-2);
1165                                 av_push((AV *)subname, aname);
1166                             }
1167                         }
1168                         else {
1169                             subname = sv_2mortal(newSVsv(namesv));
1170                             sv_catpvs(subname, "::");
1171                             sv_catpvn(subname, key, len-2);
1172                         }
1173                         mro_gather_and_rename(
1174                           stashes, seen_stashes,
1175                           substash, NULL, subname
1176                         );
1177                     }
1178                 }
1179             }
1180         }
1181     }
1182 }
1183
1184 /*
1185 =for apidoc mro_method_changed_in
1186
1187 Invalidates method caching on any child classes
1188 of the given stash, so that they might notice
1189 the changes in this one.
1190
1191 Ideally, all instances of C<PL_sub_generation++> in
1192 perl source outside of C<mro.c> should be
1193 replaced by calls to this.
1194
1195 Perl automatically handles most of the common
1196 ways a method might be redefined.  However, there
1197 are a few ways you could change a method in a stash
1198 without the cache code noticing, in which case you
1199 need to call this method afterwards:
1200
1201 1) Directly manipulating the stash HV entries from
1202 XS code.
1203
1204 2) Assigning a reference to a readonly scalar
1205 constant into a stash entry in order to create
1206 a constant subroutine (like constant.pm
1207 does).
1208
1209 This same method is available from pure perl
1210 via, C<mro::method_changed_in(classname)>.
1211
1212 =cut
1213 */
1214 void
1215 Perl_mro_method_changed_in(pTHX_ HV *stash)
1216 {
1217     const char * const stashname = HvENAME_get(stash);
1218     const STRLEN stashname_len = HvENAMELEN_get(stash);
1219
1220     SV ** const svp = hv_fetch(PL_isarev, stashname, stashname_len, 0);
1221     HV * const isarev = svp ? MUTABLE_HV(*svp) : NULL;
1222
1223     PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN;
1224
1225     if(!stashname)
1226         Perl_croak(aTHX_ "Can't call mro_method_changed_in() on anonymous symbol table");
1227
1228     /* Inc the package generation, since a local method changed */
1229     HvMROMETA(stash)->pkg_gen++;
1230
1231     /* If stash is UNIVERSAL, or one of UNIVERSAL's parents,
1232        invalidate all method caches globally */
1233     if((stashname_len == 9 && strEQ(stashname, "UNIVERSAL"))
1234         || (isarev && hv_exists(isarev, "UNIVERSAL", 9))) {
1235         PL_sub_generation++;
1236         return;
1237     }
1238
1239     /* else, invalidate the method caches of all child classes,
1240        but not itself */
1241     if(isarev) {
1242         HE* iter;
1243
1244         hv_iterinit(isarev);
1245         while((iter = hv_iternext(isarev))) {
1246             I32 len;
1247             const char* const revkey = hv_iterkey(iter, &len);
1248             HV* const revstash = gv_stashpvn(revkey, len, 0);
1249             struct mro_meta* mrometa;
1250
1251             if(!revstash) continue;
1252             mrometa = HvMROMETA(revstash);
1253             mrometa->cache_gen++;
1254             if(mrometa->mro_nextmethod)
1255                 hv_clear(mrometa->mro_nextmethod);
1256         }
1257     }
1258 }
1259
1260 void
1261 Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name)
1262 {
1263     const struct mro_alg *const which = Perl_mro_get_from_name(aTHX_ name);
1264  
1265     PERL_ARGS_ASSERT_MRO_SET_MRO;
1266
1267     if (!which)
1268         Perl_croak(aTHX_ "Invalid mro name: '%"SVf"'", name);
1269
1270     if(meta->mro_which != which) {
1271         if (meta->mro_linear_current && !meta->mro_linear_all) {
1272             /* If we were storing something directly, put it in the hash before
1273                we lose it. */
1274             Perl_mro_set_private_data(aTHX_ meta, meta->mro_which, 
1275                                       MUTABLE_SV(meta->mro_linear_current));
1276         }
1277         meta->mro_which = which;
1278         /* Scrub our cached pointer to the private data.  */
1279         meta->mro_linear_current = NULL;
1280         /* Only affects local method cache, not
1281            even child classes */
1282         meta->cache_gen++;
1283         if(meta->mro_nextmethod)
1284             hv_clear(meta->mro_nextmethod);
1285     }
1286 }
1287
1288 #include "XSUB.h"
1289
1290 XS(XS_mro_method_changed_in);
1291
1292 void
1293 Perl_boot_core_mro(pTHX)
1294 {
1295     dVAR;
1296     static const char file[] = __FILE__;
1297
1298     Perl_mro_register(aTHX_ &dfs_alg);
1299
1300     newXSproto("mro::method_changed_in", XS_mro_method_changed_in, file, "$");
1301 }
1302
1303 XS(XS_mro_method_changed_in)
1304 {
1305     dVAR;
1306     dXSARGS;
1307     SV* classname;
1308     HV* class_stash;
1309
1310     if(items != 1)
1311         croak_xs_usage(cv, "classname");
1312     
1313     classname = ST(0);
1314
1315     class_stash = gv_stashsv(classname, 0);
1316     if(!class_stash) Perl_croak(aTHX_ "No such class: '%"SVf"'!", SVfARG(classname));
1317
1318     mro_method_changed_in(class_stash);
1319
1320     XSRETURN_EMPTY;
1321 }
1322
1323 /*
1324  * Local variables:
1325  * c-indentation-style: bsd
1326  * c-basic-offset: 4
1327  * indent-tabs-mode: t
1328  * End:
1329  *
1330  * ex: set ts=8 sts=4 sw=4 noet:
1331  */