This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
RE: [PATCH] compress 2.018
[perl5.git] / sv.c
2009-04-27 Nicholas ClarkRemove all #ifdef MACOS_TRADITIONAL code in core and...
2009-04-19 Nicholas ClarkIn the context of PERL_OLD_COPY_ON_WRITE, remove commen...
2009-04-13 Nicholas ClarkGvUNIQUE* have been defined as 0 since 2005/06/30 ...
2009-03-29 Nicholas ClarkChange Perl_newCONSTSUB() so that a NULL sv generates...
2009-03-28 Nicholas ClarkDon't COW PVFMs, as the IVX is now used for FmLINES...
2009-03-06 David Mitchellfix a couple of comments that annoyingly look like...
2009-02-07 Vincent PitThe correct name of PERL_UTF8_magic is PERL_MAGIC_utf8...
2009-01-20 Rafael Garcia-SuarezOptimize away calls to empty DESTROY methods
2009-01-19 KarlCombine sv_utf8_upgrade with a following grow
2009-01-02 Rafael Garcia-SuarezBump coopyright year in embed.pl and various files...
2009-01-02 karl williamsonFaster sv_utf8_upgrade()
2008-12-27 Nicholas ClarkAdd Perl_mro_register() to register Method Resolution...
2008-12-26 kevin brintnallsv_dup(): avoid cloning empty arrays
2008-12-26 KarlUpdate comments and documentation dealing with utf
2008-12-20 Steve PetersIt looks like the previous patch is working fine on...
2008-12-19 Steve PetersSubject: PATCH 5.10 documentation
2008-12-05 Chip Salzenbergstandardize save/restore of errno & vaxc$errno
2008-12-01 Nicholas ClarkIn Perl_ss_dup(), case SAVEt_FREEPV can be rolled into...
2008-12-01 Nicholas ClarkRe-order Perl_save_delete() to PTR, INT, PTR.
2008-12-01 Nicholas ClarkFor SAVEHINTS(), re-order the savestack to be (?:PTR...
2008-11-26 Nicholas Clarksv_add_arena() is now only called from sv.c, so it...
2008-11-14 Chip Salzenberg[perl #948] [PATCH] Allow tied $,
2008-11-10 Marcus Holland-MoritzAllow lvalue usage of SvRV() and add MUTABLE_SV() check.
2008-11-09 Marcus Holland-MoritzFix warning code in Perl_sv_vcatpvfn() to make the...
2008-11-09 Hugo van der Sanden"Perl_newSVpvf("%lld")" is broken
2008-11-07 Marcus Holland-MoritzRevert SvPVX() to allow lvalue usage, but also add a
2008-11-02 Tom ChristiansenPATCH: Large omnibus patch to clean up the JRRT quotes
2008-11-02 Rafael Garcia-SuarezExplicitly specify some printf formats for constant...
2008-10-31 Nicholas ClarkAdd MUTABLE_GV(), and eliminate (V *) casts in *.c.
2008-10-30 Nicholas ClarkChange 34627 didn't realise that if S_find_uninit_var...
2008-10-30 Nicholas ClarkEliminate (SV *) casts from sv.c and [tu]*.c, except...
2008-10-29 Nicholas ClarkAdd MUTABLE_IO(), and eliminate (IO *) casts in *.c.
2008-10-29 Marcus Holland-MoritzUse pvs macros instead of pvn where possible.
2008-10-29 Nicholas ClarkEliminate (AV *) casts in *.c.
2008-10-29 Nicholas ClarkAdd MUTABLE_CV(), and eliminate (CV *) casts in *.c.
2008-10-29 Nicholas ClarkAs Perl_cv_const_sv() now takes a const CV *, use that...
2008-10-28 Nicholas ClarkEvery remaining (HV *) cast in *.c
2008-10-28 Nicholas ClarkConsting in S_find_uninit_var() and the routines that...
2008-10-28 Nicholas ClarkSome consting in Perl_ss_dup(), and a few (HV*) casts...
2008-10-28 Nicholas ClarkA gaggle of casts in Perl_sv_magicext() that are (const...
2008-10-25 Nicholas ClarkUpdate copyright years.
2008-10-24 Marcus Holland-MoritzMake C++ compilers happy #3: make implicit cast
2008-10-24 Marcus Holland-MoritzAdd SV allocation tracing to -Dm and PERL_MEM_LOG
2008-10-14 Nicholas ClarkYet another [ACGHS]V pointer in the interpreter structu...
2008-09-15 Nicholas ClarkSEGV in readline with $/ set to a reference, discovered...
2008-08-24 Dave MitchellDon't add freed SVF_BREAK scalars to the freed list.
2008-08-22 Nicholas ClarkIn S_mro_get_linear_isa_dfs(), save copying by making...
2008-08-21 Nicholas ClarkChange 33807 to fix bug #52740 wasn't quite right,...
2008-08-21 Dave Mitchellbetter document how the weakref backrefs array is refco...
2008-08-20 Dave MitchellAssert that backreferences array is not freed rather...
2008-08-20 Dave Mitchell[perl #56908] DBI memory leak in 5.10.0 due to change...
2008-07-15 Nicholas ClarkFix use of a variable before it is initialised, introdu...
2008-07-13 Nicholas ClarkThe assert()ions in sv_chop() that the passed in pointe...
2008-07-13 Nicholas Clarkassert() that the pointer passed to Perl_sv_chop()...
2008-07-11 Nicholas ClarkIn Perl_sv_utf8_upgrade_flags(), don't assume that...
2008-06-28 Ben MorrowSome more missing isGV_with_GP()s
2008-06-24 Dave Mitchellmore incorrect variable reported in uninitialized value...
2008-06-22 Dave MitchellIncorrect variable reported in uninitialized value...
2008-05-18 Dave MitchellDEBUG_LEAKING_SCALARS wasn't reporting the correct...
2008-05-10 BramCall SvMAGICAL_off in mg_free
2008-05-10 Rafael Garcia-SuarezFix [perl #52740] crash when localizing a symtab entry
2008-05-04 Craig A. BerryRecord-style reads in Perl_sv_gets have to be done...
2008-04-11 Rafael Garcia-SuarezFix C portability nit found by Jerry D. Hedden.
2008-04-11 Vincent PitDouble magic with '\&$x'
2008-04-02 Nicholas ClarkIn Perl_sv_grow(), no need to do PERL_STRLEN_ROUNDUP...
2008-04-01 Nicholas ClarkDefine sv_insert() as a wrapper to sv_insert_flags...
2008-04-01 Nicholas ClarkAdd the correct argument assertion macro to sv_insert_f...
2008-03-31 Vincent PitDouble magic with substr
2008-03-29 Nicholas ClarkFix compiler warning about comparison of pointer types.
2008-03-29 Gerard Goossendo not use SVTYPEMASK to prevent cleaning of PL_fdpid...
2008-03-26 Nicholas ClarkDon't call S_utf8_mg_pos_cache_update(), and hence...
2008-03-25 Nicholas ClarkRepeat change 33508 - change 33561 re-instated the...
2008-03-25 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-20 Vincent PitDouble warning with perl -we '\&$x'
2008-03-18 Steve HaySilence some warnings introduced by #33507
2008-03-13 Nicholas ClarkChange 33507 had a const too far (Perl_mg_dup()'s mg...
2008-03-13 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-12 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-11 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-11 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-02 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-02 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-02 Steven SchubigerRe: [PATCH] sv.c: consting
2008-03-01 Steven SchubigerRe: [PATCH] sv.c: consting
2008-02-29 Steven SchubigerRe: [PATCH] sv.c: consting
2008-02-27 Nicholas ClarkUse malloc_good_size() to round up the size of requeste...
2008-02-27 Steve HayFix another Win32/VC6 compiler warning caused by #33231
2008-02-26 Nicholas ClarkIf the C library provides malloc_size(), we can use...
2008-02-26 Nicholas ClarkIn Perl_sv_usepvn_flags(), with MYMALLOC, use the actua...
2008-02-26 Nicholas ClarkIf we have malloced_size() available, then avoid roundi...
2008-02-22 Dave Mitchellfix variable names in 'ununit var' warnings in evals
2008-02-20 Steve HayFix Win32/VC6 compiler warnings caused by #33231
2008-02-18 Marcus Holland-MoritzEnable caching of strxfrm() results also for readonly...
2008-02-14 Robin Barkeruse svtype
2008-02-12 Nicholas Clarkassert() that every NN argument is not NULL. Otherwise...
2008-02-08 Steven SchubigerRe: [PATCH] sv.c: consting
2008-02-07 Steven SchubigerRe: [PATCH] sv.c: consting
2008-02-04 Steven Schubigersv.c: consting
2008-01-26 Nicholas ClarkThe layout for struct block_loop under ithreads can...
2008-01-26 Nicholas ClarkInvestigation reveals that the work of restoring the...
next