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

Side by Side Diff: Source/platform/ThreadTimers.cpp

Issue 364873002: Introduce a basic Blink Scheduler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Build fix for old gcc. Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "platform/ThreadTimers.h" 28 #include "platform/ThreadTimers.h"
29 29
30 #include "platform/PlatformThreadData.h"
30 #include "platform/SharedTimer.h" 31 #include "platform/SharedTimer.h"
31 #include "platform/PlatformThreadData.h"
32 #include "platform/Timer.h" 32 #include "platform/Timer.h"
33 #include "platform/TraceEvent.h" 33 #include "platform/TraceEvent.h"
34 #include "platform/scheduler/Scheduler.h"
34 #include "wtf/CurrentTime.h" 35 #include "wtf/CurrentTime.h"
35 #include "wtf/MainThread.h" 36 #include "wtf/MainThread.h"
36 37
37 using namespace std; 38 using namespace std;
38 39
39 namespace WebCore { 40 namespace WebCore {
40 41
41 // Fire timers for this length of time, and then quit to let the run loop proces s user input events. 42 // Fire timers for this length of time, and then quit to let the run loop proces s user input events.
42 // 100ms is about a perceptable delay in UI, so use a half of that as a threshol d. 43 // 100ms is about a perceptable delay in UI, so use a half of that as a threshol d.
43 // This is to prevent UI freeze when there are too many timers or machine perfor mance is low. 44 // This is to prevent UI freeze when there are too many timers or machine perfor mance is low.
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 timer.setNextFireTime(interval ? fireTime + interval : 0); 132 timer.setNextFireTime(interval ? fireTime + interval : 0);
132 133
133 TRACE_EVENT2("blink", "ThreadTimers::sharedTimerFiredInternal", 134 TRACE_EVENT2("blink", "ThreadTimers::sharedTimerFiredInternal",
134 "src_file", timer.location().fileName(), 135 "src_file", timer.location().fileName(),
135 "src_func", timer.location().functionName()); 136 "src_func", timer.location().functionName());
136 137
137 // Once the timer has been fired, it may be deleted, so do nothing else with it after this point. 138 // Once the timer has been fired, it may be deleted, so do nothing else with it after this point.
138 timer.fired(); 139 timer.fired();
139 140
140 // Catch the case where the timer asked timers to fire in a nested event loop, or we are over time limit. 141 // Catch the case where the timer asked timers to fire in a nested event loop, or we are over time limit.
141 if (!m_firingTimers || timeToQuit < monotonicallyIncreasingTime()) 142 if (!m_firingTimers || timeToQuit < monotonicallyIncreasingTime() || (is MainThread() && Scheduler::current()->shouldYieldForHighPriorityWork()))
eseidel 2014/07/15 15:59:11 Do we ever have a sharedTimer not on the main thre
Sami 2014/07/15 19:20:05 We don't have a shared timer there, but can have a
142 break; 143 break;
143 } 144 }
144 145
145 m_firingTimers = false; 146 m_firingTimers = false;
146 147
147 updateSharedTimer(); 148 updateSharedTimer();
148 } 149 }
149 150
150 void ThreadTimers::fireTimersInNestedEventLoop() 151 void ThreadTimers::fireTimersInNestedEventLoop()
151 { 152 {
152 // Reset the reentrancy guard so the timers can fire again. 153 // Reset the reentrancy guard so the timers can fire again.
153 m_firingTimers = false; 154 m_firingTimers = false;
154 updateSharedTimer(); 155 updateSharedTimer();
155 } 156 }
156 157
157 } // namespace WebCore 158 } // namespace WebCore
158 159
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698