This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 85b7d9b
[perl5.git] / hv.c
2013-08-11 Father ChrysostomosDon’t treat COWs specially in locked hashes
2013-07-23 Father Chrysostomos[perl #72766] Allow huge pos() settings
2013-06-07 Father Chrysostomoshv.c: Clarify uvar comment
2013-05-29 Nicholas ClarkCache HvFILL() for larger hashes, and update on inserti...
2013-05-27 Nicholas ClarkPerl_hv_fill() can return early if the hash only has...
2013-05-09 David Mitchellsilence warnings under NO_TAINT_SUPPORT
2013-05-07 Yves OrtonMake it possible to disable and control hash key traver...
2013-03-27 Yves Ortoneliminate the only internal uses of HvFILL
2013-03-24 Yves OrtonAdd a commented out warning and a way for diag.t to...
2013-03-24 Yves Ortonimprove iterator randomization
2013-03-18 Yves Ortondetect each() after insert and produce warnings when...
2013-03-18 Yves Ortonensure that inserting into a hash causes its hash itera...
2013-03-18 Yves Ortonperturb insertion order and update xhv_rand during...
2013-03-18 Yves OrtonHarden hashes against hash seed discovery by randomizin...
2013-02-26 Nicholas ClarkIn Perl_hv_common(), call S_clear_placeholders() directly.
2013-02-26 Nicholas ClarkClarify why hv_common() tries to clear placeholders...
2013-02-26 Nicholas ClarkIn S_hsplit(), replace a for with a do/while, as the...
2013-02-26 Nicholas ClarkReplace the bulk of Perl_hv_ksplit() with a call to...
2013-02-26 Nicholas ClarkTweak S_hsplit() to return early if there are no keys...
2013-02-26 Nicholas ClarkPass the current and desired hash sizes to S_hsplit().
2013-02-26 Nicholas ClarkMove the code handling allocating a new buffer earlier...
2013-02-26 Nicholas ClarkRefactor the loop logic in S_hsplit() and Perl_hv_kspli...
2013-02-26 Nicholas ClarkMove the call to hv_clear_placeholders() from hsplit...
2013-02-22 Nicholas ClarkAbolish STRANGE_MALLOC. Now all malloc()s are considere...
2013-01-29 bulk88 (via RT)hv.c: add some NULL check removal
2012-12-15 Father ChrysostomosUse SvREFCNT_dec_NN in one place in hv.h
2012-12-10 Father Chrysostomoshv.c: hv_undef: Don’t set mro fields to null before...
2012-11-25 Karl WilliamsonRemove "register" declarations
2012-11-24 Yves Ortonprevent memory exhaustion from hash attacks
2012-11-18 Tony Cookfix -DPERL_GLOBAL_STRUCT builds broken with the hash...
2012-11-17 Yves OrtonHash Function Change - Murmur hash and true per process...
2012-11-05 Steffen MuellerAdd C define to remove taint support from perl origin/smueller/no_taint3
2012-10-08 Ruslan Zakirovuse HVhek_KEYCANONICAL in hv_delete
2012-10-08 Ruslan Zakirovthere is no obvious reason not to set flags
2012-10-08 Ruslan Zakirovuse && rather than &
2012-09-26 Nicholas Clark-Do now also reports updates and use of PL_stashcache.
2012-09-24 Father Chrysostomos[perl #107000] Don’t leak if hh copying dies
2012-09-23 Father ChrysostomosFree iterator when freeing tied hash
2012-09-22 Father Chrysostomoshv.c: comment typo
2012-09-17 Father Chrysostomos[perl #114924] Make method calls work with ::SUPER...
2012-08-18 Karl WilliamsonOmnibus removal of register declarations
2012-07-19 Karl Williamsonperlapi: Clarify hv_fetch() docs
2012-05-30 Ricardo Signesupdate the editor hints for spaces, not tabs
2012-05-22 Father ChrysostomosCheck HvNAME in Gv_AMG
2012-05-22 Father Chrysostomos[perl #112708] Update overloadedness with ‘use overload’
2012-03-06 David Mitchellfix slowdown in nested hash freeing
2012-01-17 Nicholas ClarkIn Perl_refcounted_he_fetch_pvn(), eliminate nested...
2012-01-10 Father ChrysostomosFix crash in hv_undef
2012-01-10 Father ChrysostomosDocument that [ah]v_undef/clear may free the [ah]v
2012-01-10 Father ChrysostomosBetter fix for perl #107440
2012-01-04 Karl Williamsonhv.c pod: 'Perl_sv_placeholder' should be 'PL_sv_placeh...
2012-01-01 Father Chrysostomoshv.c: Consistent spaces after dots in apidocs
2012-01-01 Father ChrysostomosRemove method cache reset from hv.c:hv_free_ent
2012-01-01 Father Chrysostomossquash some code in hv.c:S_hv_delete_common
2012-01-01 Father Chrysostomos[perl #100340] Free hash entries before values on delete
2012-01-01 Father ChrysostomosUpdate method caches for non-void stash elem deletions
2011-12-25 Father Chrysostomoshv.c: Make newHVhv work on tied hashes
2011-12-22 Father Chrysostomosspeed up feature-checking slightly
2011-12-21 Father ChrysostomosCopy hints from tied hh to inner compile scopes
2011-12-21 Father ChrysostomosFixing crash in hint.t
2011-12-20 Father Chrysostomos[perl #106282] Don’t crash cloning tied %^H
2011-12-01 Father ChrysostomosUse SvOOK_on
2011-11-30 Father ChrysostomosCorrect comment in hv.c:S_share_hek_flags
2011-11-23 Father ChrysostomosCorrect spelling of double free warning
2011-11-06 Father Chrysostomoseach() should not leave RITER set on empty hash
2011-11-06 Father Chrysostomoshv.c: comment typo
2011-10-07 Tony Cookdocument the behaviour of negative klen for hv_fetch...
2011-10-07 Brian FraserCast to signed before negating, to avoid compiler warnings
2011-10-06 Father ChrysostomosFix thinko in hek_eq_pvn_flags
2011-10-06 Brian Fraserhv.c: Stash-related UTF-8 cleanup.
2011-09-21 Father Chrysostomos[perl #99660] Remove elems from hashes before freeing...
2011-08-23 Chip SalzenbergSVTYPEMASK must be cast to (svtype) when comparing...
2011-08-02 Vincent PitSvREFCNT_dec already checks if the SV is non-NULL
2011-07-17 Father ChrysostomosRename store/fetch_cop_label as cop_*
2011-07-17 Reini UrbanExport store_cop_label for the perl compiler
2011-06-24 Father Chrysostomos[perl #93454] Free deleted iterator when freeing hash
2011-06-12 Father ChrysostomosCompletely free hashes containing nulls
2011-06-04 Father ChrysostomosAllow restricted hashes containing COWs to be cleared
2011-06-04 Father ChrysostomosAllow COW values to be deleted from restricted hashes
2011-05-22 Nicholas ClarkPerl_refcounted_he_inc() needs a dVAR to compile with...
2011-05-20 Ton Hospel[perl #85026] Deleting the current iterator in void...
2011-05-20 Ton Hospel[perl #85026] deleting elements in a HASH iterator
2011-05-19 David Mitchellimprove api entries for hv_clear() and hv_undef()
2011-05-19 David Mitchellensure hash iterator gets deleted
2011-05-19 David Mitchellmake hv freeing iterative rather than recursive
2011-05-19 David Mitchelladd hfree_next_entry(), hv_free_ent_ret()
2011-05-19 David Mitchellremove 'hfreeentries failed to free hash' panic
2011-05-19 David Mitchellhv_free_ent: free SV as last action
2011-05-19 David MitchellS_hfreeentries: collapse two loops
2011-05-19 David Mitchellhfreeentries zeros HvARRAY now, so skip manual
2011-05-19 David Mitchellmake hash emptying non-atomic
2011-05-19 David Mitchellunify PERL_HASH and PERL_HASH_INTERNAL
2011-05-19 David Mitchellsimplify hv_clear
2011-05-18 Michael WittenClean: Actually use HvUSEDKEYS() instead of HvKEYS()
2011-05-18 Nicholas ClarkEliminate C variables unused since 4d0fbddde6c5dcb9...
2011-04-16 Father ChrysostomosFollowup to 088225f/[perl #88132]: packages ending...
2011-03-20 Michael WittenClean: Move old comment to proper location
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2010-12-01 Jerry D. HeddenFix compiler warning in hv.c on MSWin32
2010-12-01 Father ChrysostomosFix memory leak in hfreeentries
next