mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 22:04:26 +00:00

PR-URL: https://github.com/nodejs/node/pull/41610 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
32 lines
806 B
C++
32 lines
806 B
C++
// Copyright 2021 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 "test/benchmarks/cpp/cppgc/benchmark_utils.h"
|
|
|
|
#include "include/cppgc/platform.h"
|
|
#include "test/unittests/heap/cppgc/test-platform.h"
|
|
|
|
namespace cppgc {
|
|
namespace internal {
|
|
namespace testing {
|
|
|
|
// static
|
|
std::shared_ptr<testing::TestPlatform> BenchmarkWithHeap::platform_;
|
|
|
|
// static
|
|
void BenchmarkWithHeap::InitializeProcess() {
|
|
platform_ = std::make_shared<testing::TestPlatform>();
|
|
cppgc::InitializeProcess(platform_->GetPageAllocator());
|
|
}
|
|
|
|
// static
|
|
void BenchmarkWithHeap::ShutdownProcess() {
|
|
cppgc::ShutdownProcess();
|
|
platform_.reset();
|
|
}
|
|
|
|
} // namespace testing
|
|
} // namespace internal
|
|
} // namespace cppgc
|