2016-03-11 18:15:36 +03:00
|
|
|
// This file is under the public domain.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
2020-07-19 02:06:13 +03:00
|
|
|
#include <new>
|
2016-03-11 18:15:36 +03:00
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr T AlignUp(T value, std::size_t size) {
|
2018-08-07 20:31:57 +03:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2020-07-12 17:45:49 +03:00
|
|
|
auto mod{static_cast<T>(value % size)};
|
|
|
|
value -= mod;
|
|
|
|
return static_cast<T>(mod == T{0} ? value : value + size);
|
2016-03-11 18:15:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr T AlignDown(T value, std::size_t size) {
|
2018-08-07 20:31:57 +03:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2016-03-11 18:15:36 +03:00
|
|
|
return static_cast<T>(value - value % size);
|
|
|
|
}
|
|
|
|
|
2019-05-10 10:17:48 +03:00
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr T AlignBits(T value, std::size_t align) {
|
2019-06-24 07:47:09 +03:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
|
|
return static_cast<T>((value + ((1ULL << align) - 1)) >> align << align);
|
2019-05-10 10:17:48 +03:00
|
|
|
}
|
|
|
|
|
2018-10-18 19:55:27 +03:00
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr bool Is4KBAligned(T value) {
|
2018-10-18 19:55:27 +03:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
|
|
return (value & 0xFFF) == 0;
|
|
|
|
}
|
|
|
|
|
2018-10-18 19:58:23 +03:00
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr bool IsWordAligned(T value) {
|
2018-10-18 19:58:23 +03:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
|
|
return (value & 0b11) == 0;
|
|
|
|
}
|
|
|
|
|
2020-03-31 21:15:43 +03:00
|
|
|
template <typename T>
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] constexpr bool IsAligned(T value, std::size_t alignment) {
|
2020-03-31 21:15:43 +03:00
|
|
|
using U = typename std::make_unsigned<T>::type;
|
|
|
|
const U mask = static_cast<U>(alignment - 1);
|
|
|
|
return (value & mask) == 0;
|
|
|
|
}
|
|
|
|
|
2019-07-19 01:15:53 +03:00
|
|
|
template <typename T, std::size_t Align = 16>
|
|
|
|
class AlignmentAllocator {
|
|
|
|
public:
|
2019-07-19 18:11:42 +03:00
|
|
|
using value_type = T;
|
|
|
|
using size_type = std::size_t;
|
|
|
|
using difference_type = std::ptrdiff_t;
|
2019-07-19 01:15:53 +03:00
|
|
|
|
2019-10-07 01:29:18 +03:00
|
|
|
using propagate_on_container_copy_assignment = std::true_type;
|
|
|
|
using propagate_on_container_move_assignment = std::true_type;
|
|
|
|
using propagate_on_container_swap = std::true_type;
|
|
|
|
using is_always_equal = std::true_type;
|
|
|
|
|
2019-10-07 01:43:08 +03:00
|
|
|
constexpr AlignmentAllocator() noexcept = default;
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
constexpr AlignmentAllocator(const AlignmentAllocator<T2, Align>&) noexcept {}
|
|
|
|
|
2020-08-14 16:38:45 +03:00
|
|
|
[[nodiscard]] T* allocate(size_type n) {
|
2020-07-17 14:26:59 +03:00
|
|
|
return static_cast<T*>(::operator new (n * sizeof(T), std::align_val_t{Align}));
|
2019-07-19 01:15:53 +03:00
|
|
|
}
|
|
|
|
|
2020-07-17 14:26:59 +03:00
|
|
|
void deallocate(T* p, size_type n) {
|
|
|
|
::operator delete (p, n * sizeof(T), std::align_val_t{Align});
|
2019-07-19 01:15:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
struct rebind {
|
2019-07-20 04:49:54 +03:00
|
|
|
using other = AlignmentAllocator<T2, Align>;
|
2019-07-19 01:15:53 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-03-11 18:15:36 +03:00
|
|
|
} // namespace Common
|