#pragma once #ifdef KERNEL #include #else #include #include #endif #define UNUSED_PARAM(x) (void)x #include extern "C" void* mmx_memcpy(void* to, const void* from, size_t); [[gnu::always_inline]] inline void fast_dword_copy(dword* dest, const dword* src, size_t count) { if (count >= 256) { mmx_memcpy(dest, src, count * sizeof(count)); return; } asm volatile( "rep movsl\n" : "=S"(src), "=D"(dest), "=c"(count) : "S"(src), "D"(dest), "c"(count) : "memory" ); } [[gnu::always_inline]] inline void fast_dword_fill(dword* dest, dword value, size_t count) { asm volatile( "rep stosl\n" : "=D"(dest), "=c"(count) : "D"(dest), "c"(count), "a"(value) : "memory" ); } namespace AK { template inline T min(const T& a, const T& b) { return a < b ? a : b; } template inline T max(const T& a, const T& b) { return a < b ? b : a; } template static inline T ceil_div(T a, U b) { static_assert(sizeof(T) == sizeof(U)); T result = a / b; if ((a % b) != 0) ++result; return result; } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wconsumed" #endif template T&& move(T& arg) { return static_cast(arg); } #ifdef __clang__ #pragma clang diagnostic pop #endif template struct Identity { typedef T Type; }; template constexpr T&& forward(typename Identity::Type& param) { return static_cast(param); } template T exchange(T& a, U&& b) { T tmp = move(a); a = move(b); return tmp; } template void swap(T& a, U& b) { U tmp = move((U&)a); a = (T&&)move(b); b = move(tmp); } template struct EnableIf { }; template struct EnableIf { typedef T Type; }; template struct RemoveConst { typedef T Type; }; template struct RemoveConst { typedef T Type; }; template struct RemoveVolatile { typedef T Type; }; template struct RemoveVolatile { typedef T Type; }; template struct RemoveCV { typedef typename RemoveVolatile::Type>::Type Type; }; template 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 FalseType; typedef IntegralConstant TrueType; template struct __IsPointerHelper : FalseType { }; template struct __IsPointerHelper : TrueType { }; template struct IsPointer : __IsPointerHelper::Type> { }; template struct IsFunction : FalseType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsRvalueReference : FalseType { }; template struct IsRvalueReference : TrueType { }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct IsSame { enum { value = 0 }; }; template struct IsSame { enum { value = 1 }; }; } using AK::min; using AK::max; using AK::move; using AK::forward; using AK::exchange; using AK::swap; using AK::ceil_div; using AK::IsSame;