v8/test/unittests/heap/unified-heap-utils.h
Michael Lippautz d37562e543 heap: Improve unified heap test coverage
Add test for Cpp->JS references.

Bug: chromium:1056170
Change-Id: I7240483b6ad7393346b55a9756fcd4721e238119
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2642257
Reviewed-by: Omer Katz <omerkatz@chromium.org>
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#72230}
2021-01-21 16:03:50 +00:00

55 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.
#ifndef V8_UNITTESTS_HEAP_UNIFIED_HEAP_UTILS_H_
#define V8_UNITTESTS_HEAP_UNIFIED_HEAP_UTILS_H_
#include "include/cppgc/heap.h"
#include "include/v8.h"
#include "test/unittests/heap/heap-utils.h"
namespace v8 {
namespace internal {
class CppHeap;
class UnifiedHeapTest : public TestWithHeapInternals {
public:
UnifiedHeapTest();
~UnifiedHeapTest() override = default;
void CollectGarbageWithEmbedderStack(cppgc::Heap::SweepingType sweeping_type =
cppgc::Heap::SweepingType::kAtomic);
void CollectGarbageWithoutEmbedderStack(
cppgc::Heap::SweepingType sweeping_type =
cppgc::Heap::SweepingType::kAtomic);
CppHeap& cpp_heap() const;
cppgc::AllocationHandle& allocation_handle();
};
class WrapperHelper {
public:
// Sets up a V8 API object so that it points back to a C++ object. The setup
// used is recognized by the GC and references will be followed for liveness
// analysis (marking) as well as tooling (snapshot).
static v8::Local<v8::Object> CreateWrapper(v8::Local<v8::Context> context,
void* wrappable_object,
const char* class_name = "");
// Resets the connection of a wrapper (JS) to its wrappable (C++), meaning
// that the wrappable object is not longer kept alive by the wrapper object.
static void ResetWrappableConnection(v8::Local<v8::Object> api_object);
// Sets up the connection of a wrapper (JS) to its wrappable (C++). Does not
// emit any possibly needed write barrier.
static void SetWrappableConnection(v8::Local<v8::Object> api_object, void*,
void*);
};
} // namespace internal
} // namespace v8
#endif // V8_UNITTESTS_HEAP_UNIFIED_HEAP_UTILS_H_