// Copyright 2022 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_HEAP_BASE_ACTIVE_SYSTEM_PAGES_H_ #define V8_HEAP_BASE_ACTIVE_SYSTEM_PAGES_H_ #include <bitset> #include <cstdint> #include "src/base/macros.h" namespace heap { namespace base { // Class implements a bitset of system pages on a heap page. class ActiveSystemPages final { … }; } // namespace base } // namespace heap #endif // V8_HEAP_BASE_ACTIVE_SYSTEM_PAGES_H_