b5bf34bce7
LocalHeap can be used on main thread, however allocation might cause a GC which works differently on the main thread than on a background thread. Support collection on main thread by directly performing the GC instead of requesting the GC as done on background threads. To allow for differentiation between main and background threads, LocalHeap/LocalIsolate now require an additional argument. Change-Id: I08094ea633e303e149913f21dff395da9e046534 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2463238 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Reviewed-by: Ulan Degenbaev <ulan@chromium.org> Commit-Queue: Dominik Inführ <dinfuehr@chromium.org> Cr-Commit-Position: refs/heads/master@{#70590}
85 lines
1.9 KiB
C++
85 lines
1.9 KiB
C++
// Copyright 2020 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/heap/local-heap.h"
|
|
#include "src/heap/heap.h"
|
|
#include "src/heap/safepoint.h"
|
|
#include "test/unittests/test-utils.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
using LocalHeapTest = TestWithIsolate;
|
|
|
|
TEST_F(LocalHeapTest, Initialize) {
|
|
Heap* heap = i_isolate()->heap();
|
|
|
|
CHECK(!heap->safepoint()->ContainsAnyLocalHeap());
|
|
|
|
{
|
|
LocalHeap lh(heap, ThreadKind::kMain);
|
|
CHECK(heap->safepoint()->ContainsLocalHeap(&lh));
|
|
}
|
|
|
|
CHECK(!heap->safepoint()->ContainsAnyLocalHeap());
|
|
}
|
|
|
|
TEST_F(LocalHeapTest, Current) {
|
|
Heap* heap = i_isolate()->heap();
|
|
|
|
CHECK_NULL(LocalHeap::Current());
|
|
|
|
{
|
|
LocalHeap lh(heap, ThreadKind::kMain);
|
|
CHECK_EQ(&lh, LocalHeap::Current());
|
|
}
|
|
|
|
CHECK_NULL(LocalHeap::Current());
|
|
|
|
{
|
|
LocalHeap lh(heap, ThreadKind::kMain);
|
|
CHECK_EQ(&lh, LocalHeap::Current());
|
|
}
|
|
|
|
CHECK_NULL(LocalHeap::Current());
|
|
}
|
|
|
|
namespace {
|
|
class BackgroundThread final : public v8::base::Thread {
|
|
public:
|
|
explicit BackgroundThread(Heap* heap)
|
|
: v8::base::Thread(base::Thread::Options("BackgroundThread")),
|
|
heap_(heap) {}
|
|
|
|
void Run() override {
|
|
CHECK_NULL(LocalHeap::Current());
|
|
{
|
|
LocalHeap lh(heap_, ThreadKind::kBackground);
|
|
CHECK_EQ(&lh, LocalHeap::Current());
|
|
}
|
|
CHECK_NULL(LocalHeap::Current());
|
|
}
|
|
|
|
Heap* heap_;
|
|
};
|
|
} // anonymous namespace
|
|
|
|
TEST_F(LocalHeapTest, CurrentBackground) {
|
|
Heap* heap = i_isolate()->heap();
|
|
CHECK_NULL(LocalHeap::Current());
|
|
{
|
|
LocalHeap lh(heap, ThreadKind::kMain);
|
|
auto thread = std::make_unique<BackgroundThread>(heap);
|
|
CHECK(thread->Start());
|
|
CHECK_EQ(&lh, LocalHeap::Current());
|
|
thread->Join();
|
|
CHECK_EQ(&lh, LocalHeap::Current());
|
|
}
|
|
CHECK_NULL(LocalHeap::Current());
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|