summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* Remove the deprecated $# variableRafael Garcia-Suarez2005-06-201-1/+0
* S_del_body is sufficiently small that inlining it is a space win.Nicholas Clark2005-06-201-23/+22
* If NV_ZERO_IS_ALLBITS_ZERO there's no need to explicitly set the NVXNicholas Clark2005-06-191-30/+39
* Move the offset calculations outside of new_body/del_body.Nicholas Clark2005-06-191-27/+31
* Refactor sv_dup to memcpy from source to destination, and onlyNicholas Clark2005-06-181-259/+280
* Squeeze a little more savings by moving pte and he arenas into theNicholas Clark2005-06-181-24/+8
* squeeze repetition out of Perl_sv_free_arenasJim Cromie2005-06-181-74/+39
* update AVs and HVs using the old_body, and remove all of the localNicholas Clark2005-06-181-59/+29
* sv_upgrade by memcpyNicholas Clark2005-06-181-72/+146
* Fix compiling with -DPURIFYNicholas Clark2005-06-171-2/+2
* Change 24886 was buggy - should be taking (and passing in) theNicholas Clark2005-06-171-6/+6
* Collect a little more information about the body we're getting rid ofNicholas Clark2005-06-171-0/+19
* Missing aTHX_ (noticed by Jim Cromie)Rafael Garcia-Suarez2005-06-171-2/+2
* Move freeing the old body after the creating of the new body.Nicholas Clark2005-06-171-6/+28
* The only way is up!Nicholas Clark2005-06-171-1/+4
* new_pte/del_pte can use new_body/del_body tooNicholas Clark2005-06-171-39/+4
* Replace all the new/del static functions with calls to a single pairNicholas Clark2005-06-161-320/+82
* Making more_* return a pointer, and swapping to a ternary ?: inNicholas Clark2005-06-161-34/+14
* Replace all the S_more_* functions with a single function.Nicholas Clark2005-06-161-303/+47
* Re: [perl #36048] Refactor S_more_*v into one functionJim Cromie2005-06-161-0/+82
* Removing /*SUPPRESS xxx*/Andy Lester2005-06-161-2/+0
* Protect Perl_sv_2pvbyte () to NULL length pointersH.Merijn Brand2005-06-151-1/+1
* Fix warning nits, by JarkkoRafael Garcia-Suarez2005-06-151-2/+2
* Pay attention to the comments that Dave writes.Nicholas Clark2005-06-131-4/+1
* Make SvUPGRADE always have the value '1'Rafael Garcia-Suarez2005-06-131-3/+2
* We no longer need PL_shared_hek_tableNicholas Clark2005-06-131-4/+0
* Clone all shared string PVs as shared string PVs (now that we can doNicholas Clark2005-06-121-16/+5
* duping shared hask key scalars can use hek_dupNicholas Clark2005-06-121-3/+3
* Provide share_hek_hek, and use it for fast copying of shared stringNicholas Clark2005-06-121-7/+2
* Shrink shared hash scalars from PVIV to PVNicholas Clark2005-06-111-20/+13
* Propagate const/mutable/not into the SvPV call for retrieving anNicholas Clark2005-06-111-2/+16
* Move SvPV consting, remove an n_a, and correct one error in Move()Nicholas Clark2005-06-101-33/+33
* Add SvGROW_mutableNicholas Clark2005-06-101-6/+5
* Change 24531 broke DEBUG_LEAKING_SCALARS.Nicholas Clark2005-06-101-0/+1
* regcomp.c and moreAndy Lester2005-06-091-8/+8
* instead of unions use double cast for data pointer <-> function pointerJarkko Hietaniemi2005-06-091-9/+6
* The old COW code needs to use SvPVX_mutable when doing copy-on-write.Nicholas Clark2005-06-081-2/+2
* sv_setsv is allowed to swipe buffers from read only scalarsNicholas Clark2005-06-081-1/+1
* Allow a null length pointer to sv_pvn_force_flags.Nicholas Clark2005-06-081-5/+8
* s/PERL_COPY_ON_WRITE/PERL_OLD_COPY_ON_WRITE/gNicholas Clark2005-06-081-15/+15
* Better sv_2pv_flags implementation (avoid writing to n_a)Nicholas Clark2005-06-081-17/+24
* More SvPV constingNicholas Clark2005-06-071-5/+5
* More SvPV constingNicholas Clark2005-06-071-0/+4
* More consting of SvPVNicholas Clark2005-06-071-14/+15
* More SvPV consting.Nicholas Clark2005-06-071-3/+4
* Random cleanups #47Andy Lester2005-06-071-12/+12
* Simplify the implementation of SvPV*nolen functionsNicholas Clark2005-06-071-6/+9
* Ensure string table counts are balanced. (Was not true in op/pack.t)Nicholas Clark2005-06-071-2/+10
* Fix apidoc for newSVhekRafael Garcia-Suarez2005-06-071-1/+1
* Make a start at consting calls to SvPV. SV conversion and upgradeNicholas Clark2005-06-071-105/+123