Title: [183771] trunk/Source/WTF
Revision
183771
Author
[email protected]
Date
2015-05-04 13:44:29 -0700 (Mon, 04 May 2015)

Log Message

Unreviewed, rolling out r183661.
https://bugs.webkit.org/show_bug.cgi?id=144594

Caused ~3.5MB regression on membuster(!) (Requested by kling_
on #webkit).

Reverted changeset:

"Decrease minimum Vector size."
https://bugs.webkit.org/show_bug.cgi?id=144453
http://trac.webkit.org/changeset/183661

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (183770 => 183771)


--- trunk/Source/WTF/ChangeLog	2015-05-04 20:42:41 UTC (rev 183770)
+++ trunk/Source/WTF/ChangeLog	2015-05-04 20:44:29 UTC (rev 183771)
@@ -1,3 +1,17 @@
+2015-05-04  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r183661.
+        https://bugs.webkit.org/show_bug.cgi?id=144594
+
+        Caused ~3.5MB regression on membuster(!) (Requested by kling_
+        on #webkit).
+
+        Reverted changeset:
+
+        "Decrease minimum Vector size."
+        https://bugs.webkit.org/show_bug.cgi?id=144453
+        http://trac.webkit.org/changeset/183661
+
 2015-05-04  Zan Dobersek  <[email protected]>
 
         [WTF] Remove Functional.h inclusions

Modified: trunk/Source/WTF/wtf/Vector.h (183770 => 183771)


--- trunk/Source/WTF/wtf/Vector.h	2015-05-04 20:42:41 UTC (rev 183770)
+++ trunk/Source/WTF/wtf/Vector.h	2015-05-04 20:44:29 UTC (rev 183771)
@@ -581,7 +581,7 @@
     }
 };
 
-template<typename T, size_t inlineCapacity = 0, typename OverflowHandler = CrashOnOverflow, size_t minCapacity = 4>
+template<typename T, size_t inlineCapacity = 0, typename OverflowHandler = CrashOnOverflow, size_t minCapacity = 16>
 class Vector : private VectorBuffer<T, inlineCapacity> {
     WTF_MAKE_FAST_ALLOCATED;
 private:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to