[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:08:17 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ffa52afb111b4a144db3f4e8677fffe7660f8be4
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 28 11:17:18 2010 +0000

    2010-10-28  Peter Varga  <pvarga at inf.u-szeged.hu>
    
            Reviewed by Csaba Osztrogonác.
    
            resetAssertionMatches() is an unused function in YARR Interpreter
            https://bugs.webkit.org/show_bug.cgi?id=48503
    
            The resetAssertionMatches() function is removed from YARR Interpreter
            because it's never called.
    
            * yarr/RegexInterpreter.cpp:
            (JSC::Yarr::Interpreter::resetMatches):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70764 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 620f6d8..bd71bcc 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-10-28  Peter Varga  <pvarga at inf.u-szeged.hu>
+
+        Reviewed by Csaba Osztrogonác.
+
+        resetAssertionMatches() is an unused function in YARR Interpreter
+        https://bugs.webkit.org/show_bug.cgi?id=48503
+
+        The resetAssertionMatches() function is removed from YARR Interpreter
+        because it's never called.
+
+        * yarr/RegexInterpreter.cpp:
+        (JSC::Yarr::Interpreter::resetMatches):
+
 2010-10-28  Zoltan Herczeg  <zherczeg at webkit.org>
 
         Reviewed by Andreas Kling.
diff --git a/JavaScriptCore/yarr/RegexInterpreter.cpp b/JavaScriptCore/yarr/RegexInterpreter.cpp
index 33f3c89..ec96636 100644
--- a/JavaScriptCore/yarr/RegexInterpreter.cpp
+++ b/JavaScriptCore/yarr/RegexInterpreter.cpp
@@ -591,13 +591,6 @@ public:
         unsigned count = term.atom.parenthesesDisjunction->m_numSubpatterns;
         context->restoreOutput(output, firstSubpatternId, count);
     }
-    void resetAssertionMatches(ByteTerm& term)
-    {
-        unsigned firstSubpatternId = term.atom.subpatternId;
-        unsigned count = term.atom.parenthesesDisjunction->m_numSubpatterns;
-        for (unsigned i = 0; i < (count << 1); ++i)
-            output[(firstSubpatternId << 1) + i] = -1;
-    }
     bool parenthesesDoBacktrack(ByteTerm& term, BackTrackInfoParentheses* backTrack)
     {
         while (backTrack->matchAmount) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list