summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* Revert change #31489.Rafael Garcia-Suarez2007-06-291-1/+0
* Re: [perl #43357] *DESTROY = sub {} at runtimeBrandon Black2007-06-281-0/+1
* make sure PL_Parser is NULL during early stage of thread cloneDave Mitchell2007-06-261-0/+2
* Also get copy on write working with ithreads. It hadn't been workingNicholas Clark2007-06-241-3/+5
* Patches to compile perl on Cray XT4 Catamount/Qk, by JarkkoRafael Garcia-Suarez2007-06-171-1/+2
* miscellaneaJarkko Hietaniemi2007-06-151-1/+1
* change #31134 broke DEBUG_LEAKING_SCALARS buildsDave Mitchell2007-06-131-2/+7
* [patch] fix small errors in sv.c commentaryJim Cromie2007-06-071-9/+9
* Remove support for assertions and -ARafael Garcia-Suarez2007-06-051-1/+0
* Avoid calling SvEND() when SvPOKp() is not true.Nicholas Clark2007-05-281-6/+7
* delete PL_hash_seed_set, PL_lineary; move PL_runops_std/dbgDave Mitchell2007-05-251-4/+0
* fix coredump in S_varname (tickled by Devel::Profile)Dave Mitchell2007-05-251-2/+1
* move PL_error_count into the PL_parser structDave Mitchell2007-05-211-1/+1
* move PL_multi_end into the PL_parser structDave Mitchell2007-05-211-2/+1
* move PL_tokenbuf into the PL_parser structDave Mitchell2007-05-211-2/+2
* delete thrdvar.h and move its contents to intrpvar.hDave Mitchell2007-05-201-66/+66
* Various mro updates from Brandon Black. References:Craig A. Berry2007-05-191-5/+9
* move PL_in_my and PL_in_my_stash into the PL_parser structDave Mitchell2007-05-121-2/+2
* move PL_rsfp_filters into the parser structDave Mitchell2007-05-121-3/+3
* move PL_rsfp into the PL_parser structDave Mitchell2007-05-111-1/+2
* more constingAndy Lester2007-05-081-2/+2
* move PL_lex_state into the PL_parser structDave Mitchell2007-05-051-2/+2
* migrate more variables to PL_parser struct:Dave Mitchell2007-05-051-9/+7
* move some more variables into the PL_parser struct:Dave Mitchell2007-05-041-17/+22
* move PL_expect and PL_copline into the PL_parser structureDave Mitchell2007-05-041-5/+5
* Initialise PL_delayedisa on thread clone.Nicholas Clark2007-05-031-0/+1
* Re: mro status, etcBrandon Black2007-04-301-5/+34
* Fix a bug in method caching. Better version (broader) of change #29336.Brandon Black2007-04-261-3/+3
* Make PL_uudmap a constant global. Remove the run time initialisationNicholas Clark2007-04-241-1/+0
* move PL_linestr from the interpreter struct to the parser structDave Mitchell2007-04-241-14/+16
* Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,Nicholas Clark2007-04-211-6/+6
* Re: new C3 MRO patchBrandon Black2007-04-191-2/+7
* sv.c: %d ne size_tJarkko Hietaniemi2007-04-161-2/+2
* follow PL_watchaddr when cloning a threadDave Mitchell2007-04-151-2/+10
* with DEBUG_LEAKING_SCALARS, dump multiply-freed scalarsDave Mitchell2007-04-151-0/+4
* Move PL_comppad nulling from do_clean_all to sv_clearDave Mitchell2007-04-141-4/+4
* Fix two errors in the OP debugging code. Now all test errors relateNicholas Clark2007-04-121-0/+4
* Ensure PL_last_in_gv doesn't end up pointing to garbage by NULLing itNicholas Clark2007-04-071-0/+5
* Remove op_pmnext from PMOPs, and instead store the list for reset asNicholas Clark2007-04-061-8/+8
* Re: pmdynflags and thread safetyYves Orton2007-04-041-1/+5
* Eliminate the use of PL_bufend outside of toke.c:Dave Mitchell2007-04-011-6/+1
* In struct regexp replace the two arrays of I32s accessed via startpNicholas Clark2007-03-261-4/+3
* say() should parse exactly like print()Rafael Garcia-Suarez2007-03-261-0/+1
* Don't try to set the NV on a typeglob-in-action. Should cure bugNicholas Clark2007-03-211-1/+2
* AVs and HVs never had the NV slot. (Not that this error mattered, asNicholas Clark2007-03-211-2/+2
* Re: [PATCH] (Re: [PATCH] unicode/utf8 pod)Juerd Waalboer2007-03-071-1/+1
* As SvUPGRADE() is a macro wrapping a call to sv_upgrade() insideNicholas Clark2007-03-051-3/+1
* Avoid *some* g++ errors. (But not all yet)Nicholas Clark2007-02-191-1/+1
* blead (honestly :-) g++ with -DPERL_GLOBAL_STRUCT_PRIVATE needs tweakingJarkko Hietaniemi2007-02-191-2/+2
* Add a new API function newSV_type, to replace the idiom:Nicholas Clark2007-02-181-4/+20