Title: [173540] trunk/Source/WTF
Revision
173540
Author
[email protected]
Date
2014-09-11 14:45:45 -0700 (Thu, 11 Sep 2014)

Log Message

Do the bmalloc.
https://bugs.webkit.org/show_bug.cgi?id=132629

Reviewed by Michael Saboff.

64-bit only for now, just to try it out.

* wtf/FastMalloc.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (173539 => 173540)


--- trunk/Source/WTF/ChangeLog	2014-09-11 21:18:54 UTC (rev 173539)
+++ trunk/Source/WTF/ChangeLog	2014-09-11 21:45:45 UTC (rev 173540)
@@ -1,3 +1,14 @@
+2014-09-11  Geoffrey Garen  <[email protected]>
+
+        Do the bmalloc.
+        https://bugs.webkit.org/show_bug.cgi?id=132629
+
+        Reviewed by Michael Saboff.
+
+        64-bit only for now, just to try it out.
+
+        * wtf/FastMalloc.cpp:
+
 2014-09-09  Benjamin Poulain  <[email protected]>
 
         Disable the "unreachable-code" warning

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (173539 => 173540)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2014-09-11 21:18:54 UTC (rev 173539)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2014-09-11 21:45:45 UTC (rev 173540)
@@ -101,6 +101,10 @@
 #endif
 #endif
 
+#if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))
+#define USE_BMALLOC 1
+#endif
+
 #if !(defined(USE_SYSTEM_MALLOC) && USE_SYSTEM_MALLOC) && defined(NDEBUG)
 #define FORCE_SYSTEM_MALLOC 0
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to