1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/aligned_storage.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,170 @@
1.4 +//-----------------------------------------------------------------------------
1.5 +// boost aligned_storage.hpp header file
1.6 +// See http://www.boost.org for updates, documentation, and revision history.
1.7 +//-----------------------------------------------------------------------------
1.8 +//
1.9 +// Copyright (c) 2002-2003
1.10 +// Eric Friedman, Itay Maman
1.11 +//
1.12 +// Distributed under the Boost Software License, Version 1.0. (See
1.13 +// accompanying file LICENSE_1_0.txt or copy at
1.14 +// http://www.boost.org/LICENSE_1_0.txt)
1.15 +
1.16 +#ifndef BOOST_ALIGNED_STORAGE_HPP
1.17 +#define BOOST_ALIGNED_STORAGE_HPP
1.18 +
1.19 +#include <cstddef> // for std::size_t
1.20 +
1.21 +#include "boost/config.hpp"
1.22 +#include "boost/detail/workaround.hpp"
1.23 +#include "boost/type_traits/alignment_of.hpp"
1.24 +#include "boost/type_traits/type_with_alignment.hpp"
1.25 +#include "boost/type_traits/is_pod.hpp"
1.26 +
1.27 +#include "boost/mpl/eval_if.hpp"
1.28 +#include "boost/mpl/identity.hpp"
1.29 +
1.30 +#include "boost/type_traits/detail/bool_trait_def.hpp"
1.31 +
1.32 +namespace boost {
1.33 +
1.34 +namespace detail { namespace aligned_storage {
1.35 +
1.36 +BOOST_STATIC_CONSTANT(
1.37 + std::size_t
1.38 + , alignment_of_max_align = ::boost::alignment_of<max_align>::value
1.39 + );
1.40 +
1.41 +//
1.42 +// To be TR1 conforming this must be a POD type:
1.43 +//
1.44 +template <
1.45 + std::size_t size_
1.46 + , std::size_t alignment_
1.47 +>
1.48 +struct aligned_storage_imp
1.49 +{
1.50 + union data_t
1.51 + {
1.52 + char buf[size_];
1.53 +
1.54 + typename mpl::eval_if_c<
1.55 + alignment_ == std::size_t(-1)
1.56 + , mpl::identity<detail::max_align>
1.57 + , type_with_alignment<alignment_>
1.58 + >::type align_;
1.59 + } data_;
1.60 +};
1.61 +
1.62 +}} // namespace detail::aligned_storage
1.63 +
1.64 +template <
1.65 + std::size_t size_
1.66 + , std::size_t alignment_ = std::size_t(-1)
1.67 +>
1.68 +class aligned_storage
1.69 +{
1.70 +private: // representation
1.71 +
1.72 + detail::aligned_storage::aligned_storage_imp<size_, alignment_> data_;
1.73 +
1.74 +public: // constants
1.75 +
1.76 + typedef detail::aligned_storage::aligned_storage_imp<size_, alignment_> type;
1.77 +
1.78 + BOOST_STATIC_CONSTANT(
1.79 + std::size_t
1.80 + , size = size_
1.81 + );
1.82 + BOOST_STATIC_CONSTANT(
1.83 + std::size_t
1.84 + , alignment = (
1.85 + alignment_ == std::size_t(-1)
1.86 + ? ::boost::detail::aligned_storage::alignment_of_max_align
1.87 + : alignment_
1.88 + )
1.89 + );
1.90 +
1.91 +#if defined(__GNUC__) &&\
1.92 + (__GNUC__ > 3) ||\
1.93 + (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 ||\
1.94 + (__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >=3)))
1.95 +
1.96 +private: // noncopyable
1.97 +
1.98 + aligned_storage(const aligned_storage&);
1.99 + aligned_storage& operator=(const aligned_storage&);
1.100 +
1.101 +#else // gcc less than 3.2.3
1.102 +
1.103 +public: // _should_ be noncopyable, but GCC compiler emits error
1.104 +
1.105 + aligned_storage(const aligned_storage&);
1.106 + aligned_storage& operator=(const aligned_storage&);
1.107 +
1.108 +#endif // gcc < 3.2.3 workaround
1.109 +
1.110 +public: // structors
1.111 +
1.112 + aligned_storage()
1.113 + {
1.114 + }
1.115 +
1.116 + ~aligned_storage()
1.117 + {
1.118 + }
1.119 +
1.120 +public: // accessors
1.121 +
1.122 + void* address()
1.123 + {
1.124 + return this;
1.125 + }
1.126 +
1.127 +#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
1.128 +
1.129 + const void* address() const
1.130 + {
1.131 + return this;
1.132 + }
1.133 +
1.134 +#else // MSVC6
1.135 +
1.136 + const void* address() const;
1.137 +
1.138 +#endif // MSVC6 workaround
1.139 +
1.140 +};
1.141 +
1.142 +#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
1.143 +
1.144 +// MSVC6 seems not to like inline functions with const void* returns, so we
1.145 +// declare the following here:
1.146 +
1.147 +template <std::size_t S, std::size_t A>
1.148 +const void* aligned_storage<S,A>::address() const
1.149 +{
1.150 + return const_cast< aligned_storage<S,A>* >(this)->address();
1.151 +}
1.152 +
1.153 +#endif // MSVC6 workaround
1.154 +
1.155 +#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
1.156 +//
1.157 +// Make sure that is_pod recognises aligned_storage<>::type
1.158 +// as a POD (Note that aligned_storage<> itself is not a POD):
1.159 +//
1.160 +template <std::size_t size_, std::size_t alignment_>
1.161 +struct is_pod<boost::detail::aligned_storage::aligned_storage_imp<size_,alignment_> >
1.162 + BOOST_TT_AUX_BOOL_C_BASE(true)
1.163 +{
1.164 + BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(true)
1.165 +};
1.166 +#endif
1.167 +
1.168 +
1.169 +} // namespace boost
1.170 +
1.171 +#include "boost/type_traits/detail/bool_trait_undef.hpp"
1.172 +
1.173 +#endif // BOOST_ALIGNED_STORAGE_HPP