summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Use newer 'threads' constructsJerry D. Hedden2007-02-151-1/+1
* Purge all references to 5005 threads variables in the code.Nicholas Clark2007-02-031-22/+0
* g++ wants castJarkko Hietaniemi2007-01-281-1/+1
* Silence a few pedantic warningsRafael Garcia-Suarez2007-01-261-4/+4
* The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmaskNicholas Clark2007-01-251-1/+1
* Fix breakage for -DDEBUGGING accidentally introduced with change 29882.Nicholas Clark2007-01-191-1/+1
* Add a parameter to Perl_get_arena() to pass in the SV type, and recordNicholas Clark2007-01-191-21/+18
* I think that it's clearer if aroot is only struct arena_set *Nicholas Clark2007-01-191-7/+12
* As Perl_get_arena() is dealing with sizes, use size_t rather than int,Nicholas Clark2007-01-191-2/+2
* Move C<static bool done_sanity_check;> inside the only function thatNicholas Clark2007-01-181-7/+4
* Move the flag checking for isGV_with_GP() into the call to visit()Nicholas Clark2007-01-181-2/+3
* Given that we now do the tests in S_visit() to avoid calling theNicholas Clark2007-01-181-2/+4
* As PVLVs can hold globs in some cases, I think that we should beNicholas Clark2007-01-181-10/+5
* Replace SvRELEASE_IVX(dstr) with SvOOK_off(dstr) in sv_setsv_flags(),Nicholas Clark2007-01-171-1/+1
* Make PERL_OLD_COPY_ON_WRITE build again. Inline Perl_sv_release_IVX().Nicholas Clark2007-01-171-17/+18
* If we use SvUPGRADE() rather than sv_upgrade() then it can make theNicholas Clark2007-01-171-3/+2
* when cloning PL_regex_pad, copy SVf_BREAK flag tooDave Mitchell2007-01-151-0/+2