Title: [163330] trunk/Source/WTF
Revision
163330
Author
[email protected]
Date
2014-02-03 15:12:11 -0800 (Mon, 03 Feb 2014)

Log Message

Turn GenGC on
https://bugs.webkit.org/show_bug.cgi?id=128109

Reviewed by Oliver Hunt.

* wtf/Platform.h: Initially it will only be enabled for X86-64.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (163329 => 163330)


--- trunk/Source/WTF/ChangeLog	2014-02-03 23:10:31 UTC (rev 163329)
+++ trunk/Source/WTF/ChangeLog	2014-02-03 23:12:11 UTC (rev 163330)
@@ -1,3 +1,12 @@
+2014-02-03  Mark Hahnenberg  <[email protected]>
+
+        Turn GenGC on
+        https://bugs.webkit.org/show_bug.cgi?id=128109
+
+        Reviewed by Oliver Hunt.
+
+        * wtf/Platform.h: Initially it will only be enabled for X86-64.
+
 2014-02-03  Anders Carlsson  <[email protected]>
 
         Consolidate StringImpl tail handling into two functions

Modified: trunk/Source/WTF/wtf/Platform.h (163329 => 163330)


--- trunk/Source/WTF/wtf/Platform.h	2014-02-03 23:10:31 UTC (rev 163329)
+++ trunk/Source/WTF/wtf/Platform.h	2014-02-03 23:12:11 UTC (rev 163330)
@@ -755,8 +755,12 @@
 
 /* Generational collector for JSC */
 #if !defined(ENABLE_GGC)
+#if CPU(X86_64)
+#define ENABLE_GGC 1
+#else
 #define ENABLE_GGC 0
-#endif
+#endif // CPU(X86_64)
+#endif // !defined(ENABLE_GGC)
 
 /* Counts uses of write barriers using sampling counters. Be sure to also
    set ENABLE_SAMPLING_COUNTERS to 1. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to