os/ossrv/ossrv_pub/boost_apis/boost/aligned_storage.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//-----------------------------------------------------------------------------
sl@0
     2
// boost aligned_storage.hpp header file
sl@0
     3
// See http://www.boost.org for updates, documentation, and revision history.
sl@0
     4
//-----------------------------------------------------------------------------
sl@0
     5
//
sl@0
     6
// Copyright (c) 2002-2003
sl@0
     7
// Eric Friedman, Itay Maman
sl@0
     8
//
sl@0
     9
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
    10
// accompanying file LICENSE_1_0.txt or copy at
sl@0
    11
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    12
sl@0
    13
#ifndef BOOST_ALIGNED_STORAGE_HPP
sl@0
    14
#define BOOST_ALIGNED_STORAGE_HPP
sl@0
    15
sl@0
    16
#include <cstddef> // for std::size_t
sl@0
    17
sl@0
    18
#include "boost/config.hpp"
sl@0
    19
#include "boost/detail/workaround.hpp"
sl@0
    20
#include "boost/type_traits/alignment_of.hpp"
sl@0
    21
#include "boost/type_traits/type_with_alignment.hpp"
sl@0
    22
#include "boost/type_traits/is_pod.hpp"
sl@0
    23
sl@0
    24
#include "boost/mpl/eval_if.hpp"
sl@0
    25
#include "boost/mpl/identity.hpp"
sl@0
    26
sl@0
    27
#include "boost/type_traits/detail/bool_trait_def.hpp"
sl@0
    28
sl@0
    29
namespace boost {
sl@0
    30
sl@0
    31
namespace detail { namespace aligned_storage {
sl@0
    32
sl@0
    33
BOOST_STATIC_CONSTANT(
sl@0
    34
      std::size_t
sl@0
    35
    , alignment_of_max_align = ::boost::alignment_of<max_align>::value
sl@0
    36
    );
sl@0
    37
sl@0
    38
//
sl@0
    39
// To be TR1 conforming this must be a POD type:
sl@0
    40
//
sl@0
    41
template <
sl@0
    42
      std::size_t size_
sl@0
    43
    , std::size_t alignment_
sl@0
    44
>
sl@0
    45
struct aligned_storage_imp
sl@0
    46
{
sl@0
    47
    union data_t
sl@0
    48
    {
sl@0
    49
        char buf[size_];
sl@0
    50
sl@0
    51
        typename mpl::eval_if_c<
sl@0
    52
              alignment_ == std::size_t(-1)
sl@0
    53
            , mpl::identity<detail::max_align>
sl@0
    54
            , type_with_alignment<alignment_>
sl@0
    55
            >::type align_;
sl@0
    56
    } data_;
sl@0
    57
};
sl@0
    58
sl@0
    59
}} // namespace detail::aligned_storage
sl@0
    60
sl@0
    61
template <
sl@0
    62
      std::size_t size_
sl@0
    63
    , std::size_t alignment_ = std::size_t(-1)
sl@0
    64
>
sl@0
    65
class aligned_storage
sl@0
    66
{
sl@0
    67
private: // representation
sl@0
    68
sl@0
    69
   detail::aligned_storage::aligned_storage_imp<size_, alignment_> data_;
sl@0
    70
sl@0
    71
public: // constants
sl@0
    72
sl@0
    73
    typedef detail::aligned_storage::aligned_storage_imp<size_, alignment_> type;
sl@0
    74
sl@0
    75
    BOOST_STATIC_CONSTANT(
sl@0
    76
          std::size_t
sl@0
    77
        , size = size_
sl@0
    78
        );
sl@0
    79
    BOOST_STATIC_CONSTANT(
sl@0
    80
          std::size_t
sl@0
    81
        , alignment = (
sl@0
    82
              alignment_ == std::size_t(-1)
sl@0
    83
            ? ::boost::detail::aligned_storage::alignment_of_max_align
sl@0
    84
            : alignment_
sl@0
    85
            )
sl@0
    86
        );
sl@0
    87
sl@0
    88
#if defined(__GNUC__) &&\
sl@0
    89
    (__GNUC__ >  3) ||\
sl@0
    90
    (__GNUC__ == 3 && (__GNUC_MINOR__ >  2 ||\
sl@0
    91
                      (__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >=3)))
sl@0
    92
sl@0
    93
private: // noncopyable
sl@0
    94
sl@0
    95
    aligned_storage(const aligned_storage&);
sl@0
    96
    aligned_storage& operator=(const aligned_storage&);
sl@0
    97
sl@0
    98
#else // gcc less than 3.2.3
sl@0
    99
sl@0
   100
public: // _should_ be noncopyable, but GCC compiler emits error
sl@0
   101
sl@0
   102
    aligned_storage(const aligned_storage&);
sl@0
   103
    aligned_storage& operator=(const aligned_storage&);
sl@0
   104
sl@0
   105
#endif // gcc < 3.2.3 workaround
sl@0
   106
sl@0
   107
public: // structors
sl@0
   108
sl@0
   109
    aligned_storage()
sl@0
   110
    {
sl@0
   111
    }
sl@0
   112
sl@0
   113
    ~aligned_storage()
sl@0
   114
    {
sl@0
   115
    }
sl@0
   116
sl@0
   117
public: // accessors
sl@0
   118
sl@0
   119
    void* address()
sl@0
   120
    {
sl@0
   121
        return this;
sl@0
   122
    }
sl@0
   123
sl@0
   124
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
sl@0
   125
sl@0
   126
    const void* address() const
sl@0
   127
    {
sl@0
   128
        return this;
sl@0
   129
    }
sl@0
   130
sl@0
   131
#else // MSVC6
sl@0
   132
sl@0
   133
    const void* address() const;
sl@0
   134
sl@0
   135
#endif // MSVC6 workaround
sl@0
   136
sl@0
   137
};
sl@0
   138
sl@0
   139
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
sl@0
   140
sl@0
   141
// MSVC6 seems not to like inline functions with const void* returns, so we
sl@0
   142
// declare the following here:
sl@0
   143
sl@0
   144
template <std::size_t S, std::size_t A>
sl@0
   145
const void* aligned_storage<S,A>::address() const
sl@0
   146
{
sl@0
   147
    return const_cast< aligned_storage<S,A>* >(this)->address();
sl@0
   148
}
sl@0
   149
sl@0
   150
#endif // MSVC6 workaround
sl@0
   151
sl@0
   152
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   153
//
sl@0
   154
// Make sure that is_pod recognises aligned_storage<>::type
sl@0
   155
// as a POD (Note that aligned_storage<> itself is not a POD):
sl@0
   156
//
sl@0
   157
template <std::size_t size_, std::size_t alignment_>
sl@0
   158
struct is_pod<boost::detail::aligned_storage::aligned_storage_imp<size_,alignment_> >
sl@0
   159
   BOOST_TT_AUX_BOOL_C_BASE(true)
sl@0
   160
{ 
sl@0
   161
    BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(true)
sl@0
   162
}; 
sl@0
   163
#endif
sl@0
   164
sl@0
   165
sl@0
   166
} // namespace boost
sl@0
   167
sl@0
   168
#include "boost/type_traits/detail/bool_trait_undef.hpp"
sl@0
   169
sl@0
   170
#endif // BOOST_ALIGNED_STORAGE_HPP