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

paroga at webkit.org paroga at webkit.org
Wed Dec 22 16:24:55 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1bd4643f34678836ed0f3ff33661dd34e93bcb61
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 23 10:07:20 2010 +0000

    2010-11-23  Patrick Gansterer  <paroga at webkit.org>
    
            Reviewed by Sam Weinig.
    
            Use WTF::StringHasher directly in JavaScriptCore
            https://bugs.webkit.org/show_bug.cgi?id=49893
    
            * profiler/CallIdentifier.h:
            (JSC::CallIdentifier::Hash::hash):
            * runtime/Identifier.cpp:
            (JSC::IdentifierCStringTranslator::hash):
            (JSC::IdentifierUCharBufferTranslator::hash):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72592 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index a67c386..e2c87b9 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-11-23  Patrick Gansterer  <paroga at webkit.org>
+
+        Reviewed by Sam Weinig.
+
+        Use WTF::StringHasher directly in JavaScriptCore
+        https://bugs.webkit.org/show_bug.cgi?id=49893
+
+        * profiler/CallIdentifier.h:
+        (JSC::CallIdentifier::Hash::hash):
+        * runtime/Identifier.cpp:
+        (JSC::IdentifierCStringTranslator::hash):
+        (JSC::IdentifierUCharBufferTranslator::hash):
+
 2010-11-22  Patrick Gansterer  <paroga at webkit.org>
 
         Reviewed by Sam Weinig.
diff --git a/JavaScriptCore/profiler/CallIdentifier.h b/JavaScriptCore/profiler/CallIdentifier.h
index 5487209..76c1470 100644
--- a/JavaScriptCore/profiler/CallIdentifier.h
+++ b/JavaScriptCore/profiler/CallIdentifier.h
@@ -62,7 +62,7 @@ namespace JSC {
                     key.m_url.impl()->hash(),
                     key.m_lineNumber
                 };
-                return StringImpl::computeHash(reinterpret_cast<char*>(hashCodes), sizeof(hashCodes));
+                return WTF::StringHasher::createBlobHash<sizeof(hashCodes)>(hashCodes);
             }
 
             static bool equal(const CallIdentifier& a, const CallIdentifier& b) { return a == b; }
diff --git a/JavaScriptCore/runtime/Identifier.cpp b/JavaScriptCore/runtime/Identifier.cpp
index d4069ba..28cfd0a 100644
--- a/JavaScriptCore/runtime/Identifier.cpp
+++ b/JavaScriptCore/runtime/Identifier.cpp
@@ -89,7 +89,7 @@ bool Identifier::equal(const StringImpl* r, const UChar* s, unsigned length)
 struct IdentifierCStringTranslator {
     static unsigned hash(const char* c)
     {
-        return StringImpl::computeHash(c);
+        return WTF::StringHasher::createHash<char>(c);
     }
 
     static bool equal(StringImpl* r, const char* s)
@@ -149,7 +149,7 @@ struct UCharBuffer {
 struct IdentifierUCharBufferTranslator {
     static unsigned hash(const UCharBuffer& buf)
     {
-        return StringImpl::computeHash(buf.s, buf.length);
+        return WTF::StringHasher::createHash<UChar>(buf.s, buf.length);
     }
 
     static bool equal(StringImpl* str, const UCharBuffer& buf)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list