blob: 97e5635fb845dc20e359333dc35fbe722844aeef [file] [log] [blame]
// 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 "include/cppgc/platform.h"
#include "src/base/lazy-instance.h"
#include "src/base/platform/platform.h"
#include "src/heap/cppgc/gc-info-table.h"
namespace cppgc {
TracingController* Platform::GetTracingController() {
static v8::base::LeakyObject<TracingController> tracing_controller;
return tracing_controller.get();
}
void InitializeProcess(PageAllocator* page_allocator) {
static PageAllocator* allocator = nullptr;
CHECK(!allocator);
internal::GlobalGCInfoTable::Create(page_allocator);
allocator = page_allocator;
}
void ShutdownProcess() {}
namespace internal {
void Abort() { v8::base::OS::Abort(); }
} // namespace internal
} // namespace cppgc