[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

ggaren at apple.com ggaren at apple.com
Sun Feb 20 23:03:38 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 81cc42f5959b6dcbae9bce1d9d02abae8e1f5c57
Author: ggaren at apple.com <ggaren at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jan 15 23:48:46 2011 +0000

    <rdar://problem/8870429> Shrink the executable pool on embedded devices
    
    Reviewed by Sam Weinig.
    
    * jit/ExecutableAllocatorFixedVMPool.cpp: Dropped the pool size from 32MB
    to 16MB.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75886 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 07113bf..668c52d 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2011-01-15  Geoffrey Garen  <ggaren at apple.com>
+
+        Reviewed by Sam Weinig.
+
+        <rdar://problem/8870429> Shrink the executable pool on embedded devices
+
+        * jit/ExecutableAllocatorFixedVMPool.cpp: Dropped the pool size from 32MB
+        to 16MB.
+
 2011-01-15  Oliver Hunt  <oliver at apple.com>
 
         Reviewed by Maciej Stachowiak.
diff --git a/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp b/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
index 45d8297..4b4d2d9 100644
--- a/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
+++ b/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
@@ -45,7 +45,7 @@
 static const unsigned vmPoolSizeGeneric = 2u * 1024u * 1024u * 1024u; // 2Gb
 static const unsigned coalesceLimitGeneric = 16u * 1024u * 1024u; // 16Mb
 
-static const unsigned vmPoolSizeEmbedded = 32u * 1024u * 1024u; // 32Mb
+static const unsigned vmPoolSizeEmbedded = 16u * 1024u * 1024u; // 16Mb
 static const unsigned coalesceLimitEmbedded = 4u * 1024u * 1024u; // 4Mb
 
 #if CPU(X86_64) && !OS(LINUX)
@@ -59,7 +59,7 @@ static unsigned vmPoolSize = vmPoolSizeGeneric; // 2Gb
 static unsigned coalesceLimit = coalesceLimitGeneric; // 16Mb
 #else
     // These limits are hopefully sensible on embedded platforms.
-static unsigned vmPoolSize = vmPoolSizeEmbedded; // 32Mb
+static unsigned vmPoolSize = vmPoolSizeEmbedded; // 16Mb
 static unsigned coalesceLimit = coalesceLimitEmbedded; // 4Mb
 #endif
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list