]> git.saurik.com Git - apple/javascriptcore.git/blame - runtime/TimeoutChecker.cpp
JavaScriptCore-1097.3.3.tar.gz
[apple/javascriptcore.git] / runtime / TimeoutChecker.cpp
CommitLineData
ba379fdc
A
1/*
2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 * its contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include "config.h"
31#include "TimeoutChecker.h"
32
33#include "CallFrame.h"
34#include "JSGlobalObject.h"
35
f9bf01c6 36#if OS(DARWIN)
ba379fdc 37#include <mach/mach.h>
f9bf01c6 38#elif OS(WINDOWS)
ba379fdc 39#include <windows.h>
f9bf01c6 40#else
6fe7ccc8 41#include <wtf/CurrentTime.h>
ba379fdc
A
42#endif
43
44using namespace std;
45
46namespace JSC {
47
48// Number of ticks before the first timeout check is done.
49static const int ticksUntilFirstCheck = 1024;
50
51// Number of milliseconds between each timeout check.
52static const int intervalBetweenChecks = 1000;
53
54// Returns the time the current thread has spent executing, in milliseconds.
55static inline unsigned getCPUTime()
56{
f9bf01c6 57#if OS(DARWIN)
ba379fdc
A
58 mach_msg_type_number_t infoCount = THREAD_BASIC_INFO_COUNT;
59 thread_basic_info_data_t info;
60
61 // Get thread information
62 mach_port_t threadPort = mach_thread_self();
63 thread_info(threadPort, THREAD_BASIC_INFO, reinterpret_cast<thread_info_t>(&info), &infoCount);
64 mach_port_deallocate(mach_task_self(), threadPort);
65
66 unsigned time = info.user_time.seconds * 1000 + info.user_time.microseconds / 1000;
67 time += info.system_time.seconds * 1000 + info.system_time.microseconds / 1000;
68
69 return time;
f9bf01c6 70#elif OS(WINDOWS)
ba379fdc
A
71 union {
72 FILETIME fileTime;
73 unsigned long long fileTimeAsLong;
74 } userTime, kernelTime;
75
76 // GetThreadTimes won't accept NULL arguments so we pass these even though
77 // they're not used.
78 FILETIME creationTime, exitTime;
79
80 GetThreadTimes(GetCurrentThread(), &creationTime, &exitTime, &kernelTime.fileTime, &userTime.fileTime);
81
82 return userTime.fileTimeAsLong / 10000 + kernelTime.fileTimeAsLong / 10000;
83#else
f9bf01c6 84 // FIXME: We should return the time the current thread has spent executing.
14957cd0
A
85
86 // use a relative time from first call in order to avoid an overflow
87 static double firstTime = currentTime();
88 return static_cast<unsigned> ((currentTime() - firstTime) * 1000);
ba379fdc
A
89#endif
90}
91
92TimeoutChecker::TimeoutChecker()
93 : m_timeoutInterval(0)
94 , m_startCount(0)
95{
96 reset();
97}
98
99void TimeoutChecker::reset()
100{
101 m_ticksUntilNextCheck = ticksUntilFirstCheck;
102 m_timeAtLastCheck = 0;
103 m_timeExecuting = 0;
104}
105
106bool TimeoutChecker::didTimeOut(ExecState* exec)
107{
108 unsigned currentTime = getCPUTime();
109
110 if (!m_timeAtLastCheck) {
111 // Suspicious amount of looping in a script -- start timing it
112 m_timeAtLastCheck = currentTime;
113 return false;
114 }
115
116 unsigned timeDiff = currentTime - m_timeAtLastCheck;
117
118 if (timeDiff == 0)
119 timeDiff = 1;
120
121 m_timeExecuting += timeDiff;
122 m_timeAtLastCheck = currentTime;
123
124 // Adjust the tick threshold so we get the next checkTimeout call in the
125 // interval specified in intervalBetweenChecks.
126 m_ticksUntilNextCheck = static_cast<unsigned>((static_cast<float>(intervalBetweenChecks) / timeDiff) * m_ticksUntilNextCheck);
127 // If the new threshold is 0 reset it to the default threshold. This can happen if the timeDiff is higher than the
128 // preferred script check time interval.
129 if (m_ticksUntilNextCheck == 0)
130 m_ticksUntilNextCheck = ticksUntilFirstCheck;
131
6fe7ccc8 132 if (exec->dynamicGlobalObject()->globalObjectMethodTable()->shouldInterruptScriptBeforeTimeout(exec->dynamicGlobalObject()))
ba379fdc
A
133 return true;
134
135 if (m_timeoutInterval && m_timeExecuting > m_timeoutInterval) {
6fe7ccc8 136 if (exec->dynamicGlobalObject()->globalObjectMethodTable()->shouldInterruptScript(exec->dynamicGlobalObject()))
ba379fdc
A
137 return true;
138
139 reset();
140 }
141
142 return false;
143}
144
145} // namespace JSC