Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(544)

Unified Diff: third_party/WebKit/Source/web/tests/TimerPerfTest.cpp

Issue 2319053004: [Reland] Make canceling Timers fast. (Closed)
Patch Set: Rebased Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/public/platform/WebTaskRunner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/TimerPerfTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/TimerPerfTest.cpp b/third_party/WebKit/Source/web/tests/TimerPerfTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..6babcbf2d41737ef0fe5f508d2d960b60ff9c1f5
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/TimerPerfTest.cpp
@@ -0,0 +1,101 @@
+
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/Timer.h"
+
+#include "platform/testing/UnitTestHelpers.h"
+#include "public/platform/Platform.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "wtf/PtrUtil.h"
+#include "wtf/Vector.h"
+
+namespace blink {
+
+class TimerPerfTest : public ::testing::Test {
+public:
+ void nopTask(TimerBase*)
+ {
+ }
+
+ void recordStartRunTime(TimerBase*)
+ {
+ m_runStart = base::ThreadTicks::Now();
+ }
+
+ void recordEndRunTime(TimerBase*)
+ {
+ m_runEnd = base::ThreadTicks::Now();
+ base::MessageLoop::current()->QuitNow();
+ }
+
+ base::ThreadTicks m_runStart;
+ base::ThreadTicks m_runEnd;
+};
+
+TEST_F(TimerPerfTest, PostAndRunTimers)
+{
+ const int numIterations = 10000;
+ Vector<std::unique_ptr<Timer<TimerPerfTest>>> timers(numIterations);
+ for (int i = 0; i < numIterations; i++) {
+ timers[i].reset(new Timer<TimerPerfTest>(this, &TimerPerfTest::nopTask));
+ }
+
+ Timer<TimerPerfTest> measureRunStart(this, &TimerPerfTest::recordStartRunTime);
+ Timer<TimerPerfTest> measureRunEnd(this, &TimerPerfTest::recordEndRunTime);
+
+ measureRunStart.startOneShot(0.0, BLINK_FROM_HERE);
+ base::ThreadTicks postStart = base::ThreadTicks::Now();
+ for (int i = 0; i < numIterations; i++) {
+ timers[i]->startOneShot(0.0, BLINK_FROM_HERE);
+ }
+ base::ThreadTicks postEnd = base::ThreadTicks::Now();
+ measureRunEnd.startOneShot(0.0, BLINK_FROM_HERE);
+
+ testing::enterRunLoop();
+
+ double postingTime = (postEnd - postStart).InMicroseconds();
+ double postingTimeUsPerCall = postingTime / static_cast<double>(numIterations);
+ LOG(INFO) << "TimerBase::startOneShot cost (us/call) " << postingTimeUsPerCall << " (total " << postingTime << " us)";
+ LOG(INFO) << "Time to run " << numIterations << " trivial tasks (us) " << (m_runEnd - m_runStart).InMicroseconds();
+}
+
+TEST_F(TimerPerfTest, PostThenCancelTenThousandTimers)
+{
+ const int numIterations = 10000;
+ Vector<std::unique_ptr<Timer<TimerPerfTest>>> timers(numIterations);
+ for (int i = 0; i < numIterations; i++) {
+ timers[i].reset(new Timer<TimerPerfTest>(this, &TimerPerfTest::nopTask));
+ }
+
+ Timer<TimerPerfTest> measureRunStart(this, &TimerPerfTest::recordStartRunTime);
+ Timer<TimerPerfTest> measureRunEnd(this, &TimerPerfTest::recordEndRunTime);
+
+ measureRunStart.startOneShot(0.0, BLINK_FROM_HERE);
+ base::ThreadTicks postStart = base::ThreadTicks::Now();
+ for (int i = 0; i < numIterations; i++) {
+ timers[i]->startOneShot(0.0, BLINK_FROM_HERE);
+ }
+ base::ThreadTicks postEnd = base::ThreadTicks::Now();
+ measureRunEnd.startOneShot(0.0, BLINK_FROM_HERE);
+
+ base::ThreadTicks cancelStart = base::ThreadTicks::Now();
+ for (int i = 0; i < numIterations; i++) {
+ timers[i]->stop();
+ }
+ base::ThreadTicks cancelEnd = base::ThreadTicks::Now();
+
+ testing::enterRunLoop();
+
+ double postingTime = (postEnd - postStart).InMicroseconds();
+ double postingTimeUsPerCall = postingTime / static_cast<double>(numIterations);
+ LOG(INFO) << "TimerBase::startOneShot cost (us/call) " << postingTimeUsPerCall << " (total " << postingTime << " us)";
+
+ double cancelTime = (cancelEnd - cancelStart).InMicroseconds();
+ double cancelTimeUsPerCall = cancelTime / static_cast<double>(numIterations);
+ LOG(INFO) << "TimerBase::stop cost (us/call) " << cancelTimeUsPerCall << " (total " << cancelTime << " us)";
+ LOG(INFO) << "Time to run " << numIterations << " canceled tasks (us) " << (m_runEnd - m_runStart).InMicroseconds();
+}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/public/platform/WebTaskRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698