mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 11:36:57 +00:00

PR-URL: https://github.com/nodejs/node/pull/49639 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
112 lines
3.6 KiB
C++
112 lines
3.6 KiB
C++
// Copyright 2022 the V8 project 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 "src/base/platform/mutex.h"
|
|
#include "src/base/platform/platform.h"
|
|
#include "src/heap/heap.h"
|
|
#include "src/heap/local-heap.h"
|
|
#include "src/heap/parked-scope-inl.h"
|
|
#include "src/heap/safepoint.h"
|
|
#include "test/unittests/test-utils.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
#if V8_CAN_CREATE_SHARED_HEAP_BOOL
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
using GlobalSafepointTest = TestJSSharedMemoryWithNativeContext;
|
|
|
|
namespace {
|
|
|
|
class InfiniteLooperThread final : public ParkingThread {
|
|
public:
|
|
InfiniteLooperThread(ParkingSemaphore* sema_ready,
|
|
ParkingSemaphore* sema_execute_start,
|
|
ParkingSemaphore* sema_execute_complete)
|
|
: ParkingThread(Options("InfiniteLooperThread")),
|
|
sema_ready_(sema_ready),
|
|
sema_execute_start_(sema_execute_start),
|
|
sema_execute_complete_(sema_execute_complete) {}
|
|
|
|
void Run() override {
|
|
IsolateWithContextWrapper isolate_wrapper;
|
|
v8::Isolate* v8_isolate = isolate_wrapper.v8_isolate();
|
|
v8::Isolate::Scope isolate_scope(v8_isolate);
|
|
v8::HandleScope scope(v8_isolate);
|
|
|
|
v8::Local<v8::String> source =
|
|
v8::String::NewFromUtf8(v8_isolate, "for(;;) {}").ToLocalChecked();
|
|
auto context = v8_isolate->GetCurrentContext();
|
|
v8::Local<v8::Script> script =
|
|
v8::Script::Compile(context, source).ToLocalChecked();
|
|
|
|
sema_ready_->Signal();
|
|
sema_execute_start_->ParkedWait(
|
|
isolate_wrapper.isolate()->main_thread_local_isolate());
|
|
|
|
USE(script->Run(context));
|
|
|
|
sema_execute_complete_->Signal();
|
|
}
|
|
|
|
private:
|
|
ParkingSemaphore* sema_ready_;
|
|
ParkingSemaphore* sema_execute_start_;
|
|
ParkingSemaphore* sema_execute_complete_;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
TEST_F(GlobalSafepointTest, Interrupt) {
|
|
constexpr int kThreads = 4;
|
|
|
|
Isolate* i_main_isolate = i_isolate();
|
|
ParkingSemaphore sema_ready(0);
|
|
ParkingSemaphore sema_execute_start(0);
|
|
ParkingSemaphore sema_execute_complete(0);
|
|
std::vector<std::unique_ptr<InfiniteLooperThread>> threads;
|
|
for (int i = 0; i < kThreads; i++) {
|
|
auto thread = std::make_unique<InfiniteLooperThread>(
|
|
&sema_ready, &sema_execute_start, &sema_execute_complete);
|
|
CHECK(thread->Start());
|
|
threads.push_back(std::move(thread));
|
|
}
|
|
|
|
LocalIsolate* local_isolate = i_main_isolate->main_thread_local_isolate();
|
|
for (int i = 0; i < kThreads; i++) {
|
|
sema_ready.ParkedWait(local_isolate);
|
|
}
|
|
for (int i = 0; i < kThreads; i++) {
|
|
sema_execute_start.Signal();
|
|
}
|
|
|
|
{
|
|
// Test that a global safepoint interrupts threads infinitely looping in JS.
|
|
|
|
// This wait is a big hack to increase the likelihood that the infinite
|
|
// looper threads will have entered into a steady state of infinitely
|
|
// looping. Otherwise the safepoint may be reached during allocation, such
|
|
// as of FeedbackVectors, and we wouldn't be testing the interrupt check.
|
|
base::OS::Sleep(base::TimeDelta::FromMilliseconds(500));
|
|
GlobalSafepointScope global_safepoint(i_main_isolate);
|
|
i_main_isolate->shared_space_isolate()
|
|
->global_safepoint()
|
|
->IterateSharedSpaceAndClientIsolates([](Isolate* client) {
|
|
client->stack_guard()->RequestTerminateExecution();
|
|
});
|
|
}
|
|
|
|
for (int i = 0; i < kThreads; i++) {
|
|
sema_execute_complete.ParkedWait(local_isolate);
|
|
}
|
|
|
|
ParkingThread::ParkedJoinAll(local_isolate, threads);
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_CAN_CREATE_SHARED_HEAP
|