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

ggaren at apple.com ggaren at apple.com
Wed Dec 22 18:44:09 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 497420e66cfe1811c979637bfcbbfdb721219bb0
Author: ggaren at apple.com <ggaren at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 16 21:36:33 2010 +0000

    https://bugs.webkit.org/show_bug.cgi?id=51166
    ExecutableAllocator::cacheFlush should call sys_cache_control
    
    Patch by Pratik Solanki <psolanki at apple.com> on 2010-12-16
    Reviewed by Geoffrey Garen.
    
    * jit/ExecutableAllocator.h:
    (JSC::ExecutableAllocator::cacheFlush): Use the more correct and forward looking API -
    sys_cache_control(kCacheFunctionPrepareForExecution,...).
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74210 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index c205af6..3e13765 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-12-16  Pratik Solanki  <psolanki at apple.com>
+
+        Reviewed by Geoffrey Garen.
+
+        https://bugs.webkit.org/show_bug.cgi?id=51166
+        ExecutableAllocator::cacheFlush should call sys_cache_control
+
+        * jit/ExecutableAllocator.h:
+        (JSC::ExecutableAllocator::cacheFlush): Use the more correct and forward looking API -
+        sys_cache_control(kCacheFunctionPrepareForExecution,...).
+
 2010-12-16  Ariya Hidayat  <ariya at sencha.com>
 
         Reviewed by Andreas Kling.
diff --git a/JavaScriptCore/jit/ExecutableAllocator.h b/JavaScriptCore/jit/ExecutableAllocator.h
index be20c73..b6debe4 100644
--- a/JavaScriptCore/jit/ExecutableAllocator.h
+++ b/JavaScriptCore/jit/ExecutableAllocator.h
@@ -255,8 +255,7 @@ public:
 #elif CPU(ARM_THUMB2) && OS(IOS)
     static void cacheFlush(void* code, size_t size)
     {
-        sys_dcache_flush(code, size);
-        sys_icache_invalidate(code, size);
+        sys_cache_control(kCacheFunctionPrepareForExecution, code, size);
     }
 #elif CPU(ARM_THUMB2) && OS(LINUX)
     static void cacheFlush(void* code, size_t size)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list