Title: [233646] trunk/Source/WTF
Revision
233646
Author
[email protected]
Date
2018-07-09 10:54:23 -0700 (Mon, 09 Jul 2018)

Log Message

[WTF] Annotate RunLoop::Timer fast-allocated
https://bugs.webkit.org/show_bug.cgi?id=187473

Reviewed by Saam Barati.

It is allocated by std::unique_ptr for MemoryPressureHandler. And it uses system malloc now.

* wtf/RunLoop.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (233645 => 233646)


--- trunk/Source/WTF/ChangeLog	2018-07-09 17:09:43 UTC (rev 233645)
+++ trunk/Source/WTF/ChangeLog	2018-07-09 17:54:23 UTC (rev 233646)
@@ -1,3 +1,14 @@
+2018-07-09  Yusuke Suzuki  <[email protected]>
+
+        [WTF] Annotate RunLoop::Timer fast-allocated
+        https://bugs.webkit.org/show_bug.cgi?id=187473
+
+        Reviewed by Saam Barati.
+
+        It is allocated by std::unique_ptr for MemoryPressureHandler. And it uses system malloc now.
+
+        * wtf/RunLoop.h:
+
 2018-07-08  Yusuke Suzuki  <[email protected]>
 
         [JSC] Optimize padding of UnlinkedCodeBlock to shrink

Modified: trunk/Source/WTF/wtf/RunLoop.h (233645 => 233646)


--- trunk/Source/WTF/wtf/RunLoop.h	2018-07-09 17:09:43 UTC (rev 233645)
+++ trunk/Source/WTF/wtf/RunLoop.h	2018-07-09 17:54:23 UTC (rev 233646)
@@ -79,6 +79,7 @@
 #endif
 
     class TimerBase {
+        WTF_MAKE_FAST_ALLOCATED;
         friend class RunLoop;
     public:
         WTF_EXPORT_PRIVATE explicit TimerBase(RunLoop&);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to