// 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 "src/codegen/aligned-slot-allocator.h" #include "src/base/bits.h" #include "src/base/logging.h" namespace v8 { namespace internal { int AlignedSlotAllocator::NextSlot(int n) const { … } int AlignedSlotAllocator::Allocate(int n) { … } int AlignedSlotAllocator::AllocateUnaligned(int n) { … } int AlignedSlotAllocator::Align(int n) { … } } // namespace internal } // namespace v8