2016-03-11 15:15:36 +00:00
|
|
|
// This file is under the public domain.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
2019-07-18 22:15:53 +00:00
|
|
|
#include <cstdlib>
|
2016-03-11 15:15:36 +00:00
|
|
|
#include <type_traits>
|
2019-07-18 22:15:53 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <stdlib.h>
|
2016-03-11 15:15:36 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
template <typename T>
|
2018-09-15 13:21:06 +00:00
|
|
|
constexpr T AlignUp(T value, std::size_t size) {
|
2018-08-07 17:31:57 +00:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2016-03-11 15:15:36 +00:00
|
|
|
return static_cast<T>(value + (size - value % size) % size);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2018-09-15 13:21:06 +00:00
|
|
|
constexpr T AlignDown(T value, std::size_t size) {
|
2018-08-07 17:31:57 +00:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2016-03-11 15:15:36 +00:00
|
|
|
return static_cast<T>(value - value % size);
|
|
|
|
}
|
|
|
|
|
2019-05-10 07:17:48 +00:00
|
|
|
template <typename T>
|
2019-06-24 04:47:09 +00:00
|
|
|
constexpr T AlignBits(T value, std::size_t align) {
|
|
|
|
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 07:17:48 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 16:55:27 +00:00
|
|
|
template <typename T>
|
|
|
|
constexpr bool Is4KBAligned(T value) {
|
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
|
|
return (value & 0xFFF) == 0;
|
|
|
|
}
|
|
|
|
|
2018-10-18 16:58:23 +00:00
|
|
|
template <typename T>
|
|
|
|
constexpr bool IsWordAligned(T value) {
|
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
|
|
return (value & 0b11) == 0;
|
|
|
|
}
|
|
|
|
|
2019-07-18 22:15:53 +00:00
|
|
|
template <typename T, std::size_t Align = 16>
|
|
|
|
class AlignmentAllocator {
|
|
|
|
public:
|
|
|
|
typedef T value_type;
|
|
|
|
typedef std::size_t size_type;
|
|
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
|
|
|
|
typedef T* pointer;
|
|
|
|
typedef const T* const_pointer;
|
|
|
|
|
|
|
|
typedef T& reference;
|
|
|
|
typedef const T& const_reference;
|
|
|
|
|
|
|
|
public:
|
|
|
|
inline AlignmentAllocator() throw() {}
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
inline AlignmentAllocator(const AlignmentAllocator<T2, Align>&) throw() {}
|
|
|
|
|
|
|
|
inline ~AlignmentAllocator() throw() {}
|
|
|
|
|
|
|
|
inline pointer adress(reference r) {
|
|
|
|
return &r;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const_pointer adress(const_reference r) const {
|
|
|
|
return &r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if (defined _MSC_VER)
|
|
|
|
inline pointer allocate(size_type n) {
|
|
|
|
return (pointer)_aligned_malloc(n * sizeof(value_type), Align);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void deallocate(pointer p, size_type) {
|
|
|
|
_aligned_free(p);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
inline pointer allocate(size_type n) {
|
|
|
|
return (pointer)std::aligned_alloc(Align, n * sizeof(value_type));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void deallocate(pointer p, size_type) {
|
|
|
|
std::free(p);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
inline void construct(pointer p, const value_type& wert) {
|
|
|
|
new (p) value_type(wert);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void destroy(pointer p) {
|
|
|
|
p->~value_type();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline size_type max_size() const throw() {
|
|
|
|
return size_type(-1) / sizeof(value_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
struct rebind {
|
|
|
|
typedef AlignmentAllocator<T2, Align> other;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool operator!=(const AlignmentAllocator<T, Align>& other) const {
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if and only if storage allocated from *this
|
|
|
|
// can be deallocated from other, and vice versa.
|
|
|
|
// Always returns true for stateless allocators.
|
|
|
|
bool operator==(const AlignmentAllocator<T, Align>& other) const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-11 15:15:36 +00:00
|
|
|
} // namespace Common
|