| Commit message (Expand) | Author | Age | Files | Lines |
* | Provide a macro version of S_new_body to inline it within the hot code. | Nicholas Clark | 2005-07-04 | 1 | -16/+26 |
* | Post-YAPC consting, now with an attachment! | Andy Lester | 2005-07-04 | 1 | -17/+15 |
* | sv_setuv_mg is so rarely called that the IV optimisation test is not | Nicholas Clark | 2005-07-04 | 1 | -15/+3 |
* | Copying the first parameter in the macro del_body seems to reduce | Nicholas Clark | 2005-07-02 | 1 | -2/+3 |
* | Unwrap the del_Xfoo() macros by explicitly noting the arena to free | Nicholas Clark | 2005-07-02 | 1 | -57/+45 |
* | Given that the GV no longer owns a reference on the symbol table, we | Nicholas Clark | 2005-07-02 | 1 | -16/+9 |
* | Passing gvtype as char rather than char * to S_varname generates | Nicholas Clark | 2005-07-02 | 1 | -17/+17 |
* | Don't inline offer_nice_chunk, as it's rarely called. | Nicholas Clark | 2005-07-02 | 1 | -0/+21 |
* | Don't check the pointer is non-NULL before calling Safefree() in | Nicholas Clark | 2005-07-02 | 1 | -2/+1 |
* | [perl #36434] assigning shared consts (eg __PACKAGE__) to magic vars | Dave Mitchell | 2005-06-30 | 1 | -1/+6 |
* | Replace newSVpv(...,0) with newSVpvn where we know the length. | Nicholas Clark | 2005-06-30 | 1 | -2/+2 |
* | If gp_flags is unused, why are we even allocating it? | Nicholas Clark | 2005-06-30 | 1 | -1/+0 |
* | Fixes to -DPERL_DONT_CREATE_GVSV to make more tests pass | Nicholas Clark | 2005-06-29 | 1 | -11/+15 |
* | First stab at not automatically creating an unused SV for GvSV | Nicholas Clark | 2005-06-29 | 1 | -1/+5 |
* | Remove old variable needed for binary compatibility | Rafael Garcia-Suarez | 2005-06-29 | 1 | -2/+0 |
* | Convert strcpy to memcpy where we already know the length. | Nicholas Clark | 2005-06-28 | 1 | -1/+1 |
* | Fix sv_dec of undefined PVs to (a) not downgrade to NV | Nicholas Clark | 2005-06-27 | 1 | -4/+4 |
* | We're going round in circles with pp_sys.c | Andy Lester | 2005-06-27 | 1 | -4/+4 |
* | Extend DEBUG_LEAKING_SCALARS_FORK_DUMP so it can also dump scalars | Nicholas Clark | 2005-06-24 | 1 | -1/+5 |
* | Remove the reference loop between symbol tables and typeglobs. | Nicholas Clark | 2005-06-23 | 1 | -34/+42 |
* | The current implementation of :unique is fundamentally flawed, | Nicholas Clark | 2005-06-23 | 1 | -68/+1 |
* | Add a define PERL_POISON which tries to trip up anything accessing | Nicholas Clark | 2005-06-23 | 1 | -8/+3 |
* | Const Boy II: The Localizing | Andy Lester | 2005-06-23 | 1 | -24/+24 |
* | remove taint hack now that local $tainted no longer copies taint magic | Dave Mitchell | 2005-06-22 | 1 | -1/+1 |
* | Avoid having NULL entries in the weakref backreference array, and | Nicholas Clark | 2005-06-21 | 1 | -9/+17 |
* | As there will be no old body to dispose of, we can return immediately. | Nicholas Clark | 2005-06-21 | 1 | -3/+3 |
* | Re: [perl #36310] sv_vcatpvfn() fails on some (very limited) situations | Tsutomu IKEGAMI | 2005-06-21 | 1 | -5/+3 |
* | Replace the non-const initialiser block + loop with a series of calls | Nicholas Clark | 2005-06-20 | 1 | -50/+31 |
* | The continuing adventures of Constman and Localize Boy | Andy Lester | 2005-06-20 | 1 | -35/+43 |
* | Remove the deprecated $# variable | Rafael Garcia-Suarez | 2005-06-20 | 1 | -1/+0 |
* | S_del_body is sufficiently small that inlining it is a space win. | Nicholas Clark | 2005-06-20 | 1 | -23/+22 |
* | If NV_ZERO_IS_ALLBITS_ZERO there's no need to explicitly set the NVX | Nicholas Clark | 2005-06-19 | 1 | -30/+39 |
* | Move the offset calculations outside of new_body/del_body. | Nicholas Clark | 2005-06-19 | 1 | -27/+31 |
* | Refactor sv_dup to memcpy from source to destination, and only | Nicholas Clark | 2005-06-18 | 1 | -259/+280 |
* | Squeeze a little more savings by moving pte and he arenas into the | Nicholas Clark | 2005-06-18 | 1 | -24/+8 |
* | squeeze repetition out of Perl_sv_free_arenas | Jim Cromie | 2005-06-18 | 1 | -74/+39 |
* | update AVs and HVs using the old_body, and remove all of the local | Nicholas Clark | 2005-06-18 | 1 | -59/+29 |
* | sv_upgrade by memcpy | Nicholas Clark | 2005-06-18 | 1 | -72/+146 |
* | Fix compiling with -DPURIFY | Nicholas Clark | 2005-06-17 | 1 | -2/+2 |
* | Change 24886 was buggy - should be taking (and passing in) the | Nicholas Clark | 2005-06-17 | 1 | -6/+6 |
* | Collect a little more information about the body we're getting rid of | Nicholas Clark | 2005-06-17 | 1 | -0/+19 |
* | Missing aTHX_ (noticed by Jim Cromie) | Rafael Garcia-Suarez | 2005-06-17 | 1 | -2/+2 |
* | Move freeing the old body after the creating of the new body. | Nicholas Clark | 2005-06-17 | 1 | -6/+28 |
* | The only way is up! | Nicholas Clark | 2005-06-17 | 1 | -1/+4 |
* | new_pte/del_pte can use new_body/del_body too | Nicholas Clark | 2005-06-17 | 1 | -39/+4 |
* | Replace all the new/del static functions with calls to a single pair | Nicholas Clark | 2005-06-16 | 1 | -320/+82 |
* | Making more_* return a pointer, and swapping to a ternary ?: in | Nicholas Clark | 2005-06-16 | 1 | -34/+14 |
* | Replace all the S_more_* functions with a single function. | Nicholas Clark | 2005-06-16 | 1 | -303/+47 |
* | Re: [perl #36048] Refactor S_more_*v into one function | Jim Cromie | 2005-06-16 | 1 | -0/+82 |
* | Removing /*SUPPRESS xxx*/ | Andy Lester | 2005-06-16 | 1 | -2/+0 |