summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* Fix C portability nit found by Jerry D. Hedden.Rafael Garcia-Suarez2008-04-111-1/+1
* Double magic with '\&$x'Vincent Pit2008-04-111-3/+5
* In Perl_sv_grow(), no need to do PERL_STRLEN_ROUNDUP() if we haveNicholas Clark2008-04-021-1/+1
* Define sv_insert() as a wrapper to sv_insert_flags(), and moveNicholas Clark2008-04-011-14/+4
* Add the correct argument assertion macro to sv_insert_flags().Nicholas Clark2008-04-011-1/+2
* Double magic with substrVincent Pit2008-03-311-2/+16
* Fix compiler warning about comparison of pointer types.Nicholas Clark2008-03-291-1/+3
* do not use SVTYPEMASK to prevent cleaning of PL_fdpid and PL_strtabGerard Goossen2008-03-291-0/+2
* Don't call S_utf8_mg_pos_cache_update(), and hence don't even createNicholas Clark2008-03-261-2/+4
* Repeat change 33508 - change 33561 re-instated the mistake in changeNicholas Clark2008-03-251-1/+1
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-251-9/+9
* Double warning with perl -we '\&$x'Vincent Pit2008-03-201-1/+1
* Silence some warnings introduced by #33507Steve Hay2008-03-181-1/+1
* Change 33507 had a const too far (Perl_mg_dup()'s mg is assigned to).Nicholas Clark2008-03-131-1/+1
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-131-12/+14
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-121-14/+14
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-111-12/+13
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-111-18/+18
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-021-12/+12
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-021-11/+11
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-021-12/+14
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-011-9/+9
* Re: [PATCH] sv.c: constingSteven Schubiger2008-02-291-10/+10
* Use malloc_good_size() to round up the size of requested arenas to theNicholas Clark2008-02-271-4/+13
* Fix another Win32/VC6 compiler warning caused by #33231Steve Hay2008-02-271-1/+1
* If the C library provides malloc_size(), we can use that in the sameNicholas Clark2008-02-261-5/+5
* In Perl_sv_usepvn_flags(), with MYMALLOC, use the actual malloc()edNicholas Clark2008-02-261-3/+12
* If we have malloced_size() available, then avoid rounding up the stringNicholas Clark2008-02-261-7/+9
* fix variable names in 'ununit var' warnings in evalsDave Mitchell2008-02-221-0/+1
* Fix Win32/VC6 compiler warnings caused by #33231Steve Hay2008-02-201-2/+2
* Enable caching of strxfrm() results also for readonly SVs asMarcus Holland-Moritz2008-02-181-5/+0
* use svtypeRobin Barker2008-02-141-1/+1
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-7/+307
* Re: [PATCH] sv.c: constingSteven Schubiger2008-02-081-10/+10
* Re: [PATCH] sv.c: constingSteven Schubiger2008-02-071-11/+11
* sv.c: constingSteven Schubiger2008-02-041-8/+8
* The layout for struct block_loop under ithreads can be simplified.Nicholas Clark2008-01-261-7/+8
* Investigation reveals that the work of restoring the iterator to theNicholas Clark2008-01-261-4/+2
* Some code can be removed following change 33070.Nicholas Clark2008-01-261-4/+6
* Re: struct context now 12.5% smaller than 5.10Benjamin Smith2008-01-261-7/+10
* PVIOs don't need space for SvNVX allocated.Nicholas Clark2008-01-251-2/+3
* In struct block_loop, merge itermax and iterlval into a unionNicholas Clark2008-01-241-2/+3
* Merge CXt_LOOP_STACK's use of itermax for the reverse minimum withNicholas Clark2008-01-241-2/+2
* Change the context type of for ($a .. $b) to CXt_LOOP_LAZYIV, andNicholas Clark2008-01-241-0/+1
* Split out foreach iterations of temporary lists on the stack toNicholas Clark2008-01-241-0/+1
* Split CXt_LOOP into CXt_LOOP_PLAIN and CXt_LOOP_FOR, eliminating theNicholas Clark2008-01-241-3/+4
* Fix the misplaced warnings and failing tests caused by the precisionNicholas Clark2008-01-231-6/+6
* In struct block_sub and block_format, access the members hasargs andNicholas Clark2008-01-201-1/+1
* Split struct block_sub into struct block_sub and struct block_format.Nicholas Clark2008-01-201-3/+3
* In Perl_cx_dup(), block copy the entire context stack, then walk itNicholas Clark2008-01-201-45/+31