diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9d8de563338..bd2a0cd9f51 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,13 @@ +2011-07-09 Jonathan Wakely + + * include/ext/alloc_traits.h (__allocator_always_compares_equal): New + trait, provide partial specializations for known allocators. + (__alloc_traits::construct, __alloc_traits::destroy): Overload for + non-standard pointer types. + (__alloc_traits::_S_always_equal): New trait for use with noexcept. + (__alloc_traits::_S_nothrow_move): Likewise. + (__alloc_traits::_S_nothrow_swap): Likewise. + 2011-07-09 Jonathan Wakely * include/ext/cast.h: Fix typo in include guard. diff --git a/libstdc++-v3/include/ext/alloc_traits.h b/libstdc++-v3/include/ext/alloc_traits.h index 0d50fe173fc..dbeb95f313c 100644 --- a/libstdc++-v3/include/ext/alloc_traits.h +++ b/libstdc++-v3/include/ext/alloc_traits.h @@ -37,14 +37,55 @@ # include // for __alloc_swap #endif +namespace std _GLIBCXX_VISIBILITY(default) +{ +_GLIBCXX_BEGIN_NAMESPACE_VERSION + template struct allocator; +_GLIBCXX_END_NAMESPACE_VERSION +} // namespace + namespace __gnu_cxx _GLIBCXX_VISIBILITY(default) { _GLIBCXX_BEGIN_NAMESPACE_VERSION - /** - * @brief Uniform interface to C++98 and C++0x allocators. - * @ingroup allocators - */ +#ifdef __GXX_EXPERIMENTAL_CXX0X__ +template + struct __allocator_always_compares_equal + { static const bool value = false; }; + + template + struct __allocator_always_compares_equal> + { static const bool value = true; }; + + template struct array_allocator; + + template + struct __allocator_always_compares_equal> + { static const bool value = true; }; + + template struct mt_allocator; + + template + struct __allocator_always_compares_equal> + { static const bool value = true; }; + + template struct new_allocator; + + template + struct __allocator_always_compares_equal> + { static const bool value = true; }; + + template struct pool_allocator; + + template + struct __allocator_always_compares_equal> + { static const bool value = true; }; +#endif + +/** + * @brief Uniform interface to C++98 and C++0x allocators. + * @ingroup allocators +*/ template struct __alloc_traits #ifdef __GXX_EXPERIMENTAL_CXX0X__ @@ -66,6 +107,27 @@ template using _Base_type::construct; using _Base_type::destroy; + private: + template + struct __is_custom_pointer + : std::integral_constant::value + && !std::is_pointer<_Ptr>::value> + { }; + + public: + template + static typename std::enable_if<__is_custom_pointer<_Ptr>::value>::type + construct(_Alloc& __a, _Ptr __p, _Args&&... __args) + { + _Base_type::construct(__a, std::addressof(*__p), + std::forward<_Args>(__args)...); + } + + template + static typename std::enable_if<__is_custom_pointer<_Ptr>::value>::type + destroy(_Alloc& __a, _Ptr __p) + { _Base_type::destroy(__a, std::addressof(*__p)); } + static _Alloc _S_select_on_copy(const _Alloc& __a) { return _Base_type::select_on_container_copy_construction(__a); } @@ -81,6 +143,19 @@ template static constexpr bool _S_propagate_on_swap() { return _Base_type::propagate_on_container_swap::value; } + static constexpr bool _S_always_equal() + { return __allocator_always_compares_equal<_Alloc>::value; } + + static constexpr bool _S_nothrow_move() + { return _S_propagate_on_move_assign() || _S_always_equal(); } + + static constexpr bool _S_nothrow_swap() + { + using std::swap; + return !_S_propagate_on_swap() + || noexcept(swap(std::declval<_Alloc&>(), std::declval<_Alloc&>())); + } + #else typedef typename _Alloc::pointer pointer;