xref: /freebsd-src/contrib/llvm-project/libcxx/include/__utility/small_buffer.h (revision 5f757f3ff9144b609b3c433dfd370cc6bdc191ad)
1*5f757f3fSDimitry Andric //===----------------------------------------------------------------------===//
2*5f757f3fSDimitry Andric //
3*5f757f3fSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*5f757f3fSDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*5f757f3fSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*5f757f3fSDimitry Andric //
7*5f757f3fSDimitry Andric //===----------------------------------------------------------------------===//
8*5f757f3fSDimitry Andric 
9*5f757f3fSDimitry Andric #ifndef _LIBCPP___UTILITY_SMALL_BUFFER_H
10*5f757f3fSDimitry Andric #define _LIBCPP___UTILITY_SMALL_BUFFER_H
11*5f757f3fSDimitry Andric 
12*5f757f3fSDimitry Andric #include <__config>
13*5f757f3fSDimitry Andric #include <__memory/construct_at.h>
14*5f757f3fSDimitry Andric #include <__type_traits/decay.h>
15*5f757f3fSDimitry Andric #include <__type_traits/is_trivially_destructible.h>
16*5f757f3fSDimitry Andric #include <__type_traits/is_trivially_move_constructible.h>
17*5f757f3fSDimitry Andric #include <__utility/exception_guard.h>
18*5f757f3fSDimitry Andric #include <__utility/forward.h>
19*5f757f3fSDimitry Andric #include <cstddef>
20*5f757f3fSDimitry Andric #include <new>
21*5f757f3fSDimitry Andric 
22*5f757f3fSDimitry Andric #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
23*5f757f3fSDimitry Andric #  pragma GCC system_header
24*5f757f3fSDimitry Andric #endif
25*5f757f3fSDimitry Andric 
26*5f757f3fSDimitry Andric #if _LIBCPP_STD_VER >= 23
27*5f757f3fSDimitry Andric 
28*5f757f3fSDimitry Andric // __small_buffer is a helper class to perform the well known SBO (small buffer optimization). It is mainly useful to
29*5f757f3fSDimitry Andric // allow type-erasing classes like move_only_function to store small objects in a local buffer without requiring an
30*5f757f3fSDimitry Andric // allocation.
31*5f757f3fSDimitry Andric //
32*5f757f3fSDimitry Andric // This small buffer class only allows storing trivially relocatable objects inside the local storage to allow
33*5f757f3fSDimitry Andric // __small_buffer to be trivially relocatable itself. Since the buffer doesn't know what's stored inside it, the user
34*5f757f3fSDimitry Andric // has to manage the object's lifetime, in particular the destruction of the object.
35*5f757f3fSDimitry Andric 
36*5f757f3fSDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD
37*5f757f3fSDimitry Andric 
38*5f757f3fSDimitry Andric template <size_t _BufferSize, size_t _BufferAlignment>
39*5f757f3fSDimitry Andric   requires(_BufferSize > 0 && _BufferAlignment > 0)
40*5f757f3fSDimitry Andric class __small_buffer {
41*5f757f3fSDimitry Andric public:
42*5f757f3fSDimitry Andric   template <class _Tp, class _Decayed = decay_t<_Tp>>
43*5f757f3fSDimitry Andric   static constexpr bool __fits_in_buffer =
44*5f757f3fSDimitry Andric       is_trivially_move_constructible_v<_Decayed> && is_trivially_destructible_v<_Decayed> &&
45*5f757f3fSDimitry Andric       sizeof(_Decayed) <= _BufferSize && alignof(_Decayed) <= _BufferAlignment;
46*5f757f3fSDimitry Andric 
47*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI __small_buffer()           = default;
48*5f757f3fSDimitry Andric   __small_buffer(const __small_buffer&)            = delete;
49*5f757f3fSDimitry Andric   __small_buffer& operator=(const __small_buffer&) = delete;
50*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI ~__small_buffer()          = default;
51*5f757f3fSDimitry Andric 
52*5f757f3fSDimitry Andric   // Relocates the buffer - __delete() should never be called on a moved-from __small_buffer
53*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI __small_buffer(__small_buffer&&)            = default;
54*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI __small_buffer& operator=(__small_buffer&&) = default;
55*5f757f3fSDimitry Andric 
56*5f757f3fSDimitry Andric   template <class _Stored>
57*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI _Stored* __get() {
58*5f757f3fSDimitry Andric     if constexpr (__fits_in_buffer<_Stored>)
59*5f757f3fSDimitry Andric       return std::launder(reinterpret_cast<_Stored*>(__buffer_));
60*5f757f3fSDimitry Andric     else
61*5f757f3fSDimitry Andric       return *std::launder(reinterpret_cast<_Stored**>(__buffer_));
62*5f757f3fSDimitry Andric   }
63*5f757f3fSDimitry Andric 
64*5f757f3fSDimitry Andric   template <class _Stored>
65*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI _Stored* __alloc() {
66*5f757f3fSDimitry Andric     if constexpr (__fits_in_buffer<_Stored>) {
67*5f757f3fSDimitry Andric       return std::launder(reinterpret_cast<_Stored*>(__buffer_));
68*5f757f3fSDimitry Andric     } else {
69*5f757f3fSDimitry Andric       byte* __allocation = static_cast<byte*>(::operator new[](sizeof(_Stored), align_val_t{alignof(_Stored)}));
70*5f757f3fSDimitry Andric       std::construct_at(reinterpret_cast<byte**>(__buffer_), __allocation);
71*5f757f3fSDimitry Andric       return std::launder(reinterpret_cast<_Stored*>(__allocation));
72*5f757f3fSDimitry Andric     }
73*5f757f3fSDimitry Andric   }
74*5f757f3fSDimitry Andric 
75*5f757f3fSDimitry Andric   template <class _Stored>
76*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI void __dealloc() noexcept {
77*5f757f3fSDimitry Andric     if constexpr (!__fits_in_buffer<_Stored>)
78*5f757f3fSDimitry Andric       ::operator delete[](*reinterpret_cast<void**>(__buffer_), sizeof(_Stored), align_val_t{alignof(_Stored)});
79*5f757f3fSDimitry Andric   }
80*5f757f3fSDimitry Andric 
81*5f757f3fSDimitry Andric   template <class _Stored, class... _Args>
82*5f757f3fSDimitry Andric   _LIBCPP_HIDE_FROM_ABI void __construct(_Args&&... __args) {
83*5f757f3fSDimitry Andric     _Stored* __buffer = __alloc<_Stored>();
84*5f757f3fSDimitry Andric     auto __guard      = std::__make_exception_guard([&] { __dealloc<_Stored>(); });
85*5f757f3fSDimitry Andric     std::construct_at(__buffer, std::forward<_Args>(__args)...);
86*5f757f3fSDimitry Andric     __guard.__complete();
87*5f757f3fSDimitry Andric   }
88*5f757f3fSDimitry Andric 
89*5f757f3fSDimitry Andric private:
90*5f757f3fSDimitry Andric   alignas(_BufferAlignment) byte __buffer_[_BufferSize];
91*5f757f3fSDimitry Andric };
92*5f757f3fSDimitry Andric 
93*5f757f3fSDimitry Andric #  undef _LIBCPP_SMALL_BUFFER_TRIVIAL_ABI
94*5f757f3fSDimitry Andric 
95*5f757f3fSDimitry Andric _LIBCPP_END_NAMESPACE_STD
96*5f757f3fSDimitry Andric 
97*5f757f3fSDimitry Andric #endif // _LIBCPP_STD_VER >= 23
98*5f757f3fSDimitry Andric 
99*5f757f3fSDimitry Andric #endif // _LIBCPP___UTILITY_SMALL_BUFFER_H
100