summaryrefslogtreecommitdiff
path: root/scope.c
Commit message (Expand)AuthorAgeFilesLines
* reduce scope of a var in save_clearsvDaniel Dragan2012-11-181-1/+1
* Stop local $_[0] from leakingFather Chrysostomos2012-11-181-2/+3
* reindent block in leave_scopeDavid Mitchell2012-11-101-79/+79
* add SAVEt_CLEARPADRANGEDavid Mitchell2012-11-101-9/+20
* fix NO_TAINT_SUPPORT on g++David Mitchell2012-11-051-1/+1
* Add C define to remove taint support from perlSteffen Mueller2012-11-051-4/+5
* Revert "Set PL_comppad_name on sub entry"Father Chrysostomos2012-09-171-1/+0
* Make cx_dump() display the correct gimme descriptionVincent Pit2012-09-161-1/+16
* Fix perl with -DPERL_POISON after commit 22ade07Vincent Pit2012-09-161-5/+2
* Save one NULL assignment per TMPSteffen Mueller2012-09-161-2/+7
* Move my sub prototype CVs to the pad namesFather Chrysostomos2012-09-151-14/+0
* Set PL_comppad_name on sub entryFather Chrysostomos2012-09-151-0/+1
* CvNAME_HEK_setFather Chrysostomos2012-09-151-5/+3
* Clone my subs on scope entryFather Chrysostomos2012-09-151-2/+41
* Omnibus removal of register declarationsKarl Williamson2012-08-181-10/+10
* scope.c: Don’t stringify globs on scope exitFather Chrysostomos2012-07-301-1/+2
* eliminate PL_reg_start_tmp, PL_reg_start_tmplDavid Mitchell2012-06-131-3/+0
* update the editor hints for spaces, not tabsRicardo Signes2012-05-291-2/+2
* scope.c: Simplify and clarify commentFather Chrysostomos2012-05-211-15/+2
* [perl #112444] Don’t leak %^H autovivified by destructorFather Chrysostomos2012-04-161-1/+3
* stop %^H pointing to being-freed hash; #112326David Mitchell2012-04-111-3/+4
* Provide as much diagnostic information as possible in "panic: ..." messages.Nicholas Clark2012-01-161-2/+2
* Don’t double-free hint hash if copying diesFather Chrysostomos2011-12-231-2/+4
* scope.c: Allow successful saving of PL_taintedKarl Williamson2011-12-151-1/+10
* Copy magic during localisation even for GVsFather Chrysostomos2011-11-181-1/+1
* Hide pad vars from magic methods on scope exitFather Chrysostomos2011-11-051-1/+3
* Weak refs to pad hvs should go staleFather Chrysostomos2011-11-051-0/+1
* make SVs_PADTMP and SVs_PADSTALE share a bitDavid Mitchell2011-10-071-2/+3
* remove index offsetting ($[)Zefram2011-09-091-5/+0
* GVs of localised arrays and hashes should be refcountedFather Chrysostomos2011-08-261-2/+6
* SvREFCNT_dec already checks if the SV is non-NULLVincent Pit2011-08-021-2/+1
* add GvCV_set() and GvGP_set() macros.David Mitchell2011-01-211-2/+2
* Silence some data truncation compiler warningsJan Dubois2010-12-161-1/+1
* Revert "Globs that are in the symbol table can be unglobbed"Father Chrysostomos2010-11-201-12/+3
* Switch the core MRO code over to HvENAMEFather Chrysostomos2010-10-291-1/+1
* add SAVEFREECOPHH()Zefram2010-10-281-0/+4
* full API for cop hint hashesZefram2010-10-211-10/+5
* In S_save_scalar_at, remove oldtainted, unneeded since 0cbee0a449cc4e11.Nicholas Clark2010-10-131-2/+0
* add hv_copy_hints_hv and save_hints to the APIZefram2010-09-161-1/+1
* bad things happened with for $x (...) { *x = *y }David Mitchell2010-09-081-0/+6
* eliminate next_op from struct block_loopDavid Mitchell2010-09-081-2/+0
* remove misleading comment about CXINC; it's fineChip Salzenberg2010-07-271-1/+1
* Revert "Fix off-by-one: avoid allocating an extra context"Chip Salzenberg2010-07-271-2/+2
* Fix off-by-one: avoid allocating an extra contextChip Salzenberg2010-07-271-2/+2
* When saving ints, if the value is small enough save it with the type.Nicholas Clark2010-05-051-1/+11
* When saving I32s, if the value is small enough save it with the type.Nicholas Clark2010-05-051-1/+11
* For SAVEt_I16, save the value with the type.Nicholas Clark2010-05-041-2/+4
* For SAVEt_I8, save the value with the type.Nicholas Clark2010-05-041-2/+4
* For SAVEt_BOOL, save the value with the type.Nicholas Clark2010-05-031-4/+3
* For SAVEt_ALLOC, store the number of save stack entries used with the type.Nicholas Clark2010-05-031-8/+9