This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
locale.c: Add missing STATIC to fcn decl
[perl5.git] / scope.c
2013-06-26 Father ChrysostomosIn-place sort should not leave array read-only
2013-06-02 David Mitchelleliminate PL_reg_state
2013-06-02 David Mitchelleliminate PL_reg_poscache, PL_reg_poscache_size
2013-05-09 Nicholas ClarkRemove PERL_ASYNC_CHECK() from Perl_leave_scope().
2013-05-09 David Mitchellsilence warnings under NO_TAINT_SUPPORT
2013-03-12 George GreerFix some ASAN-identified problems
2012-12-06 David Mitchellscope.c: silence some compiler warnings
2012-12-04 David Mitchelladd SvREFCNT_dec_NN()
2012-12-04 David MitchellOptimise magic handling in save* and leave_scope
2012-12-04 David Mitchellrefactor Perl_leave_scope
2012-12-04 David Mitchellsave_int/i32 inline the long version
2012-12-04 David MitchellAdd SS_ADD_* macros and replace most SSPUSH* uses
2012-11-29 Father ChrysostomosClear method caches when unwinding local *foo=sub{}
2012-11-29 Father ChrysostomosClear method caches when unwinding local *foo=*method
2012-11-29 Father ChrysostomosFix two local *ISA bugs
2012-11-29 Father ChrysostomosDon’t croak for local *DetachedStash::method
2012-11-29 Father ChrysostomosReset method caches when GPs are shared
2012-11-29 Father Chrysostomosscope.c:save_gp: Remove redundant code
2012-11-25 Karl WilliamsonRemove "register" declarations
2012-11-21 Father Chrysostomosscope.c: Remove XXX tmp comment from SAVEt_FREEOP
2012-11-19 Daniel Draganreduce scope of a var in save_clearsv
2012-11-18 Father ChrysostomosStop local $_[0] from leaking
2012-11-10 David Mitchellreindent block in leave_scope
2012-11-10 David Mitchelladd SAVEt_CLEARPADRANGE
2012-11-05 David Mitchellfix NO_TAINT_SUPPORT on g++
2012-11-05 Steffen MuellerAdd C define to remove taint support from perl origin/smueller/no_taint3
2012-09-17 Father ChrysostomosRevert "Set PL_comppad_name on sub entry"
2012-09-16 Vincent PitMake cx_dump() display the correct gimme description
2012-09-16 Vincent PitFix perl with -DPERL_POISON after commit 22ade07
2012-09-16 Steffen MuellerSave one NULL assignment per TMP
2012-09-16 Father ChrysostomosMove my sub prototype CVs to the pad names
2012-09-16 Father ChrysostomosSet PL_comppad_name on sub entry
2012-09-16 Father ChrysostomosCvNAME_HEK_set
2012-09-16 Father ChrysostomosClone my subs on scope entry
2012-08-18 Karl WilliamsonOmnibus removal of register declarations
2012-07-31 Father Chrysostomosscope.c: Don’t stringify globs on scope exit
2012-06-13 David Mitchelleliminate PL_reg_start_tmp, PL_reg_start_tmpl
2012-05-30 Ricardo Signesupdate the editor hints for spaces, not tabs
2012-05-21 Father Chrysostomosscope.c: Simplify and clarify comment
2012-04-16 Father Chrysostomos[perl #112444] Don’t leak %^H autovivified by destructor
2012-04-11 David Mitchellstop %^H pointing to being-freed hash; #112326
2012-01-16 Nicholas ClarkProvide as much diagnostic information as possible...
2011-12-23 Father ChrysostomosDon’t double-free hint hash if copying dies
2011-12-15 Karl Williamsonscope.c: Allow successful saving of PL_tainted
2011-11-19 Father ChrysostomosCopy magic during localisation even for GVs
2011-11-05 Father ChrysostomosHide pad vars from magic methods on scope exit
2011-11-05 Father ChrysostomosWeak refs to pad hvs should go stale
2011-10-07 David Mitchellmake SVs_PADTMP and SVs_PADSTALE share a bit
2011-09-09 Zeframremove index offsetting ($[)
2011-08-27 Father ChrysostomosGVs of localised arrays and hashes should be refcounted
2011-08-02 Vincent PitSvREFCNT_dec already checks if the SV is non-NULL
2011-01-21 David Mitchelladd GvCV_set() and GvGP_set() macros.
2010-12-16 Jan DuboisSilence some data truncation compiler warnings
2010-11-21 Father ChrysostomosRevert "Globs that are in the symbol table can be unglo...
2010-10-30 Father ChrysostomosSwitch the core MRO code over to HvENAME
2010-10-29 Zeframadd SAVEFREECOPHH()
2010-10-21 Zeframfull API for cop hint hashes
2010-10-13 Nicholas ClarkIn S_save_scalar_at, remove oldtainted, unneeded since...
2010-09-16 Zeframadd hv_copy_hints_hv and save_hints to the API
2010-09-08 David Mitchellbad things happened with for $x (...) { *x = *y }
2010-09-08 David Mitchelleliminate next_op from struct block_loop
2010-07-28 Chip Salzenbergremove misleading comment about CXINC; it's fine
2010-07-28 Chip SalzenbergRevert "Fix off-by-one: avoid allocating an extra context"
2010-07-28 Chip SalzenbergFix off-by-one: avoid allocating an extra context
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 ClarkFix c6bf6a65 - 64 bit big endian builds were broken.
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-26 Lubomir Rintel ... Globs that are in symbol table can be un-globbed
2010-04-15 Nicholas ClarkMove PERL_ASYNC_CHECK() from the runloop to control...
2010-04-15 David Mitchelluse cBOOL for bool casts
2010-04-13 David Mitchellfix minor casting issue
2010-04-11 David MitchellRT 8857: premature free in local of tied element
2010-03-30 David Mitchellimprove -Dl debugging output
2009-11-13 Jerry D. HeddenFix compiler warning:
2009-11-12 Gerard GoossenAdd ENTER_with_name and LEAVE_with_name to automaticly...
2009-11-08 Vincent PitSvREFCNT_dec already checks if the SV is non-NULL ...
2009-07-25 Vincent PitIntroduce save_hdelete() and SAVEHDELETE()
2009-07-25 Vincent PitAdd a new SAVEf_KEEPOLDELEM flag to save_scalar_at...
2009-07-25 Vincent PitIntroduce save_aelem_flags()
2008-12-28 Vincent PitAdd save_adelete()/SAVEADELETE() to save on the stack...
2008-12-03 Nicholas ClarkFix for tainting regression in a test of Text::Template...
2008-12-01 Nicholas ClarkThe temporary SV created in Perl_save_helem_flags(...
2008-12-01 Nicholas ClarkChange 34966 should also have removed the SSCHECK(4...
2008-12-01 Nicholas ClarkImplement Perl_save_delete() using save_pushptri32ptr().
2008-12-01 Nicholas ClarkRe-order Perl_save_delete() to PTR, INT, PTR.
2008-12-01 Nicholas ClarkAdd S_save_pushptri32ptr() and use it to re-implement...
2008-12-01 Nicholas ClarkMove the implmentation of SAVEHINTS() into a new Perl_s...
2008-12-01 Nicholas ClarkFor SAVEHINTS(), re-order the savestack to be (?:PTR...
2008-12-01 Nicholas ClarkExpose save_pushi32ptr() and implement SAVECOPARYBASE...
2008-12-01 Nicholas ClarkExpose save_pushptrptr() and implement SAVESWITCHSTACK...
2008-11-30 Nicholas ClarkRefactor all of the code of the form
2008-11-30 Nicholas ClarkRefactor all of the code of the form
2008-11-30 Nicholas ClarkConvert all the scope save functions of the form
next