From: Rafael Garcia-Suarez Date: Mon, 21 Mar 2005 14:58:21 +0000 (+0000) Subject: Resubmit change #24053. X-Git-Tag: accepted/trunk/20130322.191538~21066 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c689e61c7cf072958f1f0f7838c3e6c7dc5e21d5;p=platform%2Fupstream%2Fperl.git Resubmit change #24053. p4raw-link: @24053 on //depot/perl: db70e37e387af55c0d76b7ec65cedd21b2364520 p4raw-id: //depot/perl@24055 --- diff --git a/regexec.c b/regexec.c index 62c48dd..9efb479 100644 --- a/regexec.c +++ b/regexec.c @@ -98,7 +98,6 @@ #define RF_warned 2 /* warned about big count? */ #define RF_evaled 4 /* Did an EVAL with setting? */ #define RF_utf8 8 /* String contains multibyte chars? */ -#define RF_false 16 /* odd number of nested negatives */ #define UTF ((PL_reg_flags & RF_utf8) != 0) @@ -2265,6 +2264,50 @@ typedef union re_unwind_t { #define sayNO_SILENT goto do_no #define saySAME(x) if (x) goto yes; else goto no +#define POSCACHE_SUCCESS 0 /* caching success rather than failure */ +#define POSCACHE_SEEN 1 /* we know what we're caching */ +#define POSCACHE_START 2 /* the real cache: this bit maps to pos 0 */ +#define CACHEsayYES STMT_START { \ + if (PL_reg_poscache) { \ + if (!(PL_reg_poscache[0] & (1<flags & 0xf) - 1 + POSCACHE_START + o * (scan->flags>>4); \ + b = o % 8; \ + o /= 8; \ + DEBUG_r( \ + PerlIO_printf(Perl_debug_log, \ + "%*s (remove success from failure cache)\n", \ + REPORT_CODE_OFF+PL_regindent*2, "") \ + ); \ + PL_reg_poscache[o] &= ~(1<flags & 0xf) - 1 + POSCACHE_START + o * (scan->flags>>4); \ + b = o % 8; \ + o /= 8; \ + DEBUG_r( \ + PerlIO_printf(Perl_debug_log, \ + "%*s (remove failure from success cache)\n", \ + REPORT_CODE_OFF+PL_regindent*2, "") \ + ); \ + PL_reg_poscache[o] &= ~(1<flags & 0xf) - 1 + o * (scan->flags>>4); + o = (scan->flags & 0xf) - 1 + POSCACHE_START + o * (scan->flags>>4); b = o % 8; o /= 8; if (PL_reg_poscache[o] & (1<next)) { regcpblow(cp); - sayYES; /* All done. */ + CACHEsayYES; /* All done. */ } REGCP_UNWIND(lastcp); regcppop(); @@ -3566,7 +3611,7 @@ S_regmatch(pTHX_ regnode *prog) "Complex regular subexpression recursion", REG_INFTY - 1); } - sayNO; + CACHEsayNO; } DEBUG_EXECUTE_r( @@ -3582,13 +3627,13 @@ S_regmatch(pTHX_ regnode *prog) REGCP_SET(lastcp); if (regmatch(cc->scan)) { regcpblow(cp); - sayYES; + CACHEsayYES; } REGCP_UNWIND(lastcp); regcppop(); cc->cur = n - 1; cc->lastloc = lastloc; - sayNO; + CACHEsayNO; } /* Prefer scan over next for maximal matching. */ @@ -3600,7 +3645,7 @@ S_regmatch(pTHX_ regnode *prog) REGCP_SET(lastcp); if (regmatch(cc->scan)) { regcpblow(cp); - sayYES; + CACHEsayYES; } REGCP_UNWIND(lastcp); regcppop(); /* Restore some previous $s? */ @@ -3624,13 +3669,13 @@ S_regmatch(pTHX_ regnode *prog) if (PL_regcc) ln = PL_regcc->cur; if (regmatch(cc->next)) - sayYES; + CACHEsayYES; if (PL_regcc) PL_regcc->cur = ln; PL_regcc = cc; cc->cur = n - 1; cc->lastloc = lastloc; - sayNO; + CACHEsayNO; } /* NOT REACHED */ case BRANCHJ: @@ -4167,7 +4212,6 @@ S_regmatch(pTHX_ regnode *prog) } else PL_reginput = locinput; - PL_reg_flags ^= RF_false; goto do_ifmatch; case IFMATCH: n = 1; @@ -4183,8 +4227,6 @@ S_regmatch(pTHX_ regnode *prog) do_ifmatch: inner = NEXTOPER(NEXTOPER(scan)); if (regmatch(inner) != n) { - if (n == 0) - PL_reg_flags ^= RF_false; say_no: if (logical) { logical = 0; @@ -4194,8 +4236,6 @@ S_regmatch(pTHX_ regnode *prog) else sayNO; } - if (n == 0) - PL_reg_flags ^= RF_false; say_yes: if (logical) { logical = 0; diff --git a/t/op/re_tests b/t/op/re_tests index b7fbf2d..28deb0f 100644 --- a/t/op/re_tests +++ b/t/op/re_tests @@ -956,3 +956,5 @@ x(?# x c - Sequence (?#... not terminated (a|aa|aaa|aaaa|aaaaa|aaaaaa)(b|c) aaaaaaaaaaaaaaab y $1$2 aaaaaab (a|aa|aaa|aaaa|aaaaa|aaaaaa)(??{$1&&""})(b|c) aaaaaaaaaaaaaaab y $1$2 aaaaaab (a|aa|aaa|aaaa|aaaaa|aaaaaa)(??{$1&&"foo"})(b|c) aaaaaaaaaaaaaaab n - - +^(a*?)(?!(aa|aaaa)*$) aaaaaaaaaaaaaaaaaaaa y $1 a # [perl #34195] +^(a*?)(?!(aa|aaaa)*$)(?=a\z) aaaaaaaa y $1 aaaaaaa