Better sv_2pv_flags implementation (avoid writing to n_a)
[p5sagit/p5-mst-13.2.git] / sv.c
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
2005-05-13 Nicholas Clark Reorder the *more* arena allocation functions into...
2005-05-13 Nicholas Clark Allocate GV bodies from arenas
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 Andy Lester attributes-two.patch, the next batch
2005-05-09 Nicholas Clark Update the comment describing arenas.
2005-05-08 Nicholas Clark There's no need to set a reference count for the new...
2005-05-08 Nicholas Clark The idea is that when you find something, you stop...
2005-05-07 Andy Lester GCC attributes!
2005-05-07 Nicholas Clark The ptr_table arena variables and code is only needed...
2005-05-06 Nicholas Clark Ooops. Wise man tests with ithreads before commiting...
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-05-06 Nicholas Clark Allocate pointer table entries (for ithread cloning...
2005-05-01 Nicholas Clark Explode if anyone attempts to sv_upgrade PL_mess_sv.
2005-04-28 Nicholas Clark Refactor Perl_sv_utf8_upgrade_flags to use SvPV_free
2005-04-28 Nicholas Clark Add a new macro SvPV_free() which undoes OOK and free...
2005-04-28 Nicholas Clark Calling sv_backoff() on something that's about to be...
2005-04-28 Nicholas Clark The if() clause is the wrong way round, so OOK can...
2005-04-21 Jarkko Hietaniemi Symbian port of Perl
2005-04-21 Dave Mitchell [perl #34976] substr uses utf8 length cache incorrectly
2005-04-20 Steve Peters Refactoring to Sv*_set() macros - patch #6
2005-04-20 Nicholas Clark Merge common code. Reduces object size by 1K on x86...
2005-04-19 Nicholas Clark Don't set things to zero twice. Once is enough. (see...
2005-04-19 Steve Peters Refactoring to Sv*_set() macros - patch #5
2005-04-19 Dave Mitchell Add CLONE_SKIP() class method to allow individual class...
2005-04-18 Steve Peters Refactoring to Sv*_set() macros - patch #4
2005-04-12 Steve Peters Refactoring to Sv*_set() macros - patch #3
2005-04-08 Andy Lester Removing Y2K warnings
2005-04-08 Steve Peters Refactoring to Sv*_set() macros - patch #2
2005-04-08 Nicholas Clark Add a macro PERL_DEBUG_COW, for aggressive compile...
2005-04-08 Steve Peters Refactoring to Sv*_set() macros - patch #1
2005-04-06 Nicholas Clark Casting to/from (void *) sufficient to make a C++ compi...
2005-04-05 Nicholas Clark Add casting to allow g++ (3.3.5) to compile the core...
2005-04-04 Andy Lester const-eight.diff
2005-03-31 Steve Hay One more Win32 compilation clean-up (for when using...
2005-03-29 Rafael Garcia-Suarez Downconst external APIs
2005-03-28 Dave Mitchell expand -DDEBUG_LEAKING_SCALARS to instrument the creati...
2005-03-26 Rafael Garcia-Suarez Remove an XXX note from the public doc.
2005-03-25 Andy Lester Consting part 4
2005-03-24 Andy Lester Third consting batch
2005-03-21 Andy Lester More consting goodness
2005-03-18 Yves Orton Re: Reworked Trie Patch
2005-03-18 Andy Lester More const parms
2005-01-22 Jarkko Hietaniemi Re: uc($long_utf8_string) exhausts memory
2005-01-19 Robin Barker Further follow-up to 23767
2005-01-14 Nicholas Clark Correct the editor block to match the perl 5 policy...
next