Const Boy II: The Localizing
[p5sagit/p5-mst-13.2.git] / sv.c
2005-06-23 Andy Lester Const Boy II: The Localizing
2005-06-22 Dave Mitchell remove taint hack now that local $tainted no longer...
2005-06-21 Nicholas Clark Avoid having NULL entries in the weakref backreference...
2005-06-21 Nicholas Clark As there will be no old body to dispose of, we can...
2005-06-21 Tsutomu IKEGAMI Re: [perl #36310] sv_vcatpvfn() fails on some (very...
2005-06-20 Nicholas Clark Replace the non-const initialiser block + loop with...
2005-06-20 Andy Lester The continuing adventures of Constman and Localize Boy
2005-06-20 Rafael Garcia-Suarez Remove the deprecated $# variable
2005-06-20 Nicholas Clark S_del_body is sufficiently small that inlining it is...
2005-06-19 Nicholas Clark If NV_ZERO_IS_ALLBITS_ZERO there's no need to explicitl...
2005-06-19 Nicholas Clark Move the offset calculations outside of new_body/del_body.
2005-06-18 Nicholas Clark Refactor sv_dup to memcpy from source to destination...
2005-06-18 Nicholas Clark Squeeze a little more savings by moving pte and he...
2005-06-18 Jim Cromie squeeze repetition out of Perl_sv_free_arenas
2005-06-18 Nicholas Clark update AVs and HVs using the old_body, and remove all...
2005-06-18 Nicholas Clark sv_upgrade by memcpy
2005-06-17 Nicholas Clark Fix compiling with -DPURIFY
2005-06-17 Nicholas Clark Change 24886 was buggy - should be taking (and passing...
2005-06-17 Nicholas Clark Collect a little more information about the body we...
2005-06-17 Rafael Garcia-Suarez Missing aTHX_ (noticed by Jim Cromie)
2005-06-17 Nicholas Clark Move freeing the old body after the creating of the...
2005-06-17 Nicholas Clark The only way is up!
2005-06-17 Nicholas Clark new_pte/del_pte can use new_body/del_body too
2005-06-16 Nicholas Clark Replace all the new/del static functions with calls...
2005-06-16 Nicholas Clark Making more_* return a pointer, and swapping to a terna...
2005-06-16 Nicholas Clark Replace all the S_more_* functions with a single function.
2005-06-16 Jim Cromie Re: [perl #36048] Refactor S_more_*v into one function
2005-06-16 Andy Lester Removing /*SUPPRESS xxx*/
2005-06-15 H.Merijn Brand Protect Perl_sv_2pvbyte () to NULL length pointers
2005-06-15 Rafael Garcia-Suarez Fix warning nits, by Jarkko
2005-06-13 Nicholas Clark Pay attention to the comments that Dave writes.
2005-06-13 Rafael Garcia-Suarez Make SvUPGRADE always have the value '1'
2005-06-13 Nicholas Clark We no longer need PL_shared_hek_table
2005-06-12 Nicholas Clark Clone all shared string PVs as shared string PVs (now...
2005-06-12 Nicholas Clark duping shared hask key scalars can use hek_dup
2005-06-12 Nicholas Clark Provide share_hek_hek, and use it for fast copying...
2005-06-11 Nicholas Clark Shrink shared hash scalars from PVIV to PV
2005-06-11 Nicholas Clark Propagate const/mutable/not into the SvPV call for...
2005-06-10 Nicholas Clark Move SvPV consting, remove an n_a, and correct one...
2005-06-10 Nicholas Clark Add SvGROW_mutable
2005-06-10 Nicholas Clark Change 24531 broke DEBUG_LEAKING_SCALARS.
2005-06-09 Andy Lester regcomp.c and more
2005-06-09 Jarkko Hietaniemi instead of unions use double cast for data pointer...
2005-06-08 Nicholas Clark The old COW code needs to use SvPVX_mutable when doing...
2005-06-08 Nicholas Clark sv_setsv is allowed to swipe buffers from read only...
2005-06-08 Nicholas Clark Allow a null length pointer to sv_pvn_force_flags.
2005-06-08 Nicholas Clark s/PERL_COPY_ON_WRITE/PERL_OLD_COPY_ON_WRITE/g
2005-06-08 Nicholas Clark Better sv_2pv_flags implementation (avoid writing to...
2005-06-07 Nicholas Clark More SvPV consting
2005-06-07 Nicholas Clark More SvPV consting
2005-06-07 Nicholas Clark More consting of SvPV
2005-06-07 Nicholas Clark More SvPV consting.
2005-06-07 Andy Lester Random cleanups #47
2005-06-07 Nicholas Clark Simplify the implementation of SvPV*nolen functions
2005-06-07 Nicholas Clark Ensure string table counts are balanced. (Was not true...
2005-06-07 Rafael Garcia-Suarez Fix apidoc for newSVhek
2005-06-07 Nicholas Clark Make a start at consting calls to SvPV. SV conversion...
2005-06-07 Andy Lester Unvoid SvUPGRADE
2005-06-06 Nicholas Clark Abstract all access to the shared hash value through...
2005-06-06 Nicholas Clark Shared hash key scalars can be safely copied as shared...
2005-06-06 Steve Hay We still need an "i" in the PERL_IMPLICIT_SYS case
2005-06-04 Rafael Garcia-Suarez Silence a const warning
2005-06-03 Nicholas Clark Use newSVhek in the cloning code.
2005-06-03 Nicholas Clark Use newSVhek where we're generating SVs from package...
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-03 Steve Peters SvPVX_const() - patch #4
2005-06-02 Nicholas Clark Changes 24660 and 24665 both introduced errors into...
2005-06-02 Andy Lester use lengths in sv_setpv() calls
2005-06-01 Nicholas Clark Round up all string length requests to malloc()/realloc...
2005-06-01 Nicholas Clark Zero-ing the new HV array is pointless, as we write...
2005-06-01 Nicholas Clark Store the xhv_aux structure after the main array.
2005-05-30 Jarkko Hietaniemi Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64...
2005-05-30 Andy Lester [PATCH] More embed.fnc strictures, plus consting and...
2005-05-29 Nicholas Clark Goodbye xav_arylen. You won't be missed that much.
2005-05-29 Nicholas Clark Change the IV to a union.
2005-05-26 Nicholas Clark Rename the members of the SV head union to avoid pre...
2005-05-26 Nicholas Clark Store the package name as a shared HEK.
2005-05-26 Nicholas Clark We know how big the global string table will be, so...
2005-05-26 Nicholas Clark It helps to set the total keys correctly when duplicati...
2005-05-25 Nicholas Clark Track the mapping between source shared hash keys and...
2005-05-24 Nicholas Clark Initialising the hash seed needs to be early in case...
2005-05-24 Nicholas Clark Leaking is bad, m'kay.
2005-05-24 Andy Lester embed.fnc cleanup + SvPVX_const usage
2005-05-23 Nicholas Clark PL_regex_padav elements hold either more AVs, or IVs...
2005-05-23 Nicholas Clark Oops. What is looking at an array's SvIVX()?
2005-05-23 Nicholas Clark We don't need IV and RV arena variables anymore. We...
2005-05-23 Nicholas Clark create an "allocated" structure for PVs, PVAVs and...
2005-05-21 Nicholas Clark Move the xpv_pv/xrv_rv member into the SV head, in...
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-20 Nicholas Clark Goodbye AvFLAGS
2005-05-20 Andy Lester Attribute configuration
2005-05-17 Nicholas Clark One last 1008 to replace with PERL_ARENA_SIZE
2005-05-16 Andy Lester consting-eleventy.patch: More consts, plus actual bug fix
2005-05-16 Nicholas Clark Assuming that everything with 0x40000000 is SVpad_TYPED...
2005-05-15 Dave Mitchell avoid leaked scalar in BEGIN { threads->new(...) }
2005-05-14 Dave Mitchell initialize the PL_xpvgv_[arena]root vars during clone
next