2020-06-17 07:54:15 +00:00
|
|
|
// 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_HEAP_UTILS_H_
|
|
|
|
#define V8_UNITTESTS_HEAP_HEAP_UTILS_H_
|
|
|
|
|
|
|
|
#include "src/base/macros.h"
|
|
|
|
#include "src/common/globals.h"
|
|
|
|
#include "test/unittests/test-utils.h"
|
|
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2021-01-21 11:03:56 +00:00
|
|
|
class HeapInternalsBase {
|
|
|
|
protected:
|
|
|
|
void SimulateIncrementalMarking(Heap* heap, bool force_completion);
|
|
|
|
};
|
|
|
|
|
2020-06-17 07:54:15 +00:00
|
|
|
template <typename TMixin>
|
2021-01-21 11:03:56 +00:00
|
|
|
class WithHeapInternals : public TMixin, HeapInternalsBase {
|
2020-06-17 07:54:15 +00:00
|
|
|
public:
|
|
|
|
WithHeapInternals() = default;
|
2020-11-05 08:11:05 +00:00
|
|
|
WithHeapInternals(const WithHeapInternals&) = delete;
|
|
|
|
WithHeapInternals& operator=(const WithHeapInternals&) = delete;
|
2020-06-17 07:54:15 +00:00
|
|
|
|
|
|
|
void CollectGarbage(i::AllocationSpace space) {
|
|
|
|
heap()->CollectGarbage(space, i::GarbageCollectionReason::kTesting);
|
|
|
|
}
|
|
|
|
|
|
|
|
Heap* heap() const { return this->i_isolate()->heap(); }
|
2021-01-21 11:03:56 +00:00
|
|
|
|
|
|
|
void SimulateIncrementalMarking(bool force_completion = true) {
|
|
|
|
return HeapInternalsBase::SimulateIncrementalMarking(heap(),
|
|
|
|
force_completion);
|
|
|
|
}
|
2020-06-17 07:54:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
using TestWithHeapInternals = //
|
|
|
|
WithHeapInternals< //
|
|
|
|
WithInternalIsolateMixin< //
|
|
|
|
WithIsolateScopeMixin< //
|
|
|
|
WithIsolateMixin< //
|
|
|
|
::testing::Test>>>>;
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
|
|
|
|
|
|
|
#endif // V8_UNITTESTS_HEAP_HEAP_UTILS_H_
|