#pragma once #ifdef KERNEL # include #else # include # include #endif #define UNUSED_PARAM(x) (void)x #include #ifndef KERNEL extern "C" void* mmx_memcpy(void* to, const void* from, size_t); #endif [[gnu::always_inline]] inline void fast_dword_copy(dword* dest, const dword* src, size_t count) { #ifndef KERNEL if (count >= 256) { mmx_memcpy(dest, src, count * sizeof(count)); return; } #endif 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"); } inline constexpr dword round_up_to_power_of_two(dword value, dword power_of_two) { return ((value - 1) & ~(power_of_two - 1)) + power_of_two; } namespace AK { template inline constexpr T min(const T& a, const T& b) { return a < b ? a : b; } template inline constexpr T max(const T& a, const T& b) { return a < b ? b : a; } template inline constexpr 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::ceil_div; using AK::exchange; using AK::forward; using AK::IsSame; using AK::max; using AK::min; using AK::move; using AK::RemoveConst; using AK::swap;