[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:06:39 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit db3db8e9cc1f67f66cfcd5bb86f7b617ef74eead
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Nov 22 09:47:59 2002 +0000
- reduce cell size to 56 bytes from 64, now that nearly all
objects fit in that size. .5% speed gain and probably some
footprint gain.
* kjs/collector.cpp: Change CELL_SIZE from 64 to 56.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2825 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index fb72c15..926cd83 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,11 @@
+2002-11-22 Maciej Stachowiak <mjs at apple.com>
+
+ - reduce cell size to 56 bytes from 64, now that nearly all
+ objects fit in that size. .5% speed gain and probably some
+ footprint gain.
+
+ * kjs/collector.cpp: Change CELL_SIZE from 64 to 56.
+
2002-11-22 Darin Adler <darin at apple.com>
- change ScopeChain to be a singly linked list shares tails, gives 11% gain on iBench
@@ -20,7 +28,7 @@
2002-11-22 Maciej Stachowiak <mjs at apple.com>
- - a simple change for .5% gain on ibench - instead of unmarking
+ - a simple change for .4% gain on ibench - instead of unmarking
all objects at the start of collection, instead unmark as part of
the sweep phase
diff --git a/JavaScriptCore/ChangeLog-2002-12-03 b/JavaScriptCore/ChangeLog-2002-12-03
index fb72c15..926cd83 100644
--- a/JavaScriptCore/ChangeLog-2002-12-03
+++ b/JavaScriptCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-11-22 Maciej Stachowiak <mjs at apple.com>
+
+ - reduce cell size to 56 bytes from 64, now that nearly all
+ objects fit in that size. .5% speed gain and probably some
+ footprint gain.
+
+ * kjs/collector.cpp: Change CELL_SIZE from 64 to 56.
+
2002-11-22 Darin Adler <darin at apple.com>
- change ScopeChain to be a singly linked list shares tails, gives 11% gain on iBench
@@ -20,7 +28,7 @@
2002-11-22 Maciej Stachowiak <mjs at apple.com>
- - a simple change for .5% gain on ibench - instead of unmarking
+ - a simple change for .4% gain on ibench - instead of unmarking
all objects at the start of collection, instead unmark as part of
the sweep phase
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index fb72c15..926cd83 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-11-22 Maciej Stachowiak <mjs at apple.com>
+
+ - reduce cell size to 56 bytes from 64, now that nearly all
+ objects fit in that size. .5% speed gain and probably some
+ footprint gain.
+
+ * kjs/collector.cpp: Change CELL_SIZE from 64 to 56.
+
2002-11-22 Darin Adler <darin at apple.com>
- change ScopeChain to be a singly linked list shares tails, gives 11% gain on iBench
@@ -20,7 +28,7 @@
2002-11-22 Maciej Stachowiak <mjs at apple.com>
- - a simple change for .5% gain on ibench - instead of unmarking
+ - a simple change for .4% gain on ibench - instead of unmarking
all objects at the start of collection, instead unmark as part of
the sweep phase
diff --git a/JavaScriptCore/kjs/collector.cpp b/JavaScriptCore/kjs/collector.cpp
index ba1b2ea..8e17c40 100644
--- a/JavaScriptCore/kjs/collector.cpp
+++ b/JavaScriptCore/kjs/collector.cpp
@@ -33,7 +33,7 @@
using namespace KJS;
// tunable parameters
-static const int CELL_SIZE = 64;
+static const int CELL_SIZE = 56;
static const int BLOCK_SIZE = (4 * 4096);
static const int SPARE_EMPTY_BLOCKS = 1;
static const int MIN_ARRAY_SIZE = 14;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list