diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-10-08 00:20:21 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-11-27 07:05:01 -0800 |
commit | db2c6cb33ec067c880a2cb3c4efdb33f7e3e3d0f (patch) | |
tree | 2460f0a21a4cfde265cd5fd481296eee2515c150 /sv.c | |
parent | 08bf00be470db7b367e14733226d4fddc004c796 (diff) | |
download | perl-db2c6cb33ec067c880a2cb3c4efdb33f7e3e3d0f.tar.gz |
New COW mechanism
This was discussed in ticket #114820.
This new copy-on-write mechanism stores a reference count for the
PV inside the PV itself, at the very end. (I was using SvEND+1
at first, but parts of the regexp engine expect to be able to do
SvCUR_set(sv,0), which causes the wrong byte of the string to be used
as the reference count.) Only 256 SVs can share the same PV this way.
Also, only strings with allocated space after the trailing null can
be used for copy-on-write.
Much of the code is shared with PERL_OLD_COPY_ON_WRITE. The restric-
tion against doing copy-on-write with magical variables has hence been
inherited, though it is not necessary. A future commit will take
care of that.
I had to modify _core_swash_init to handle $@ differently. The exist-
ing mechanism of copying $@ to a new scalar and back again was very
fragile. With copy-on-write, $@ =~ s/// can cause pp_subst’s string
pointers to become stale. So now we remove the scalar from *@ and
allow the utf8-table-loading code to autovivify a new one. Then we
restore the untouched $@ afterwards if all goes well.
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 126 |
1 files changed, 100 insertions, 26 deletions
@@ -1502,7 +1502,10 @@ Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen) #endif } else + { + if (SvIsCOW(sv)) sv_force_normal(sv); s = SvPVX_mutable(sv); + } if (newlen > SvLEN(sv)) { /* need more room? */ STRLEN minlen = SvCUR(sv); @@ -4198,12 +4201,17 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags) source scalar is a shared hash key scalar. */ (((flags & SV_COW_SHARED_HASH_KEYS) ? !(sflags & SVf_IsCOW) +#ifdef PERL_NEW_COPY_ON_WRITE + /* If this is a regular (non-hek) COW, only so many COW + "copies" are possible. */ + || (SvLEN(sstr) && CowREFCNT(sstr) == SV_COW_REFCNT_MAX) +#endif : 1 /* If making a COW copy is forbidden then the behaviour we desire is as if the source SV isn't actually already COW, even if it is. So we act as if the source flags are not COW, rather than actually testing them. */ ) -#ifndef PERL_OLD_COPY_ON_WRITE +#ifndef PERL_ANY_COW /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic when PERL_OLD_COPY_ON_WRITE is defined a little wrong. Conceptually PERL_OLD_COPY_ON_WRITE being defined should @@ -4218,17 +4226,28 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags) ) && !(isSwipe = +#ifdef PERL_NEW_COPY_ON_WRITE + /* slated for free anyway (and not COW)? */ + (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP && +#else (sflags & SVs_TEMP) && /* slated for free anyway? */ +#endif !(sflags & SVf_OOK) && /* and not involved in OOK hack? */ (!(flags & SV_NOSTEAL)) && /* and we're allowed to steal temps */ SvREFCNT(sstr) == 1 && /* and no other references to it? */ SvLEN(sstr)) /* and really is a string */ -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW && ((flags & SV_COW_SHARED_HASH_KEYS) ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS - && SvTYPE(sstr) >= SVt_PVIV)) +# ifdef PERL_OLD_COPY_ON_WRITE + && SvTYPE(sstr) >= SVt_PVIV +# else + && !(sflags & SVf_IsCOW) + && SvCUR(sstr)+1 < SvLEN(sstr) +# endif + )) : 1) #endif ) { @@ -4249,13 +4268,17 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags) sv_dump(sstr); sv_dump(dstr); } -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW if (!isSwipe) { if (!(sflags & SVf_IsCOW)) { SvIsCOW_on(sstr); +# ifdef PERL_OLD_COPY_ON_WRITE /* Make the source SV into a loop of 1. (about to become 2) */ SV_COW_NEXT_SV_SET(sstr, sstr); +# else + CowREFCNT(sstr) = 0; +# endif } } #endif @@ -4268,13 +4291,17 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags) /* making another shared SV. */ STRLEN cur = SvCUR(sstr); STRLEN len = SvLEN(sstr); -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW if (len) { +# ifdef PERL_OLD_COPY_ON_WRITE assert (SvTYPE(dstr) >= SVt_PVIV); /* SvIsCOW_normal */ /* splice us in between source and next-after-source. */ SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr)); SV_COW_NEXT_SV_SET(sstr, dstr); +# else + CowREFCNT(sstr)++; +# endif SvPV_set(dstr, SvPVX_mutable(sstr)); } else #endif @@ -4364,7 +4391,12 @@ Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr) SvSETMAGIC(dstr); } -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW +# ifdef PERL_OLD_COPY_ON_WRITE +# define SVt_COW SVt_PVIV +# else +# define SVt_COW SVt_PV +# endif SV * Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr) { @@ -4390,14 +4422,16 @@ Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr) } else new_SV(dstr); - SvUPGRADE(dstr, SVt_PVIV); + SvUPGRADE(dstr, SVt_COW); assert (SvPOK(sstr)); assert (SvPOKp(sstr)); +# ifdef PERL_OLD_COPY_ON_WRITE assert (!SvIOK(sstr)); assert (!SvIOKp(sstr)); assert (!SvNOK(sstr)); assert (!SvNOKp(sstr)); +# endif if (SvIsCOW(sstr)) { @@ -4408,21 +4442,34 @@ Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr) new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))); goto common_exit; } +# ifdef PERL_OLD_COPY_ON_WRITE SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr)); +# else + assert(SvCUR(sstr)+1 < SvLEN(sstr)); + assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX); +# endif } else { assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS); - SvUPGRADE(sstr, SVt_PVIV); + SvUPGRADE(sstr, SVt_COW); SvIsCOW_on(sstr); DEBUG_C(PerlIO_printf(Perl_debug_log, "Fast copy on write: Converting sstr to COW\n")); +# ifdef PERL_OLD_COPY_ON_WRITE SV_COW_NEXT_SV_SET(dstr, sstr); +# else + CowREFCNT(sstr) = 0; +# endif } +# ifdef PERL_OLD_COPY_ON_WRITE SV_COW_NEXT_SV_SET(sstr, dstr); +# else + CowREFCNT(sstr)++; +# endif new_pv = SvPVX_mutable(sstr); common_exit: SvPV_set(dstr, new_pv); - SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_IsCOW); + SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW); if (SvUTF8(sstr)) SvUTF8_on(dstr); SvLEN_set(dstr, len); @@ -4736,29 +4783,42 @@ Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags) PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS; -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW if (SvREADONLY(sv)) { if (IN_PERL_RUNTIME) Perl_croak_no_modify(); } - else - if (SvIsCOW(sv)) { - const char * const pvx = SvPVX_const(sv); - const STRLEN len = SvLEN(sv); - const STRLEN cur = SvCUR(sv); - /* next COW sv in the loop. If len is 0 then this is a shared-hash - key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as - we'll fail an assertion. */ - SV * const next = len ? SV_COW_NEXT_SV(sv) : 0; + else if (SvIsCOW(sv)) { + const char * const pvx = SvPVX_const(sv); + const STRLEN len = SvLEN(sv); + const STRLEN cur = SvCUR(sv); +# ifdef PERL_OLD_COPY_ON_WRITE + /* next COW sv in the loop. If len is 0 then this is a shared-hash + key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as + we'll fail an assertion. */ + SV * const next = len ? SV_COW_NEXT_SV(sv) : 0; +# endif - if (DEBUG_C_TEST) { + if (DEBUG_C_TEST) { PerlIO_printf(Perl_debug_log, "Copy on write: Force normal %ld\n", (long) flags); sv_dump(sv); - } - SvIsCOW_off(sv); + } + SvIsCOW_off(sv); +# ifdef PERL_NEW_COPY_ON_WRITE + if (len && CowREFCNT(sv) == 0) + /* We own the buffer ourselves. */ + NOOP; + else +# endif + { + /* This SV doesn't own the buffer, so need to Newx() a new one: */ +# ifdef PERL_NEW_COPY_ON_WRITE + /* Must do this first, since the macro uses SvPVX. */ + if (len) CowREFCNT(sv)--; +# endif SvPV_set(sv, NULL); SvLEN_set(sv, 0); if (flags & SV_COW_DROP_PV) { @@ -4771,7 +4831,9 @@ Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags) *SvEND(sv) = '\0'; } if (len) { +# ifdef PERL_OLD_COPY_ON_WRITE sv_release_COW(sv, pvx, next); +# endif } else { unshare_hek(SvSHARED_HEK_FROM_PV(pvx)); } @@ -4779,6 +4841,7 @@ Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags) sv_dump(sv); } } + } #else if (SvREADONLY(sv)) { if (IN_PERL_RUNTIME) @@ -5299,7 +5362,7 @@ Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how, vtable = (vtable_index == magic_vtable_max) ? NULL : PL_magic_vtables + vtable_index; -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW if (SvIsCOW(sv)) sv_force_normal_flags(sv, 0); #endif @@ -6185,7 +6248,7 @@ Perl_sv_clear(pTHX_ SV *const orig_sv) next_sv = target; } } -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW else if (SvPVX_const(sv) && !(SvTYPE(sv) == SVt_PVIO && !(IoFLAGS(sv) & IOf_FAKE_DIRP))) @@ -6196,12 +6259,23 @@ Perl_sv_clear(pTHX_ SV *const orig_sv) sv_dump(sv); } if (SvLEN(sv)) { +# ifdef PERL_OLD_COPY_ON_WRITE sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv)); +# else + if (CowREFCNT(sv)) { + CowREFCNT(sv)--; + SvLEN_set(sv, 0); + } +# endif } else { unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv))); } - } else if (SvLEN(sv)) { + } +# ifdef PERL_OLD_COPY_ON_WRITE + else +# endif + if (SvLEN(sv)) { Safefree(SvPVX_mutable(sv)); } } @@ -12708,7 +12782,7 @@ Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param) = pv_dup(old_state->re_state_bostr); new_state->re_state_regeol = pv_dup(old_state->re_state_regeol); -#ifdef PERL_OLD_COPY_ON_WRITE +#ifdef PERL_ANY_COW new_state->re_state_nrs = sv_dup(old_state->re_state_nrs, param); #endif |