Also get copy on write working with ithreads. It hadn't been working
[p5sagit/p5-mst-13.2.git] / sv.c
2007-06-24 Nicholas Clark Also get copy on write working with ithreads. It hadn...
2007-06-17 Rafael Garcia-Suarez Patches to compile perl on Cray XT4 Catamount/Qk, by...
2007-06-15 Jarkko Hietaniemi miscellanea
2007-06-13 Dave Mitchell change #31134 broke DEBUG_LEAKING_SCALARS builds
2007-06-07 Jim Cromie [patch] fix small errors in sv.c commentary
2007-06-05 Rafael Garcia-Suarez Remove support for assertions and -A
2007-05-28 Nicholas Clark Avoid calling SvEND() when SvPOKp() is not true.
2007-05-25 Dave Mitchell delete PL_hash_seed_set, PL_lineary; move PL_runops_std/dbg
2007-05-25 Dave Mitchell fix coredump in S_varname (tickled by Devel::Profile)
2007-05-21 Dave Mitchell move PL_error_count into the PL_parser struct
2007-05-21 Dave Mitchell move PL_multi_end into the PL_parser struct
2007-05-21 Dave Mitchell move PL_tokenbuf into the PL_parser struct
2007-05-20 Dave Mitchell delete thrdvar.h and move its contents to intrpvar.h
2007-05-19 Craig A. Berry Various mro updates from Brandon Black. References:
2007-05-12 Dave Mitchell move PL_in_my and PL_in_my_stash into the PL_parser...
2007-05-12 Dave Mitchell move PL_rsfp_filters into the parser struct
2007-05-11 Dave Mitchell move PL_rsfp into the PL_parser struct
2007-05-08 Andy Lester more consting
2007-05-05 Dave Mitchell move PL_lex_state into the PL_parser struct
2007-05-05 Dave Mitchell migrate more variables to PL_parser struct:
2007-05-04 Dave Mitchell move some more variables into the PL_parser struct:
2007-05-04 Dave Mitchell move PL_expect and PL_copline into the PL_parser structure
2007-05-03 Nicholas Clark Initialise PL_delayedisa on thread clone.
2007-04-30 Brandon Black Re: mro status, etc
2007-04-26 Brandon Black Fix a bug in method caching. Better version (broader...
2007-04-24 Nicholas Clark Make PL_uudmap a constant global. Remove the run time...
2007-04-24 Dave Mitchell move PL_linestr from the interpreter struct to the...
2007-04-21 Nicholas Clark Where possible, use SvIV instead of SvIVX, SvNV instead...
2007-04-19 Brandon Black Re: new C3 MRO patch
2007-04-16 Jarkko Hietaniemi sv.c: %d ne size_t
2007-04-15 Dave Mitchell follow PL_watchaddr when cloning a thread
2007-04-15 Dave Mitchell with DEBUG_LEAKING_SCALARS, dump multiply-freed scalars
2007-04-14 Dave Mitchell Move PL_comppad nulling from do_clean_all to sv_clear
2007-04-12 Nicholas Clark Fix two errors in the OP debugging code. Now all test...
2007-04-07 Nicholas Clark Ensure PL_last_in_gv doesn't end up pointing to garbage...
2007-04-06 Nicholas Clark Remove op_pmnext from PMOPs, and instead store the...
2007-04-04 Yves Orton Re: pmdynflags and thread safety
2007-04-01 Dave Mitchell Eliminate the use of PL_bufend outside of toke.c:
2007-03-26 Nicholas Clark In struct regexp replace the two arrays of I32s accesse...
2007-03-26 Rafael Garcia-Suarez say() should parse exactly like print()
2007-03-21 Nicholas Clark Don't try to set the NV on a typeglob-in-action. Should...
2007-03-21 Nicholas Clark AVs and HVs never had the NV slot. (Not that this error...
2007-03-07 Juerd Waalboer Re: [PATCH] (Re: [PATCH] unicode/utf8 pod)
2007-03-05 Nicholas Clark As SvUPGRADE() is a macro wrapping a call to sv_upgrade...
2007-02-19 Nicholas Clark Avoid *some* g++ errors. (But not all yet)
2007-02-19 Jarkko Hietaniemi blead (honestly :-) g++ with -DPERL_GLOBAL_STRUCT_PRIVA...
2007-02-18 Nicholas Clark Add a new API function newSV_type, to replace the idiom:
2007-02-15 Jerry D. Hedden Use newer 'threads' constructs
2007-02-03 Nicholas Clark Purge all references to 5005 threads variables in the...
2007-01-28 Jarkko Hietaniemi g++ wants cast
2007-01-26 Rafael Garcia-Suarez Silence a few pedantic warnings
2007-01-25 Nicholas Clark The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv...
2007-01-19 Nicholas Clark Fix breakage for -DDEBUGGING accidentally introduced...
2007-01-19 Nicholas Clark Add a parameter to Perl_get_arena() to pass in the...
2007-01-19 Nicholas Clark I think that it's clearer if aroot is only struct arena...
2007-01-19 Nicholas Clark As Perl_get_arena() is dealing with sizes, use size_t...
2007-01-18 Nicholas Clark Move C<static bool done_sanity_check;> inside the only...
2007-01-18 Nicholas Clark Move the flag checking for isGV_with_GP() into the...
2007-01-18 Nicholas Clark Given that we now do the tests in S_visit() to avoid...
2007-01-18 Nicholas Clark As PVLVs can hold globs in some cases, I think that...
2007-01-17 Nicholas Clark Replace SvRELEASE_IVX(dstr) with SvOOK_off(dstr) in...
2007-01-17 Nicholas Clark Make PERL_OLD_COPY_ON_WRITE build again. Inline Perl_sv...
2007-01-17 Nicholas Clark If we use SvUPGRADE() rather than sv_upgrade() then...
2007-01-15 Dave Mitchell when cloning PL_regex_pad, copy SVf_BREAK flag too
2007-01-04 Marcus Holland-Moritz 4th patch from:
2007-01-04 Marcus Holland-Moritz The first three patches from:
2007-01-04 Yves Orton Re: [PATCH] Change implementation of %+ to use a proper...
2007-01-03 Nicholas Clark Rename OURSTASH to SvOURSTASH and OURSTASH_set to SvOUR...
2007-01-03 Dave Mitchell handle cloning of parsers on the save stack
2007-01-03 Nicholas Clark Make the ptr_table functions available in an unthreaded...
2007-01-02 Nicholas Clark Copying to FORMATs should work (and not fail assertions...
2007-01-02 Nicholas Clark Note that the examples for the structure copying bug...
2007-01-02 Dave Mitchell move easy lexer state variables into PL_parser
2007-01-01 Steve Peters Welcome to 2007! Time to update copyrights from change...
2007-01-01 Jarkko Hietaniemi Symbian port: add Series 90 support
2006-12-31 Nicholas Clark PL_linestr needs to survive until the end of scope...
2006-12-31 Nicholas Clark Move SVt_BIND to be the lowest type after SVt_NULL...
2006-12-28 Nicholas Clark With PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy...
2006-12-16 Nicholas Clark Split out the use of SVp_SCREAM for GVs with GPs into...
2006-12-13 Nicholas Clark Eliminate PVBM. Store fast Boyer-Moore tables in PVGV.
2006-12-12 Nicholas Clark Oops. As of some point one stopped being able to assign...
2006-12-12 Nicholas Clark pads haven't actually contained any PVGVs since change...
2006-12-09 Nicholas Clark PVBMs mustn't enter anything that turns SVIVisUV_on().
2006-12-09 Nicholas Clark Exterminate! 2 pieces of superfluous code related to...
2006-12-08 Dave Mitchell add missing OP_REFCNT_LOCK/UNLOCKs and document it
2006-12-01 Yves Orton Continue split of perl internal regexp structures from...
2006-11-23 Nicholas Clark Change 29364 forgot to turn the POK flag on.
2006-11-23 Nicholas Clark Assigning to a PVCV effectively just sets the prototype...
2006-11-23 Nicholas Clark Remove superfluous SvROK()
2006-11-15 Rafael Garcia-Suarez Fix a signedness cast warning
2006-11-13 Yves Orton Regex Utility Functions and Substituion Fix (XML::Twig...
2006-11-12 Nicholas Clark Change 24714 was arguably over-ambitious, in that non...
2006-11-06 Nicholas Clark assert() that SvPV_set() isn't used on arrays.
2006-11-06 Nicholas Clark assert() that SvPV_set() isn't used on hashes.
2006-11-04 Nicholas Clark Change 27506 wasn't quite correct - the copy of the...
2006-11-03 SADAHIRO Tomoyuki replace S_sv_pos_b2u_forwards with utf8_length (was...
2006-10-30 Steve Peters Changes to get perl to compile with g++ on Cygwin....
2006-10-26 SADAHIRO Tomoyuki Re: [perl #40583] sprintf "%#04X" also uppercases the...
2006-10-25 Nicholas Clark Add a %B sprintf format
2006-10-22 Nicholas Clark Fix the other bug introduced by change 29079
next