Use a union for storing the shared hash key reference count, rather
[p5sagit/p5-mst-13.2.git] / hv.c
2006-01-30 Nicholas Clark Use a union for storing the shared hash key reference...
2006-01-18 Steve Hay Change all NEWSV() to newSV() in the core and non-dual...
2006-01-10 Andy Lester It's the Barbie bus patch
2006-01-06 Andy Lester hv_fetchs() support
2006-01-06 Jarkko Hietaniemi sprinkle dVAR
2006-01-02 Rafael Garcia-Suarez Update copyrights for files modified in 2006
2006-01-01 Andy Lester Making 0 pointers to NULLs
2005-12-31 Nicholas Clark Turn a for loop that's almost a while into an honest...
2005-12-31 Nicholas Clark Calling Perl_hv_clear_placeholders while the hash itera...
2005-12-31 Nicholas Clark Remove unneeded test in Perl_hv_clear_placeholders.
2005-12-31 Nicholas Clark Re-attempt to clear the hash in S_hfreeentries if anyth...
2005-12-31 Nicholas Clark Stop 'sub a { // }; %::=()' panicing because the backre...
2005-12-30 Nicholas Clark Document why it's a bad plan to move the backreferences...
2005-12-30 Nicholas Clark In the shared string table, if we add new entries to...
2005-12-30 Nicholas Clark RMAGIC on symbol tables is bad, m'kay.
2005-12-27 Andy Lester pre-likely cleanup
2005-12-22 Andy Lester Ho! Ho! Ho! Santa brings consting!
2005-12-06 Andy Lester More consting, and putting stuff in embed.fnc
2005-11-19 Nicholas Clark Map the HE arena onto SV type 0 (SVt_NULL).
2005-11-14 Nicholas Clark Remove the two register keywords from auto variables...
2005-10-31 Andy Lester Etta James presents: More consting
2005-10-30 Nicholas Clark Replace hv_magic() with a macro to call sv_magic()...
2005-10-30 Nicholas Clark Replace hv_iternext() with a macro that calls hv_iterne...
2005-10-30 Nicholas Clark Fix typo in comment.
2005-10-19 Andy Lester More consting, and DRY leads to shrinking object code
2005-09-20 Rick Delaney Re: [perl #36733] %SIG not properly local-ized
2005-09-19 Nicholas Clark First argument to he_dup is actually a const HE *
2005-09-18 Nicholas Clark It looks like the only way to reliably make Perl_hv_nam...
2005-08-30 John E. Malmberg [patch@25334] hv.c vms environment fix.
2005-07-15 Andy Lester more embed cleanup
2005-07-13 Andy Lester More embed.fnc plowing
2005-07-10 Andy Lester Making my way thru embed.fnc
2005-07-08 Jim Cromie Re: janitorial work ? [patch]
2005-07-04 Andy Lester Remove unnecessary null check
2005-07-04 Andy Lester Better string constant in hv.c
2005-07-04 Nicholas Clark Implement hv_delayfree_ent in terms of hv_free_ent
2005-07-04 Nicholas Clark Inlining del_HE is actually a space optimisation.
2005-06-28 Steve Hay Stop "suspicious pointer conversion" warning following...
2005-06-27 Andy Lester We're going round in circles with pp_sys.c
2005-06-23 Andy Lester Const Boy II: The Localizing
2005-06-22 Steve Hay Silence yet more bcc32 compiler warnings
2005-06-13 Nicholas Clark Croak if an attempt is made to modify PL_strtab
2005-06-13 Nicholas Clark S_share_hek_flags can revert to returning a HEK
2005-06-12 Nicholas Clark hek_dup can now store the HEK rather than the HE, as...
2005-06-12 Nicholas Clark Compare HE *s in S_unshare_hek_or_pvn's tight hek loop...
2005-06-12 Nicholas Clark Shortcut chasing round strtab when we're not the last...
2005-06-12 Nicholas Clark In the shared string table, store the HE and HEK next...
2005-06-11 Nicholas Clark hash key code cleanup
2005-06-07 Andy Lester Random cleanups #47
2005-06-07 Nicholas Clark Lots of consting
2005-06-06 Nicholas Clark Abstract all access to the shared hash value through...
2005-06-03 Nicholas Clark s/newSVpv_hek/newSVhek/g; # Lousy choice of name
2005-06-03 Nicholas Clark Create newSVpv_hek to reduce code duplication where...
2005-06-03 Andy Lester Random consting
2005-06-02 Nicholas Clark Changes 24660 and 24665 both introduced errors into...
2005-06-01 Nicholas Clark As PERL_HV_ARRAY_ALLOC_BYTES is bytes, not items, the...
2005-06-01 Nicholas Clark Store the xhv_aux structure after the main array.
2005-05-31 Nicholas Clark Avoid updating a variable in a loop.
2005-05-31 Nicholas Clark Avoid updating a variable in the loop
2005-05-30 Nicholas Clark Change the logic to avoid needing to set a variable...
2005-05-30 Nicholas Clark Various HvPLACEHOLDERS() that should be HvPLACEHOLDERS_...
2005-05-30 Andy Lester Teeny optimization in S_hv_magic_check
2005-05-26 Nicholas Clark Store the package name as a shared HEK.
2005-05-25 Nicholas Clark Export Perl_hek_dup, which duplicates shared hash keys.
2005-05-25 Nicholas Clark Track the mapping between source shared hash keys and...
2005-05-24 Nicholas Clark Leaking is bad, m'kay.
2005-05-23 Rafael Garcia-Suarez Declaration nit spotted by Jarkko
2005-05-21 Nicholas Clark Move the xpv_pv/xrv_rv member into the SV head, in...
2005-05-21 Nicholas Clark Fool. That should be I32 everywhere.
2005-05-21 Nicholas Clark Move hv_name, hv_eiter and hv_riter into a new aux...
2005-05-21 Nicholas Clark Move placeholders into a new rhash magic type.
2005-05-20 Nicholas Clark Remove PMROOT and replace it with a small shell script...
2005-05-16 Andy Lester consting-eleventy.patch: More consts, plus actual bug fix
2005-05-13 Nicholas Clark Reorder the *more* arena allocation functions into...
2005-05-11 Rafael Garcia-Suarez Include vim/emacs modelines in generated files to open...
2005-05-10 Rafael Garcia-Suarez Add editor boilerplates to all C files
2005-05-09 Nicholas Clark Simplify S_hv_notallowed slightly by passing a prebuilt...
2005-05-06 Nicholas Clark Change types of PL_he_arenaroot and PL_pte_arenaroot...
2005-05-06 Nicholas Clark Make the arena size changeable at compile time, and...
2005-04-21 Jarkko Hietaniemi Symbian port of Perl
2005-03-29 Steve Hay Clean-up some warnings when compiling on Win32 with...
2005-03-24 Andy Lester Third consting batch
2005-03-14 Andy Lester Adding const qualifiers
2005-01-24 Rafael Garcia-Suarez Revert change 23843.
2005-01-22 Nicholas Clark Update copyright years and add editor blocks
2005-01-21 Rick Delaney Re: [perl #31924] %INC caching failure-case problem
2004-11-17 Rafael Garcia-Suarez Fix a couple of typos.
2004-07-31 Dave Mitchell Add comment to the top of most .c files explaining...
2004-07-07 Nicholas Clark hv_store was not passing hash onwards (spotted by Dave)
2004-07-06 Nicholas Clark Stop ENV_IS_CASELESS hv.c picking up the wrong hash...
2004-04-21 Stas Bekman [patch] log the interpreter id in warnings
2004-03-23 Nicholas Clark hv_delete_common was freeing the key, then passing...
2004-03-16 Rafael Garcia-Suarez Update copyright notices
2004-02-27 Nicholas Clark In hsplit, if a normal hash has placeholders then clear...
2004-02-27 Nicholas Clark My re-implementation of hv_clear_placeholders was buggy...
2004-02-07 Nicholas Clark Comment to record why we can't clear placeholders in...
2004-02-07 Nicholas Clark deleting keys in restricted hashes was leaking the...
2004-02-07 Nicholas Clark Now hv_delete is able to ingore placeholders.
2004-02-07 Nicholas Clark hv_clear_placeholders now manipulates the linked lists...
2004-01-17 Paul Green Refactor VOS patches for bleadperl and perl-5.8.x
next