This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
silence APItest deprecation warning
[perl5.git] / sv.c
2010-08-26 Zeframmake recursive part of peephole optimiser hookable
2010-08-23 Nicholas ClarkIn bodies_by_type in sv.c, no need to store for values...
2010-08-21 Ben MorrowRemove CALL_FPTR and CPERLscope.
2010-08-20 Nicholas ClarkIn sv.c, tidy up body allocation code.
2010-08-20 Nicholas ClarkInline S_get_arena() into Perl_more_bodies(), its only...
2010-08-20 Nicholas ClarkExpose more_bodies(), and use it to replace S_more_he().
2010-08-20 Nicholas ClarkIn sv.c, pass in values to S_more_bodies, instead of...
2010-08-20 Nicholas ClarkRefactor the loop of S_more_bodies() to be (hopefully...
2010-08-20 Nicholas ClarkCorrect the size calculations for FIT_ARENA for SVt_REGEXP.
2010-08-17 Nicholas ClarkFix building with PERL_GLOBAL_STRUCT defined.
2010-08-16 Nicholas ClarkRemove compile-time conditionals from PVIV and PVNV...
2010-08-15 Nicholas ClarkRemove the vestigial my_safe{calloc,malloc,free} macros...
2010-08-15 Nicholas ClarkRemove the unused new_X*V and del_X*V macros from sv.c
2010-08-14 Nicholas ClarkProperly reinstate space optimisations to SV body struc...
2010-08-14 Wolfram Humannmake string-append on win32 100 times faster
2010-08-01 David Mitchellclarify when HV backref is in magic
2010-08-01 David Mitchellstop after first del_backref
2010-08-01 David Mitchelloptimise single backreferences
2010-08-01 David Mitchellrefactor Perl_sv_add_backref
2010-08-01 David MitchellDEBUG_LEAKING_SCALARS: add sv_debug_parent
2010-07-29 David Mitchellexpand the xhv_backreferences code notes
2010-07-29 David Mitchellre-apply some xhv_backreferences notes and stuff
2010-07-29 David MitchellRevert "process xhv_backreferences early in S_hfreeentries"
2010-07-29 David MitchellRevert "make it an error to look for magic hv backref"
2010-07-26 Florian RagwitzCheck API compatibility when loading xs modules
2010-07-18 David Mitchelladd CvGV_set() macro and make CvGV() rvalue only
2010-07-18 David Mitchelladd CVf_CVGV_RC flag
2010-07-15 Josh ben Jore[perl #72729] Truncate sv_gets(sv) only when not append...
2010-07-14 David Mitchellprotect CvGV weakref with backref
2010-07-14 David Mitchellin CLONEf_JOIN_IN, cache found stashes
2010-07-14 David Mitchelladd all stash backrefs individually when joining
2010-07-14 David Mitchellmake it an error to look for magic hv backref
2010-07-14 David Mitchellprotect CvSTASH weakref with backrefs
2010-07-14 David Mitchellprocess xhv_backreferences early in S_hfreeentries
2010-07-13 Josh ben JoreReset variables being initialized by readline before...
2010-07-12 Nicholas ClarkCreate S_assert_uft8_cache_coherent() with one copy...
2010-07-12 Nicholas ClarkPerl_sv_len_utf8 can use the UTF-8 offset cache to...
2010-07-12 Nicholas ClarkPerl_sv_pos_b2u now calls utf8_mg_len_cache_update...
2010-07-12 Nicholas ClarkS_sv_pos_u2b_cached now updates the UTF-8 length cache...
2010-07-12 Nicholas ClarkBreak S_utf8_mg_len_cache_update() out from Perl_sv_len...
2010-07-12 Ben MorrowGeneric hooks into Perl_block_{start,end}.
2010-07-11 Nicholas ClarkAvoid UTF-8 cache panics with offsets beyond the string...
2010-07-11 Nicholas ClarkIn Perl_sv_pos_u2b_flags and S_sv_pos_u2b_cached, retur...
2010-07-11 Nicholas ClarkIn S_sv_pos_u2b_midway, inline the call to S_sv_pos_u2b...
2010-07-03 David Mitchellfix tainting and overload
2010-06-30 Nicholas ClarkStore xio_ifp in sv_u in the SV head, reducing XPVIO...
2010-06-30 Nicholas ClarkOnly allow SvPVX() on SVt_PVIO when IOf_FAKE_DIRP is...
2010-06-28 Nicholas ClarkRefactor loops in S_hsplit(), Perl_hv_ksplit() and...
2010-06-27 Nicholas ClarkAdd Perl_croak_no_modify() to implement Perl_croak...
2010-06-04 David Mitchelladd PL_signalhook to hook into signal dispatch
2010-05-25 Nicholas ClarkFix CLONE/weakref bug revealed by adf8f095c5881bce.
2010-05-24 Nicholas ClarkConvert PAD_DUP to a function Perl_padlist_dup().
2010-05-24 Nicholas ClarkWhen deleting CLONE_PARAMS, push any unreferenced SVs...
2010-05-24 Nicholas ClarkBetter ithreads cloning - add all SVs with a 0 refcnt...
2010-05-24 Nicholas ClarkCleaner implementations for Perl_clone_params_{new...
2010-05-24 Nicholas ClarkAbstract *correct* initialisation of CLONE_PARAMS into...
2010-05-24 Nicholas ClarkConvert Perl_sv_dup_inc() from a macro to a real function.
2010-05-24 Nicholas ClarkIn perl_clone_using(), turn off AvREAL() on param-...
2010-05-23 Nicholas ClarkChange the API documentation from sv_2nv to sv_2nv_flags.
2010-05-21 Nicholas ClarkEliminate xhv_fill from struct xpvhv.
2010-05-21 Nicholas ClarkMake HvFILL() count the allocated buckets, instead...
2010-05-21 David Mitchellmake overload respect get magic
2010-05-21 Nicholas ClarkRemove union _xivu from struct xpvhv - replace it with...
2010-05-21 Nicholas ClarkRemove union _xivu from struct xpvav - replace it with...
2010-05-21 Nicholas ClarkReinstate space optimisations to SV body structures.
2010-05-21 Nicholas ClarkIn the SV body, exchange the positions of the NV and...
2010-05-21 Nicholas ClarkRemove all space optimisations from SV body structures.
2010-05-20 Nicholas ClarkIn sv.c, _all_ {new,del}_X* macros can be *_body_allocated.
2010-05-13 Nicholas ClarkReturn 0 (with a warning) for sprintf("%.0g") and sprin...
2010-05-08 David Mitchelladd SV_SKIP_OVERLOAD flag to sv_2*v_flags fns
2010-05-08 David Mitchelladd flags arg to sv_2nv (as sv_2nv_flags)
2010-05-06 Vincent PitStop returning 0 for sprintf("%.0g")
2010-05-06 Vincent PitMake sv_vcatpvfn() complain when special formats "...
2010-05-05 Nicholas ClarkWhen saving ints, if the value is small enough save...
2010-05-05 Nicholas ClarkWhen saving I32s, if the value is small enough save...
2010-05-04 Nicholas ClarkFor SAVEt_I16, save the value with the type.
2010-05-04 Nicholas ClarkFor SAVEt_I8, save the value with the type.
2010-05-03 Nicholas ClarkFor SAVEt_BOOL, save the value with the type.
2010-05-03 Nicholas ClarkFor SAVEt_ALLOC, store the number of save stack entries...
2010-05-02 Nicholas ClarkFor SAVEt_REGCONTEXT, store the number of save stack...
2010-05-02 Nicholas ClarkBetter fix for RT #2140 (list assignment with duplicate...
2010-05-02 Nicholas ClarkFor SVt_CLEAR, store the pad offset with the type.
2010-05-01 Nicholas ClarkOn the save stack, store the save type as the bottom...
2010-04-29 Nicholas ClarkDeprecate Perl_ptr_table_clear(). Nothing outside sv...
2010-04-26 Vincent PitFix possible undefined behaviour introduced by b9e00b79...
2010-04-26 Lubomir Rintel ... Globs that are in symbol table can be un-globbed
2010-04-25 Zeframunwinding target nominated by separate global
2010-04-25 Nicholas ClarkDon't allocate pointer table entries from arenas.
2010-04-22 Rafael Garcia-SuarezConsistently use OP_DESC instead of OP_NAME in error...
2010-04-15 David Mitchelluse cBOOL for bool casts
2010-03-21 David Mitchell[perl #45167] Taint removal by sprintf
2010-02-28 Karl WilliamsonClarify sv.c API wording.
2010-02-28 David Mitchellfix for [perl #72604] @DB::args and win32 fork
2010-02-18 Tony Cookrt #72866 - add magic to arrayrefs assigned to *Foo...
2010-02-18 Nicholas ClarkAvoid a panic from the UTF-8 length cache if the length...
2010-02-16 H.Merijn BrandRemove unused variable
2010-02-14 Nicholas ClarkConvert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_fla...
2010-02-14 Eric BrineRemoves 32-bit limit on substr arguments. The full...
2010-02-09 Nicholas ClarkFix for non-regexps being upgraded to SVt_REGEXP
2010-02-07 Nicholas ClarkImprovements to 31c9a3 - CPAN code did depend on the...
next