//===----------------------------------------------------------------------===// // // 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-has-abi-fix-unordered-container-size-type, libcpp-abi-no-compressed-pair-padding // std::unique_ptr is used as an implementation detail of the unordered containers, so the layout of // unordered containers changes when bounded unique_ptr is enabled. // UNSUPPORTED: libcpp-has-abi-bounded-unique_ptr // XFAIL: FROZEN-CXX03-HEADERS-FIXME #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; } }; template using unordered_set_alloc = std::unordered_set, std::equal_to, Alloc>; #if __SIZE_WIDTH__ == 64 static_assert(sizeof(unordered_set_alloc >) == 40, ""); static_assert(sizeof(unordered_set_alloc >) == 40, ""); static_assert(sizeof(unordered_set_alloc >) == 64, ""); static_assert(sizeof(unordered_set_alloc >) == 12, ""); static_assert(sizeof(unordered_set_alloc >) == 16, ""); static_assert(sizeof(unordered_set_alloc >) == 40, ""); static_assert(sizeof(unordered_set_alloc >) == 40, ""); static_assert(sizeof(unordered_set_alloc >) == 64, ""); static_assert(sizeof(unordered_set_alloc >) == 12, ""); static_assert(sizeof(unordered_set_alloc >) == 16, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 8, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); struct TEST_ALIGNAS(32) AlignedHash {}; struct UnalignedEqualTo {}; // This part of the ABI has been broken between LLVM 19 and LLVM 20. static_assert(sizeof(std::unordered_set) == 64, ""); static_assert(TEST_ALIGNOF(std::unordered_set) == 32, ""); #elif __SIZE_WIDTH__ == 32 static_assert(sizeof(unordered_set_alloc >) == 20, ""); static_assert(sizeof(unordered_set_alloc >) == 20, ""); static_assert(sizeof(unordered_set_alloc >) == 44, ""); static_assert(sizeof(unordered_set_alloc >) == 12, ""); static_assert(sizeof(unordered_set_alloc >) == 16, ""); static_assert(sizeof(unordered_set_alloc >) == 20, ""); static_assert(sizeof(unordered_set_alloc >) == 20, ""); static_assert(sizeof(unordered_set_alloc >) == 44, ""); static_assert(sizeof(unordered_set_alloc >) == 12, ""); static_assert(sizeof(unordered_set_alloc >) == 16, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); static_assert(TEST_ALIGNOF(unordered_set_alloc >) == 4, ""); struct TEST_ALIGNAS(32) AlignedHash {}; struct UnalignedEqualTo {}; static_assert(sizeof(std::unordered_set) == 64); static_assert(TEST_ALIGNOF(std::unordered_set) == 32); #else # error std::size_t has an unexpected size #endif