diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-26 22:52:18 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-26 22:52:18 +0000 |
commit | f0ab9afb53ef594bb6fb8989153fbfba9762816f (patch) | |
tree | a85cb73f7a598badd81595546dcbf6c972e35978 /sv.c | |
parent | 82a7479cc5a6419185bb7d8b5f033dc6e60e261b (diff) | |
download | perl-f0ab9afb53ef594bb6fb8989153fbfba9762816f.tar.gz |
In struct regexp replace the two arrays of I32s accessed via startp
and endp with a single array of struct regexp_paren_pair, which has 2
I32 members. PL_regstartp and PL_regendp are replaced with a pointer
to regexp_paren_pair. The regexp swap structure now only has one
member, so abolish it and store the pointer to the swap array directly.
Hopefully keeping the corresponding start and end adjacent in memory
will help with cache coherency.
p4raw-id: //depot/perl@30769
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -10616,10 +10616,9 @@ Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param) = pv_dup(old_state->re_state_reginput); new_state->re_state_regeol = pv_dup(old_state->re_state_regeol); - new_state->re_state_regstartp - = (I32*) any_dup(old_state->re_state_regstartp, proto_perl); - new_state->re_state_regendp - = (I32*) any_dup(old_state->re_state_regendp, proto_perl); + new_state->re_state_regoffs + = (regexp_paren_pair*) + any_dup(old_state->re_state_regoffs, proto_perl); new_state->re_state_reglastparen = (U32*) any_dup(old_state->re_state_reglastparen, proto_perl); |