#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) { … }
}
}