chromium/v8/test/unittests/codegen/aligned-slot-allocator-unittest.cc

// 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 "testing/gtest-support.h"

namespace v8 {
namespace internal {

class AlignedSlotAllocatorUnitTest : public ::testing::Test {};

TEST_F(AlignedSlotAllocatorUnitTest, NumSlotsForWidth) {}

TEST_F(AlignedSlotAllocatorUnitTest, Allocate1) {}

TEST_F(AlignedSlotAllocatorUnitTest, Allocate2) {}

TEST_F(AlignedSlotAllocatorUnitTest, Allocate4) {}

TEST_F(AlignedSlotAllocatorUnitTest, AllocateUnaligned) {}

TEST_F(AlignedSlotAllocatorUnitTest, LargeAllocateUnaligned) {}

TEST_F(AlignedSlotAllocatorUnitTest, Size) {}

TEST_F(AlignedSlotAllocatorUnitTest, Align) {}

}  // namespace internal
}  // namespace v8