LOGONLY mark c35588 as NODOC since it's administrivia
[p5sagit/p5-mst-13.2.git] / mro.c
2010-05-24 Nicholas Clark Convert Perl_sv_dup_inc() from a macro to a real function.
2009-08-21 Jerry D. Hedden Fix build warning in mro.c
2009-08-20 Nicholas Clark Optimise S_mro_get_linear_isa_dfs() when dealing with...
2009-07-25 Nicholas Clark When resetting our children, wipe out the isa cache...
2009-01-03 Nicholas Clark Following change 34356, which decoupled get_isa_hash...
2008-12-28 Nicholas Clark Add casts to gain C++ compatibility, as spotted by...
2008-12-27 Nicholas Clark Move all mro:: XS functions from mro.c to ext/mro/mro...
2008-12-27 Nicholas Clark In struct mro_meta, rename mro_linear_dfs to mro_linear...
2008-12-27 Nicholas Clark In struct mro_meta, rename mro_linear_c3 to mro_linear_...
2008-12-27 Nicholas Clark Break out the set-the-MRO logic from the XS_mro_set_mro...
2008-12-27 Nicholas Clark Optimisation of the use of the meta structure - don...
2008-12-27 Nicholas Clark Proper pluggable Method Resolution Orders. 'c3' is...
2008-12-27 Nicholas Clark Add Perl_mro_register() to register Method Resolution...
2008-12-27 Nicholas Clark Add MRO_GET_PRIVATE_DATA() to use the cached mro privat...
2008-12-27 Nicholas Clark Repurpose struct mro_meta to allow it to store cached...
2008-11-27 Nicholas Clark S_mro_get_linear_isa_*() should have an *un*signed...
2008-11-02 Tom Christiansen PATCH: Large omnibus patch to clean up the JRRT quotes
2008-10-30 Nicholas Clark Eliminate (SV *) casts from the rest of *.c, picking...
2008-10-29 Nicholas Clark Eliminate (AV *) casts in *.c.
2008-10-28 Nicholas Clark Every remaining (HV *) cast in *.c
2008-10-25 Nicholas Clark Update copyright years.
2008-09-12 Nicholas Clark In S_mro_get_linear_isa_dfs(), add void casts to silenc...
2008-09-12 Nicholas Clark Build the isa cache from any linear ISA, rather than...
2008-09-12 Nicholas Clark Need to free the isa lookup hash before rebuilding it.
2008-09-12 Nicholas Clark Create a direct lookup hash for ->isa() lookup, by...
2008-08-22 Nicholas Clark In S_mro_get_linear_isa_dfs(), save copying by making...
2008-08-22 Nicholas Clark In S_mro_get_linear_isa_dfs(), hv_exists_ent() followed...
2008-05-21 Nicholas Clark Add Perl_croak_xs_usage(), which reduces a lot of expli...
2008-02-25 ilmari@vesla.ilmar... Avoid a segfault case in MRO code, based on :
2008-02-12 Nicholas Clark assert() that every NN argument is not NULL. Otherwise...
2008-01-04 Marcus Holland-Moritz Add macros mPUSHs() and mXPUSHs() for pushing SVs on...
2008-01-03 Nicholas Clark Extend newSVpvn_flags() to also call sv_2mortal() if...
2008-01-03 Nicholas Clark We can now sv_upgrade(sv, SVt_PVHV), so do so, to simpl...
2007-10-22 Nicholas Clark hv_iterkeysv() actually creates a mortal SV for every...
2007-10-22 Nicholas Clark In Perl_mro_isa_changed_in(), no need to call an RVALUE...
2007-10-22 Nicholas Clark S_mro_get_linear_isa_c3() doesn't need to call hv_fetch...
2007-10-18 Nicholas Clark By using the HEK that holds the stash name in S_mro_get...
2007-10-12 Nicholas Clark Remove some strlen()s and replace one strlcpy() with...
2007-09-28 Rafael Garcia-Suarez Remove unneeded cast
2007-09-26 Nicholas Clark Change 31977 introduced a bug (failing to set the retur...
2007-09-26 Nicholas Clark Change the way of determining the MRO algorithm used...
2007-09-21 Rafael Garcia-Suarez Silence a load of "value computed is not used" warnings
2007-09-20 Nicholas Clark SVs know their length, so avoid 2 calls to strlen().
2007-09-12 Nicholas Clark mro_get_linear_isa_dfs and mro_get_linear_isa_c3 can...
2007-07-01 Nicholas Clark Restore a comment from 30501 unintentionally deleted...
2007-07-01 Nicholas Clark Avoid copying the AV in Perl_mro_get_linear_isa_dfs()
2007-06-29 Rafael Garcia-Suarez Revert change #31489.
2007-06-29 Brandon Black Re: valgrind findings
2007-06-28 Brandon Black Re: [perl #43357] *DESTROY = sub {} at runtime
2007-06-13 Brandon Black yet another mro.c patch
2007-06-07 Jerry D. Hedden Silence compiler warnings
2007-06-04 Brandon Black another mro patch
2007-05-30 Brandon Black Re: HvMROMETA
2007-05-19 Craig A. Berry Various mro updates from Brandon Black. References:
2007-05-09 Brandon Black Re: mro c3 infinite recursion problem. Attemp to free...
2007-05-08 Andy Lester more consting
2007-04-30 Brandon Black Re: mro status, etc
2007-04-26 Brandon Black mro status, etc
2007-04-26 Brandon Black Fix mro docs.
2007-04-24 Steve Hay Silence VC6 warning about not all control paths returni...
2007-04-23 Rafael Garcia-Suarez An optimisation to the MRO code, by Brandon Black,
2007-04-23 Craig A. Berry Shorten long symbols in mro.c to avoid name mangling...
2007-04-21 Nicholas Clark Storing PL_sv_yes over itself is as cheap as calling...
2007-04-21 Nicholas Clark In Perl_mro_get_linear_isa_dfs(), by treating the local...
2007-04-21 Rafael Garcia-Suarez Small optimisations, by Brandon Black
2007-04-21 Rafael Garcia-Suarez Code comments, by Brandon Black
2007-04-20 Nicholas Clark Terser source code in Perl_mro_meta_dup()
2007-04-19 Rafael Garcia-Suarez Simpler version, and that zeroes the allocated memory
2007-04-19 Rafael Garcia-Suarez Use Newxc instead of casting by hand
2007-04-19 Rafael Garcia-Suarez A Tolkien quote for mro.c, found by Audrey Tang.
2007-04-19 Rafael Garcia-Suarez Fix compilation error with threads
2007-04-19 Rafael Garcia-Suarez Put the "Can't locate package..." warnings in the ...
2007-04-19 Rafael Garcia-Suarez Change an "Internal error" message to the more common...
2007-04-19 Brandon Black Re: new C3 MRO patch