rpcs3/Utilities/sysinfo.h

67 lines
1.0 KiB
C
Raw Normal View History

#pragma once
#include "types.h"
#include <string>
namespace utils
{
inline std::array<u32, 4> get_cpuid(u32 func, u32 subfunc)
{
int regs[4];
2017-12-16 00:19:21 +00:00
#ifdef _MSC_VER
__cpuidex(regs, func, subfunc);
2017-12-16 00:19:21 +00:00
#else
__asm__ volatile("cpuid" : "=a" (regs[0]), "=b" (regs[1]), "=c" (regs[2]), "=d" (regs[3]) : "a" (func), "c" (subfunc));
2017-12-16 00:19:21 +00:00
#endif
return {0u+regs[0], 0u+regs[1], 0u+regs[2], 0u+regs[3]};
}
inline u64 get_xgetbv(u32 xcr)
{
#ifdef _MSC_VER
return _xgetbv(xcr);
#else
u32 eax, edx;
__asm__ volatile( "xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
return eax | (u64(edx) << 32);
#endif
}
2017-11-09 17:33:18 +00:00
bool has_ssse3();
2017-11-09 17:33:18 +00:00
bool has_avx();
2017-12-16 00:19:21 +00:00
bool has_avx2();
2017-11-09 17:33:18 +00:00
bool has_rtm();
2017-07-18 17:03:47 +00:00
2017-12-16 00:19:21 +00:00
bool has_512();
2018-01-16 11:32:57 +00:00
bool has_xop();
FORCE_INLINE bool transaction_enter(uint* out = nullptr)
2017-07-18 17:03:47 +00:00
{
while (true)
{
const uint status = _xbegin();
2017-07-18 17:03:47 +00:00
if (status == _XBEGIN_STARTED)
{
return true;
}
if (!(status & _XABORT_RETRY))
{
if (out)
{
*out = status;
}
2017-07-18 17:03:47 +00:00
return false;
}
}
}
std::string get_system_info();
}