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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
/*
* Copyright (C) 2016-2023 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 "JITWorklist.h"
#if ENABLE(JIT)
#include "DeferGCInlines.h"
#include "HeapInlines.h"
#include "JITSafepoint.h"
#include "JITWorklistThread.h"
#include "SlotVisitorInlines.h"
#include "VMInlines.h"
#include <wtf/CompilationThread.h>
#include <wtf/TZoneMallocInlines.h>
namespace JSC {
WTF_MAKE_TZONE_ALLOCATED_IMPL(JITWorklist);
JITWorklist::JITWorklist()
: m_lock(Box<Lock>::create())
, m_planEnqueued(AutomaticThreadCondition::create())
{
m_maximumNumberOfConcurrentCompilationsPerTier = {
Options::numberOfWorklistThreads(),
Options::numberOfDFGCompilerThreads(),
Options::numberOfFTLCompilerThreads(),
};
Locker locker { *m_lock };
for (unsigned i = 0; i < Options::numberOfWorklistThreads(); ++i)
m_threads.append(*new JITWorklistThread(locker, *this));
}
JITWorklist::~JITWorklist()
{
UNREACHABLE_FOR_PLATFORM();
}
static JITWorklist* theGlobalJITWorklist { nullptr };
JITWorklist* JITWorklist::existingGlobalWorklistOrNull()
{
return theGlobalJITWorklist;
}
JITWorklist& JITWorklist::ensureGlobalWorklist()
{
static std::once_flag once;
std::call_once(
once,
[] {
auto* worklist = new JITWorklist();
WTF::storeStoreFence();
theGlobalJITWorklist = worklist;
});
return *theGlobalJITWorklist;
}
CompilationResult JITWorklist::enqueue(Ref<JITPlan> plan)
{
if (!Options::useConcurrentJIT()) {
plan->compileInThread(nullptr);
return plan->finalize();
}
Locker locker { *m_lock };
if (Options::verboseCompilationQueue()) {
dump(locker, WTF::dataFile());
dataLog(": Enqueueing plan to optimize ", plan->key(), "\n");
}
ASSERT(m_plans.find(plan->key()) == m_plans.end());
m_plans.add(plan->key(), plan.copyRef());
m_queues[static_cast<unsigned>(plan->tier())].append(WTFMove(plan));
// Notify when some of thread is waiting.
for (auto& thread : m_threads) {
if (thread->state() == JITWorklistThread::State::NotCompiling) {
m_planEnqueued->notifyOne(locker);
break;
}
}
return CompilationDeferred;
}
size_t JITWorklist::queueLength() const
{
Locker locker { *m_lock };
return queueLength(locker);
}
size_t JITWorklist::queueLength(const AbstractLocker&) const
{
size_t queueLength = 0;
for (unsigned i = 0; i < static_cast<unsigned>(JITPlan::Tier::Count); ++i)
queueLength += m_queues[i].size();
return queueLength;
}
void JITWorklist::suspendAllThreads() WTF_IGNORES_THREAD_SAFETY_ANALYSIS
{
m_suspensionLock.lock();
Vector<Ref<JITWorklistThread>, 8> busyThreads;
for (auto& thread : m_threads) {
if (!thread->m_rightToRun.tryLock())
busyThreads.append(thread.copyRef());
}
for (auto& thread : busyThreads)
thread->m_rightToRun.lock();
}
void JITWorklist::resumeAllThreads() WTF_IGNORES_THREAD_SAFETY_ANALYSIS
{
for (auto& thread : m_threads)
thread->m_rightToRun.unlock();
m_suspensionLock.unlock();
}
auto JITWorklist::compilationState(VM& vm, JITCompilationKey key) -> State
{
if (!vm.numberOfActiveJITPlans())
return NotKnown;
Locker locker { *m_lock };
const auto& iter = m_plans.find(key);
if (iter == m_plans.end())
return NotKnown;
return iter->value->stage() == JITPlanStage::Ready ? Compiled : Compiling;
}
auto JITWorklist::completeAllReadyPlansForVM(VM& vm, JITCompilationKey requestedKey) -> State
{
if (!vm.numberOfActiveJITPlans())
return NotKnown;
DeferGC deferGC(vm);
Vector<RefPtr<JITPlan>, 8> myReadyPlans;
State resultingState = removeAllReadyPlansForVM(vm, myReadyPlans, requestedKey);
for (auto& plan : myReadyPlans) {
dataLogLnIf(Options::verboseCompilationQueue(), *this, ": Completing ", plan->key());
RELEASE_ASSERT(plan->stage() == JITPlanStage::Ready);
plan->finalize();
}
return resultingState;
}
void JITWorklist::waitUntilAllPlansForVMAreReady(VM& vm)
{
DeferGC deferGC(vm);
// While we are waiting for the compiler to finish, the collector might have already suspended
// the compiler and then it will be waiting for us to stop. That's a deadlock. We avoid that
// deadlock by relinquishing our heap access, so that the collector pretends that we are stopped
// even if we aren't.
// There can be the case where we already released heap access, for example when the VM is being
// destroyed as a result of JSLock::unlock unlocking the last reference to the VM.
// So we use a Release access scope that checks if we currently have access before releasing and later restoring.
ReleaseHeapAccessIfNeededScope releaseHeapAccessScope(vm.heap);
// Wait for all of the plans for the given VM to complete. The idea here
// is that we want all of the caller VM's plans to be done. We don't care
// about any other VM's plans, and we won't attempt to wait on those.
// After we release this lock, we know that although other VMs may still
// be adding plans, our VM will not be.
Locker locker { *m_lock };
if (Options::verboseCompilationQueue()) {
dump(locker, WTF::dataFile());
dataLog(": Waiting for all in VM to complete.\n");
}
for (;;) {
bool allAreCompiled = true;
for (const auto& entry : m_plans) {
if (entry.value->vm() != &vm)
continue;
if (entry.value->stage() != JITPlanStage::Ready) {
allAreCompiled = false;
break;
}
}
if (allAreCompiled)
break;
m_planCompiledOrCancelled.wait(*m_lock);
}
}
void JITWorklist::completeAllPlansForVM(VM& vm)
{
if (!vm.numberOfActiveJITPlans())
return;
DeferGC deferGC(vm);
waitUntilAllPlansForVMAreReady(vm);
completeAllReadyPlansForVM(vm);
}
void JITWorklist::cancelAllPlansForVM(VM& vm)
{
if (!vm.numberOfActiveJITPlans())
return;
removeMatchingPlansForVM(vm, [&](JITPlan& plan) {
return plan.stage() != JITPlanStage::Compiling;
});
waitUntilAllPlansForVMAreReady(vm);
Vector<RefPtr<JITPlan>, 8> myReadyPlans;
removeAllReadyPlansForVM(vm, myReadyPlans, { });
}
void JITWorklist::removeDeadPlans(VM& vm)
{
if (!vm.numberOfActiveJITPlans())
return;
removeMatchingPlansForVM(vm, [&](JITPlan& plan) {
if (!plan.isKnownToBeLiveAfterGC())
return true;
plan.finalizeInGC();
return false;
});
// No locking needed for this part, see comment in visitWeakReferences().
for (auto& thread : m_threads) {
Safepoint* safepoint = thread->m_safepoint;
if (!safepoint)
continue;
if (safepoint->vm() != &vm)
continue;
if (safepoint->isKnownToBeLiveAfterGC())
continue;
safepoint->cancel();
}
}
unsigned JITWorklist::setMaximumNumberOfConcurrentDFGCompilations(unsigned n)
{
unsigned oldValue = m_maximumNumberOfConcurrentCompilationsPerTier[static_cast<unsigned>(JITPlan::Tier::DFG)];
m_maximumNumberOfConcurrentCompilationsPerTier[static_cast<unsigned>(JITPlan::Tier::DFG)] = n;
return oldValue;
}
unsigned JITWorklist::setMaximumNumberOfConcurrentFTLCompilations(unsigned n)
{
unsigned oldValue = m_maximumNumberOfConcurrentCompilationsPerTier[static_cast<unsigned>(JITPlan::Tier::FTL)];
m_maximumNumberOfConcurrentCompilationsPerTier[static_cast<unsigned>(JITPlan::Tier::FTL)] = n;
return oldValue;
}
template<typename Visitor>
void JITWorklist::visitWeakReferences(Visitor& visitor)
{
VM* vm = &visitor.heap()->vm();
{
Locker locker { *m_lock };
for (auto& entry : m_plans) {
if (entry.value->vm() != vm)
continue;
entry.value->checkLivenessAndVisitChildren(visitor);
}
}
// This loop doesn't need locking because:
// (1) no new threads can be added to m_threads. Hence, it is immutable and needs no locks.
// (2) JITWorklistThread::m_safepoint is protected by that thread's m_rightToRun which we must be
// holding here because of a prior call to suspendAllThreads().
for (auto& thread : m_threads) {
Safepoint* safepoint = thread->m_safepoint;
if (safepoint && safepoint->vm() == vm)
safepoint->checkLivenessAndVisitChildren(visitor);
}
}
template void JITWorklist::visitWeakReferences(AbstractSlotVisitor&);
template void JITWorklist::visitWeakReferences(SlotVisitor&);
void JITWorklist::dump(PrintStream& out) const
{
Locker locker { *m_lock };
dump(locker, out);
}
void JITWorklist::dump(const AbstractLocker& locker, PrintStream& out) const
{
out.print(
"JITWorklist(", RawPointer(this), ")[Queue Length = ", queueLength(locker),
", Map Size = ", m_plans.size(), ", Num Ready = ", m_readyPlans.size(),
", Num Active Threads = ", m_numberOfActiveThreads, "/", m_threads.size(), "]");
}
JITWorklist::State JITWorklist::removeAllReadyPlansForVM(VM& vm, Vector<RefPtr<JITPlan>, 8>& myReadyPlans, JITCompilationKey requestedKey)
{
DeferGC deferGC(vm);
Locker locker { *m_lock };
bool isCompiled = false;
m_readyPlans.removeAllMatching([&](RefPtr<JITPlan> plan) {
if (plan->vm() != &vm)
return false;
if (plan->stage() != JITPlanStage::Ready)
return false;
if (plan->key() == requestedKey)
isCompiled = true;
m_plans.remove(plan->key());
myReadyPlans.append(WTFMove(plan));
return true;
});
if (requestedKey) {
if (isCompiled)
return Compiled;
if (m_plans.contains(requestedKey))
return Compiling;
}
return NotKnown;
}
template<typename MatchFunction>
void JITWorklist::removeMatchingPlansForVM(VM& vm, const MatchFunction& matches)
{
Locker locker { *m_lock };
UncheckedKeyHashSet<JITCompilationKey> deadPlanKeys;
for (auto& entry : m_plans) {
JITPlan* plan = entry.value.get();
if (plan->vm() != &vm)
continue;
if (!matches(*plan))
continue;
RELEASE_ASSERT(plan->stage() != JITPlanStage::Canceled);
deadPlanKeys.add(plan->key());
}
bool didCancelPlans = !deadPlanKeys.isEmpty();
for (JITCompilationKey key : deadPlanKeys)
m_plans.take(key)->cancel();
for (auto& queue : m_queues) {
Deque<RefPtr<JITPlan>> newQueue;
while (!queue.isEmpty()) {
RefPtr<JITPlan> plan = queue.takeFirst();
if (plan->stage() != JITPlanStage::Canceled)
newQueue.append(plan);
}
queue.swap(newQueue);
}
for (unsigned i = 0; i < m_readyPlans.size(); ++i) {
if (m_readyPlans[i]->stage() != JITPlanStage::Canceled)
continue;
m_readyPlans[i--] = m_readyPlans.last();
m_readyPlans.removeLast();
}
if (didCancelPlans)
m_planCompiledOrCancelled.notifyAll();
}
} // namespace JSC
#endif // ENABLE(JIT)
|