Another case that was too optimistic. Better use \> or \< rather
than \b if you want your regexp to be handled efficiently.
* src/regex-emacs.c (mutually_exclusive_aux) <wordbound>: Cancel optimization.
* test/src/regex-emacs-tests.el (regexp-tests-backtrack-optimization):
New test.
return ((re_opcode_t) *p1 == notsyntaxspec && p1[1] == p2[1]);
case wordbound:
+ /* FIXME: This optimization seems correct after the first iteration
+ of the loop, but not for the very first :-(
+ IOW we'd need to pull out the first iteration and do:
+
+ syntaxspec w
+ on_failure_keep_string_jump end
+ loop:
+ syntaxspec w
+ goto loop
+ end:
+ wordbound
+
return (((re_opcode_t) *p1 == notsyntaxspec
- || (re_opcode_t) *p1 == syntaxspec)
- && p1[1] == Sword);
+ || (re_opcode_t) *p1 == syntaxspec)
+ && p1[1] == Sword); */
+ return false;
case categoryspec:
return ((re_opcode_t) *p1 == notcategoryspec && p1[1] == p2[1]);
;; Regression check for overly optimistic optimization.
(should (eq 0 (string-match "\\(ca*\\|ab\\)+d" "cabd")))
(should (string-match "\\(aa*\\|b\\)*c" "ababc"))
+ (should (string-match " \\sw*\\bfoo" " foo"))
))
(ert-deftest regexp-tests-zero-width-assertion-repetition ()