This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
tweak POPLOOP and CXt_LOOP_* order
[perl5.git] / hv.c
2016-01-11 Tony Cook[perl #123788] update isa magic stash records when...
2015-10-20 David MitchellImprove pod for [ah]v_(clear|undef)
2015-09-04 Karl WilliamsonAdd macro for converting Latin1 to UTF-8, and use it
2015-09-04 Karl Williamsonperlapi use 'UTF-8' instead of variants of that
2015-09-04 Karl WilliamsonVarious pods: Add C<> around many typed-as-is things
2015-09-04 Karl Williamsonperlapi, perlintern: Add L<> links to pod
2015-08-01 Karl Williamsonperlapi: Use C<> instead of I<> for parameter names...
2015-06-27 Jarkko HietaniemiImpossible for entry to be NULL at this point.
2015-06-27 Jarkko Hietaniemimg_find can return NULL.
2015-03-27 Father ChrysostomosStop $^H |= 0x1c020000 from enabling all features
2015-03-23 Dagfinn Ilmari Man... Replace common Emacs file-local variables with dir...
2015-03-12 Father Chrysostomos[perl #123847] crash with *foo::=*bar::=*with_hash
2015-03-11 David Mitchelldon't test non-null args
2015-03-04 Jarkko HietaniemiConsistently use NOT_REACHED; /* NOTREACHED */
2015-01-29 Lajos VeresCorrections to spelling and grammatical errors.
2014-12-25 Yves OrtonRework sv_get_backrefs() so it is simpler, and C++...
2014-12-25 Yves OrtonRestructure hv_backreferences_p() so assert makes sense
2014-07-08 David Mitchellfaster constant hash key lookups ($hash{const})
2014-06-25 Jarkko HietaniemiRemove or downgrade unnecessary dVAR.
2014-06-24 Jarkko HietaniemiUnused contexts found under PERL_GLOBAL_STRUCT.
2014-06-24 Daniel DraganPERL_UNUSED_CONTEXT -> remove interp context where...
2014-06-12 Brian FraserSilence several -Wunused-parameter warnings about my_perl
2014-06-12 Brian FraserAdding missing HEKfARG() invocations
2014-06-05 Karl Williamsonperlapi: Include general information
2014-05-28 Jarkko HietaniemiCannot rotl u32 (hek_hash) by 64 bits.
2014-03-18 Yves OrtonPreallocate HvAUX() structures for large bucket arrays
2014-03-18 Yves OrtonSplit out part of hv_auxinit() so it can be reused
2014-03-10 Daniel Dragandon't repeatedly call HvUSEDKEYS
2014-03-07 David Mitchellmake core safe against HvAUX() realloc
2014-02-28 David Mitchelladd aux_flags field to HVs with aux struct
2014-02-19 Rafael Garcia-SuarezDo not dereference hv before ensuring it's not NULL
2014-01-14 Father ChrysostomosUse NOT_REACHED in one spot in hv.c
2013-12-29 Father Chrysostomosperlapi: Consistent spaces after dots
2013-10-28 Father ChrysostomosWhen deleting via hek, pass the computed hash value
2013-08-29 Karl Williamsonhv.c: Stop being ASCII-centric
2013-08-21 Father ChrysostomosMove super cache into mro meta
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
next