summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 4th patch from: Marcus Holland-Moritz2007-01-041-8/+8
* The first three patches from:Marcus Holland-Moritz2007-01-041-9/+9
* Re: [PATCH] Change implementation of %+ to use a proper tied hash interface a...Yves Orton2007-01-041-3/+0
* Rename OURSTASH to SvOURSTASH and OURSTASH_set to SvOURSTASH_set.Nicholas Clark2007-01-031-2/+2
* handle cloning of parsers on the save stackDave Mitchell2007-01-031-0/+11
* Make the ptr_table functions available in an unthreaded perl, as otherNicholas Clark2007-01-031-0/+3
* Copying to FORMATs should work (and not fail assertions if the valueNicholas Clark2007-01-021-1/+8
* Note that the examples for the structure copying bug example are noNicholas Clark2007-01-021-1/+3
* move easy lexer state variables into PL_parserDave Mitchell2007-01-021-34/+66
* Welcome to 2007! Time to update copyrights from changes earlierSteve Peters2007-01-011-1/+1
* Symbian port: add Series 90 supportJarkko Hietaniemi2007-01-011-4/+13
* PL_linestr needs to survive until the end of scope, not just the nextNicholas Clark2006-12-311-35/+14
* Move SVt_BIND to be the lowest type after SVt_NULL. This will force allNicholas Clark2006-12-311-3/+5
* With PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy once more.Nicholas Clark2006-12-281-2/+1
* Split out the use of SVp_SCREAM for GVs with GPs into a new symbolicNicholas Clark2006-12-161-4/+6
* Eliminate PVBM. Store fast Boyer-Moore tables in PVGV.Nicholas Clark2006-12-131-33/+33
* Oops. As of some point one stopped being able to assign integers andNicholas Clark2006-12-121-0/+5
* pads haven't actually contained any PVGVs since change 27313.Nicholas Clark2006-12-121-0/+1
* PVBMs mustn't enter anything that turns SVIVisUV_on().Nicholas Clark2006-12-091-3/+11
* Exterminate! 2 pieces of superfluous code related to UV setting.Nicholas Clark2006-12-091-9/+0
* add missing OP_REFCNT_LOCK/UNLOCKs and document itDave Mitchell2006-12-081-0/+4
* Continue split of perl internal regexp structures from ones that are engine s...Yves Orton2006-12-011-11/+2
* Change 29364 forgot to turn the POK flag on.Nicholas Clark2006-11-231-0/+1