2017-02-06 11:14:56 +00:00
|
|
|
// Copyright 2017 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/zone/zone.h"
|
|
|
|
|
|
|
|
#include "src/zone/accounting-allocator.h"
|
2022-04-06 11:56:49 +00:00
|
|
|
#include "test/unittests/test-utils.h"
|
2017-02-06 11:14:56 +00:00
|
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2022-04-06 11:56:49 +00:00
|
|
|
class ZoneTest : public TestWithPlatform {};
|
|
|
|
|
2020-07-16 16:01:46 +00:00
|
|
|
// This struct is just a type tag for Zone::Allocate<T>(size_t) call.
|
2022-04-06 11:56:49 +00:00
|
|
|
struct ZoneTestTag {};
|
2020-07-16 16:01:46 +00:00
|
|
|
|
2022-04-06 11:56:49 +00:00
|
|
|
TEST_F(ZoneTest, 8ByteAlignment) {
|
2017-02-06 11:14:56 +00:00
|
|
|
AccountingAllocator allocator;
|
|
|
|
Zone zone(&allocator, ZONE_NAME);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < 16; ++i) {
|
2022-04-06 11:56:49 +00:00
|
|
|
ASSERT_EQ(reinterpret_cast<intptr_t>(zone.Allocate<ZoneTestTag>(i)) % 8, 0);
|
2017-02-06 11:14:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|