//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: libcpp-abi-no-compressed-pair-padding #include #include #include "min_allocator.h" #include "test_allocator.h" #include "test_macros.h" template class small_pointer { std::uint16_t offset; }; template class small_iter_allocator { public: using value_type = T; using pointer = small_pointer; using size_type = std::uint16_t; using difference_type = std::int16_t; small_iter_allocator() TEST_NOEXCEPT {} template small_iter_allocator(small_iter_allocator) TEST_NOEXCEPT {} T* allocate(std::size_t n); void deallocate(T* p, std::size_t); friend bool operator==(small_iter_allocator, small_iter_allocator) { return true; } friend bool operator!=(small_iter_allocator, small_iter_allocator) { return false; } }; template class final_small_iter_allocator final { public: using value_type = T; using pointer = small_pointer; using size_type = std::uint16_t; using difference_type = std::int16_t; final_small_iter_allocator() TEST_NOEXCEPT {} template final_small_iter_allocator(final_small_iter_allocator) TEST_NOEXCEPT {} T* allocate(std::size_t n); void deallocate(T* p, std::size_t); friend bool operator==(final_small_iter_allocator, final_small_iter_allocator) { return true; } friend bool operator!=(final_small_iter_allocator, final_small_iter_allocator) { return false; } }; #if __SIZE_WIDTH__ == 64 static_assert(sizeof(std::deque) == 48, ""); static_assert(sizeof(std::deque >) == 48, ""); static_assert(sizeof(std::deque >) == 80, ""); static_assert(sizeof(std::deque >) == 12, ""); static_assert(sizeof(std::deque >) == 16, ""); static_assert(sizeof(std::deque) == 48, ""); static_assert(sizeof(std::deque >) == 48, ""); static_assert(sizeof(std::deque >) == 80, ""); static_assert(sizeof(std::deque >) == 12, ""); static_assert(sizeof(std::deque >) == 16, ""); static_assert(TEST_ALIGNOF(std::deque) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 8, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); #elif __SIZE_WIDTH__ == 32 static_assert(sizeof(std::deque) == 24, ""); static_assert(sizeof(std::deque >) == 24, ""); static_assert(sizeof(std::deque >) == 48, ""); static_assert(sizeof(std::deque >) == 12, ""); static_assert(sizeof(std::deque >) == 16, ""); static_assert(sizeof(std::deque) == 24, ""); static_assert(sizeof(std::deque >) == 24, ""); static_assert(sizeof(std::deque >) == 48, ""); static_assert(sizeof(std::deque >) == 12, ""); static_assert(sizeof(std::deque >) == 16, ""); static_assert(TEST_ALIGNOF(std::deque) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 4, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); static_assert(TEST_ALIGNOF(std::deque >) == 2, ""); #else # error std::size_t has an unexpected size #endif