2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-28 08:36:21 +00:00
|
|
|
#ifdef KERNEL
|
2019-05-28 09:53:16 +00:00
|
|
|
# include <Kernel/StdLib.h>
|
2018-10-16 11:59:28 +00:00
|
|
|
#else
|
2019-05-28 09:53:16 +00:00
|
|
|
# include <stdlib.h>
|
|
|
|
# include <string.h>
|
2018-10-28 08:36:21 +00:00
|
|
|
#endif
|
2018-10-16 11:59:28 +00:00
|
|
|
|
2019-04-05 13:54:56 +00:00
|
|
|
#define UNUSED_PARAM(x) (void)x
|
|
|
|
|
2019-01-13 03:31:16 +00:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2019-04-22 15:13:18 +00:00
|
|
|
#ifndef KERNEL
|
2019-03-21 12:36:40 +00:00
|
|
|
extern "C" void* mmx_memcpy(void* to, const void* from, size_t);
|
2019-04-22 15:13:18 +00:00
|
|
|
#endif
|
2019-02-07 07:46:52 +00:00
|
|
|
|
2019-02-15 11:30:48 +00:00
|
|
|
[[gnu::always_inline]] inline void fast_dword_copy(dword* dest, const dword* src, size_t count)
|
2019-01-12 20:45:45 +00:00
|
|
|
{
|
2019-04-22 15:13:18 +00:00
|
|
|
#ifndef KERNEL
|
2019-02-07 07:46:52 +00:00
|
|
|
if (count >= 256) {
|
|
|
|
mmx_memcpy(dest, src, count * sizeof(count));
|
|
|
|
return;
|
|
|
|
}
|
2019-04-22 15:13:18 +00:00
|
|
|
#endif
|
2019-01-12 20:45:45 +00:00
|
|
|
asm volatile(
|
|
|
|
"rep movsl\n"
|
2019-01-16 18:43:01 +00:00
|
|
|
: "=S"(src), "=D"(dest), "=c"(count)
|
2019-01-12 20:45:45 +00:00
|
|
|
: "S"(src), "D"(dest), "c"(count)
|
2019-05-28 09:53:16 +00:00
|
|
|
: "memory");
|
2019-01-12 20:45:45 +00:00
|
|
|
}
|
|
|
|
|
2019-02-15 11:30:48 +00:00
|
|
|
[[gnu::always_inline]] inline void fast_dword_fill(dword* dest, dword value, size_t count)
|
2019-01-12 20:45:45 +00:00
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"rep stosl\n"
|
2019-01-16 18:43:01 +00:00
|
|
|
: "=D"(dest), "=c"(count)
|
2019-01-12 20:45:45 +00:00
|
|
|
: "D"(dest), "c"(count), "a"(value)
|
2019-05-28 09:53:16 +00:00
|
|
|
: "memory");
|
2019-01-12 20:45:45 +00:00
|
|
|
}
|
|
|
|
|
2019-05-06 12:04:54 +00:00
|
|
|
inline constexpr dword round_up_to_power_of_two(dword value, dword power_of_two)
|
|
|
|
{
|
2019-05-28 09:53:16 +00:00
|
|
|
return ((value - 1) & ~(power_of_two - 1)) + power_of_two;
|
2019-05-06 12:04:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline T min(const T& a, const T& b)
|
|
|
|
{
|
|
|
|
return a < b ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline T max(const T& a, const T& b)
|
|
|
|
{
|
|
|
|
return a < b ? b : a;
|
|
|
|
}
|
|
|
|
|
2018-11-08 14:39:26 +00:00
|
|
|
template<typename T, typename U>
|
2019-01-31 16:31:23 +00:00
|
|
|
static inline T ceil_div(T a, U b)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2018-11-08 14:39:26 +00:00
|
|
|
static_assert(sizeof(T) == sizeof(U));
|
2018-10-10 09:53:07 +00:00
|
|
|
T result = a / b;
|
|
|
|
if ((a % b) != 0)
|
|
|
|
++result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:43:52 +00:00
|
|
|
#ifdef __clang__
|
2019-05-28 09:53:16 +00:00
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wconsumed"
|
2019-02-25 11:43:52 +00:00
|
|
|
#endif
|
2019-05-28 09:53:16 +00:00
|
|
|
template<typename T>
|
2018-10-16 10:10:01 +00:00
|
|
|
T&& move(T& arg)
|
|
|
|
{
|
|
|
|
return static_cast<T&&>(arg);
|
|
|
|
}
|
2019-02-25 11:43:52 +00:00
|
|
|
#ifdef __clang__
|
2019-05-28 09:53:16 +00:00
|
|
|
# pragma clang diagnostic pop
|
2019-02-25 11:43:52 +00:00
|
|
|
#endif
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2018-10-16 10:20:51 +00:00
|
|
|
template<typename T>
|
2018-10-17 08:55:43 +00:00
|
|
|
struct Identity {
|
|
|
|
typedef T Type;
|
2018-10-16 10:20:51 +00:00
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2018-10-16 11:59:28 +00:00
|
|
|
template<class T>
|
2018-10-17 08:55:43 +00:00
|
|
|
constexpr T&& forward(typename Identity<T>::Type& param)
|
2018-10-16 10:20:51 +00:00
|
|
|
{
|
2018-10-16 11:59:28 +00:00
|
|
|
return static_cast<T&&>(param);
|
2018-10-16 10:20:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename U>
|
|
|
|
T exchange(T& a, U&& b)
|
|
|
|
{
|
|
|
|
T tmp = move(a);
|
|
|
|
a = move(b);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2018-10-16 12:33:16 +00:00
|
|
|
template<typename T, typename U>
|
|
|
|
void swap(T& a, U& b)
|
|
|
|
{
|
|
|
|
U tmp = move((U&)a);
|
2019-05-28 09:53:16 +00:00
|
|
|
a = (T &&) move(b);
|
2018-10-16 12:33:16 +00:00
|
|
|
b = move(tmp);
|
|
|
|
}
|
2018-10-16 10:20:51 +00:00
|
|
|
|
2018-10-17 08:55:43 +00:00
|
|
|
template<bool B, class T = void>
|
2019-05-28 09:53:16 +00:00
|
|
|
struct EnableIf {
|
2018-10-17 08:55:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
2019-05-28 09:53:16 +00:00
|
|
|
struct EnableIf<true, T> {
|
2018-10-17 08:55:43 +00:00
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class T>
|
|
|
|
struct RemoveConst {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemoveConst<const T> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemoveVolatile {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemoveVolatile<const T> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemoveCV {
|
2018-10-17 08:55:43 +00:00
|
|
|
typedef typename RemoveVolatile<typename RemoveConst<T>::Type>::Type Type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T, T v>
|
|
|
|
struct IntegralConstant {
|
|
|
|
static constexpr T value = v;
|
|
|
|
typedef T ValueType;
|
|
|
|
typedef IntegralConstant Type;
|
|
|
|
constexpr operator ValueType() const { return value; }
|
|
|
|
constexpr ValueType operator()() const { return value; }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef IntegralConstant<bool, false> FalseType;
|
|
|
|
typedef IntegralConstant<bool, true> TrueType;
|
|
|
|
|
|
|
|
template<class T>
|
2019-05-28 09:53:16 +00:00
|
|
|
struct __IsPointerHelper : FalseType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
|
|
|
template<class T>
|
2019-05-28 09:53:16 +00:00
|
|
|
struct __IsPointerHelper<T*> : TrueType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
|
|
|
template<class T>
|
2019-05-28 09:53:16 +00:00
|
|
|
struct IsPointer : __IsPointerHelper<typename RemoveCV<T>::Type> {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class>
|
|
|
|
struct IsFunction : FalseType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...)> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...)> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) volatile> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) volatile> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const volatile> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const volatile> : TrueType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...)&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...)&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) volatile&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) volatile&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const volatile&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const volatile&> : TrueType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) &&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) &&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const&&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const&&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) volatile&&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) volatile&&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args...) const volatile&&> : TrueType {
|
|
|
|
};
|
|
|
|
template<class Ret, class... Args>
|
|
|
|
struct IsFunction<Ret(Args..., ...) const volatile&&> : TrueType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class T>
|
|
|
|
struct IsRvalueReference : FalseType {
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct IsRvalueReference<T&&> : TrueType {
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
template<class T>
|
|
|
|
struct RemovePointer {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemovePointer<T*> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemovePointer<T* const> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemovePointer<T* volatile> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
template<class T>
|
|
|
|
struct RemovePointer<T* const volatile> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
2018-10-17 08:55:43 +00:00
|
|
|
|
2019-02-20 11:28:41 +00:00
|
|
|
template<typename T, typename U>
|
|
|
|
struct IsSame {
|
2019-05-28 09:53:16 +00:00
|
|
|
enum {
|
|
|
|
value = 0
|
|
|
|
};
|
2019-02-20 11:28:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct IsSame<T, T> {
|
2019-05-28 09:53:16 +00:00
|
|
|
enum {
|
|
|
|
value = 1
|
|
|
|
};
|
2019-02-20 11:28:41 +00:00
|
|
|
};
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 09:53:16 +00:00
|
|
|
using AK::ceil_div;
|
|
|
|
using AK::exchange;
|
|
|
|
using AK::forward;
|
|
|
|
using AK::IsSame;
|
2018-10-10 09:53:07 +00:00
|
|
|
using AK::max;
|
2019-05-28 09:53:16 +00:00
|
|
|
using AK::min;
|
2018-10-16 10:20:51 +00:00
|
|
|
using AK::move;
|
2018-10-16 12:33:16 +00:00
|
|
|
using AK::swap;
|
2019-06-01 12:11:31 +00:00
|
|
|
using AK::RemoveConst;
|