1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
/*
* Copyright (C) 2016-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "SpaceTimeMutatorScheduler.h"
#include "JSCInlines.h"
#include <wtf/TZoneMallocInlines.h>
namespace JSC {
WTF_MAKE_TZONE_ALLOCATED_IMPL(SpaceTimeMutatorScheduler);
// The scheduler will often make decisions based on state that is in flux. It will be fine so
// long as multiple uses of the same value all see the same value. We wouldn't get this for free,
// since our need to modularize the calculation results in a tendency to access the same mutable
// field in Heap multiple times, and to access the current time multiple times.
class SpaceTimeMutatorScheduler::Snapshot {
public:
Snapshot(SpaceTimeMutatorScheduler& scheduler)
{
m_now = MonotonicTime::now();
m_bytesAllocatedThisCycle = scheduler.bytesAllocatedThisCycleImpl();
}
MonotonicTime now() const { return m_now; }
double bytesAllocatedThisCycle() const { return m_bytesAllocatedThisCycle; }
private:
MonotonicTime m_now;
double m_bytesAllocatedThisCycle;
};
SpaceTimeMutatorScheduler::SpaceTimeMutatorScheduler(JSC::Heap& heap)
: m_heap(heap)
, m_period(Seconds::fromMilliseconds(Options::concurrentGCPeriodMS()))
{
}
SpaceTimeMutatorScheduler::~SpaceTimeMutatorScheduler() = default;
MutatorScheduler::State SpaceTimeMutatorScheduler::state() const
{
return m_state;
}
void SpaceTimeMutatorScheduler::beginCollection()
{
RELEASE_ASSERT(m_state == Normal);
m_state = Stopped;
m_startTime = MonotonicTime::now();
m_bytesAllocatedThisCycleAtTheBeginning = bytesAllocatedThisCycleImpl();
m_bytesAllocatedThisCycleAtTheEnd =
Options::concurrentGCMaxHeadroom() *
std::max<double>(m_bytesAllocatedThisCycleAtTheBeginning, m_heap.m_maxEdenSize);
}
void SpaceTimeMutatorScheduler::didStop()
{
RELEASE_ASSERT(m_state == Stopped || m_state == Resumed);
m_state = Stopped;
}
void SpaceTimeMutatorScheduler::willResume()
{
RELEASE_ASSERT(m_state == Stopped || m_state == Resumed);
m_state = Resumed;
}
void SpaceTimeMutatorScheduler::didExecuteConstraints()
{
// If we execute constraints, we want to forgive the GC for all of the time it had stopped the
// world for in this increment. This hack is empirically better than every other heuristic I
// tried, because it just means that the GC is happy to pause for longer when it's dealing
// with things that don't play well with concurrency.
// FIXME: The feels so wrong but benchmarks so good.
// https://bugs.webkit.org/show_bug.cgi?id=166833
m_startTime = MonotonicTime::now();
}
MonotonicTime SpaceTimeMutatorScheduler::timeToStop()
{
switch (m_state) {
case Normal:
return MonotonicTime::infinity();
case Stopped:
return MonotonicTime::now();
case Resumed: {
Snapshot snapshot(*this);
if (!shouldBeResumed(snapshot))
return snapshot.now();
return snapshot.now() - elapsedInPeriod(snapshot) + m_period;
} }
RELEASE_ASSERT_NOT_REACHED();
return MonotonicTime();
}
MonotonicTime SpaceTimeMutatorScheduler::timeToResume()
{
switch (m_state) {
case Normal:
case Resumed:
return MonotonicTime::now();
case Stopped: {
Snapshot snapshot(*this);
if (shouldBeResumed(snapshot))
return snapshot.now();
return snapshot.now() - elapsedInPeriod(snapshot) + m_period * collectorUtilization(snapshot);
} }
RELEASE_ASSERT_NOT_REACHED();
return MonotonicTime();
}
void SpaceTimeMutatorScheduler::log()
{
ASSERT(Options::logGC());
Snapshot snapshot(*this);
dataLog(
"a=", format("%.0lf", bytesSinceBeginningOfCycle(snapshot) / 1024), "kb ",
"hf=", format("%.3lf", headroomFullness(snapshot)), " ",
"mu=", format("%.3lf", mutatorUtilization(snapshot)), " ");
}
void SpaceTimeMutatorScheduler::endCollection()
{
m_state = Normal;
m_startTime = MonotonicTime::now();
}
double SpaceTimeMutatorScheduler::bytesAllocatedThisCycleImpl()
{
return m_heap.totalBytesAllocatedThisCycle();
}
double SpaceTimeMutatorScheduler::bytesSinceBeginningOfCycle(const Snapshot& snapshot)
{
return snapshot.bytesAllocatedThisCycle() - m_bytesAllocatedThisCycleAtTheBeginning;
}
double SpaceTimeMutatorScheduler::maxHeadroom()
{
return m_bytesAllocatedThisCycleAtTheEnd - m_bytesAllocatedThisCycleAtTheBeginning;
}
double SpaceTimeMutatorScheduler::headroomFullness(const Snapshot& snapshot)
{
double result = bytesSinceBeginningOfCycle(snapshot) / maxHeadroom();
// headroomFullness can be NaN and other interesting things if
// bytesAllocatedThisCycleAtTheBeginning is zero. We see that in debug tests. This code
// defends against all floating point dragons.
if (!(result >= 0))
result = 0;
if (!(result <= 1))
result = 1;
return result;
}
double SpaceTimeMutatorScheduler::mutatorUtilization(const Snapshot& snapshot)
{
double mutatorUtilization = 1 - headroomFullness(snapshot);
// Scale the mutator utilization into the permitted window.
mutatorUtilization =
Options::minimumMutatorUtilization() +
mutatorUtilization * (
Options::maximumMutatorUtilization() -
Options::minimumMutatorUtilization());
return mutatorUtilization;
}
double SpaceTimeMutatorScheduler::collectorUtilization(const Snapshot& snapshot)
{
return 1 - mutatorUtilization(snapshot);
}
Seconds SpaceTimeMutatorScheduler::elapsedInPeriod(const Snapshot& snapshot)
{
return (snapshot.now() - m_startTime) % m_period;
}
double SpaceTimeMutatorScheduler::phase(const Snapshot& snapshot)
{
return elapsedInPeriod(snapshot) / m_period;
}
bool SpaceTimeMutatorScheduler::shouldBeResumed(const Snapshot& snapshot)
{
return phase(snapshot) > collectorUtilization(snapshot);
}
} // namespace JSC
|