| Commit message (Expand) | Author | Age | Files | Lines |
* | First stab at using the pad to store the serialised hints data. | Nicholas Clark | 2006-04-11 | 1 | -3/+9 |
* | Within Perl_newSVhek, inline most of newSVpvn_share(), because | Nicholas Clark | 2006-04-11 | 1 | -3/+17 |
* | Stop Perl_newSVpvn_share() potentially leaking the return result from | Nicholas Clark | 2006-04-11 | 1 | -0/+4 |
* | Fix pointer error in change 27741, spotted by John E. Malmberg. | Nicholas Clark | 2006-04-09 | 1 | -2/+2 |
* | sv.c, rs.t, perlvar.pod (Coverity finding: did you know what happens with $/=... | Jarkko Hietaniemi | 2006-04-08 | 1 | -5/+5 |
* | As av_dup, gv_dup and hv_dup are the same as sv_dup, code in various | Nicholas Clark | 2006-04-08 | 1 | -25/+8 |
* | By swapping the order of pushes onto the save stack for | Nicholas Clark | 2006-04-08 | 1 | -6/+1 |
* | Teach ss_dup about SAVEt_RE_STATE. (As correctly as it ever was before) | Nicholas Clark | 2006-04-08 | 1 | -0/+72 |
* | ss_dup of SAVEt_COP_ARYBASE can use the same code as SAVEt_I8. | Nicholas Clark | 2006-04-08 | 1 | -0/+1 |
* | Give more information in the panic in ss_dup. (Although I'm not sure | Nicholas Clark | 2006-04-07 | 1 | -1/+1 |
* | Move all the regexp state variables into a single structure. | Nicholas Clark | 2006-04-06 | 1 | -36/+1 |
* | eliminate PL_regprecomp, PL_regprogram, PL_regnpar and PL_regdata | Dave Mitchell | 2006-04-05 | 1 | -4/+0 |
* | use slabs to allocate save state space in regmatch() | Dave Mitchell | 2006-04-02 | 1 | -0/+1 |
* | If the passed in target rv for Perl_newSVrv() was already a reference | Nicholas Clark | 2006-04-01 | 1 | -2/+4 |
* | Inconsistencies in paramter const-ness noticed by SADAHIRO Tomoyuki. | Nicholas Clark | 2006-04-01 | 1 | -1/+1 |
* | Need to dup any hints HV stored on the save stack. | Nicholas Clark | 2006-03-31 | 1 | -2/+4 |
* | Serialise changes to %^H onto the current COP. Return the compile time | Nicholas Clark | 2006-03-31 | 1 | -0/+11 |
* | Random accumulated patches | Andy Lester | 2006-03-31 | 1 | -12/+15 |
* | re-[PATCH] Re: [PATCH] Poison now in two different flavours! | Jarkko Hietaniemi | 2006-03-29 | 1 | -5/+5 |
* | Silence 3 (spurious) gcc warnings about "maybe used uninitialized". | Nicholas Clark | 2006-03-25 | 1 | -2/+2 |
* | PL_multiline isn't referenced, and can be removed. | Nicholas Clark | 2006-03-25 | 1 | -1/+0 |
* | remove unused PL_regcc variable | Dave Mitchell | 2006-03-24 | 1 | -1/+0 |
* | Rejig the location of the cache assertion code in Perl_sv_pos_b2u(). | Nicholas Clark | 2006-03-23 | 1 | -17/+18 |
* | Move orphaned documentation back to its functions | Nicholas Clark | 2006-03-23 | 1 | -38/+75 |
* | Make S_sv_pos_u2b_cached use both cache pairs. | Nicholas Clark | 2006-03-23 | 1 | -1/+15 |
* | Use both cache entries for Perl_sv_pos_b2u(). | Nicholas Clark | 2006-03-23 | 1 | -3/+13 |
* | Complete the other 2 arms of the cache update code. | Nicholas Clark | 2006-03-23 | 1 | -0/+42 |
* | Pass the (byte) length of the entire string into | Nicholas Clark | 2006-03-23 | 1 | -18/+78 |
* | Add all new static functions to embed.fnc | Nicholas Clark | 2006-03-23 | 1 | -170/+4 |
* | Use the cache in S_sv_pos_u2b_cached() when the desired offset is | Nicholas Clark | 2006-03-23 | 1 | -4/+11 |
* | Use the cache in S_sv_pos_u2b_cached when the sought offset is after | Nicholas Clark | 2006-03-23 | 1 | -1/+28 |
* | Further adjustement to change #27576 by Jan Dubois | Rafael Garcia-Suarez | 2006-03-23 | 1 | -1/+1 |
* | RE: [PATCH, no, really!] Re: [perl #38779] NAN's on Win32 | Jan Dubois | 2006-03-23 | 1 | -0/+7 |
* | Call S_utf8_mg_pos_cache_update() from S_sv_pos_u2b_cached(). | Nicholas Clark | 2006-03-23 | 1 | -4/+20 |
* | Take advantage of uoffset >= uoffset0, to simplify some logic. | Nicholas Clark | 2006-03-22 | 1 | -11/+13 |
* | Add S_sv_pos_u2b_midway for when we know the utf-8/bytes offsets on | Nicholas Clark | 2006-03-22 | 1 | -5/+53 |
* | Create S_sv_pos_u2b_cached, which abstracts away utf-8 to byte | Nicholas Clark | 2006-03-22 | 1 | -7/+24 |
* | The simplest way to start on Perl_sv_pos_u2b seems to be to take out | Nicholas Clark | 2006-03-22 | 1 | -36/+31 |
* | (Hopefully) make VMS happy. | Nicholas Clark | 2006-03-21 | 1 | -1/+1 |
* | Extend change 27558 - if we know the character offset of the end, but | Nicholas Clark | 2006-03-20 | 1 | -3/+5 |
* | In Perl_sv_pos_b2u, if we know the character offset of the end, we | Nicholas Clark | 2006-03-20 | 1 | -5/+12 |
* | Abstract the string walking functionality from Perl_sv_pos_b2u into | Nicholas Clark | 2006-03-20 | 1 | -92/+135 |
* | Remove a redundant test on mg->mg_ptr. (It had to be non-NULL to get | Nicholas Clark | 2006-03-19 | 1 | -1/+1 |
* | Make Perl_sv_len_utf8 honour the new ${^UTF8CACHE}. | Nicholas Clark | 2006-03-17 | 1 | -16/+31 |
* | Remove a duplicated conditional test by putting everything for the | Nicholas Clark | 2006-03-17 | 1 | -6/+7 |
* | Properly set/reset the UTF-8 length cache in regcomp.c. | Nicholas Clark | 2006-03-17 | 1 | -3/+6 |
* | sv_find() returning false, followed by sv_magic() to add the magic, | Nicholas Clark | 2006-03-17 | 1 | -2/+6 |
* | Moving the overloading flag from the reference to the referant allows | Nicholas Clark | 2006-03-15 | 1 | -2/+5 |
* | Move the 12 static MAD variables from toke.c into the interpeter | Nicholas Clark | 2006-03-10 | 1 | -0/+12 |
* | The remainder of the toke.c MAD changes. Now to investigate why MAD | Nicholas Clark | 2006-03-09 | 1 | -0/+9 |